this repo has no description
1opam-version: "2.0"
2maintainer: "Maxime Ransan <maxime.ransan@gmail.com>"
3authors: "Maxime Ransan <maxime.ransan@gmail.com>"
4homepage: "https://github.com/mransan/base58"
5bug-reports: "https://github.com/mransan/base58/issues"
6license: "MIT"
7tags: ["base58" "encoding"]
8dev-repo: "git+https://github.com/mransan/base58.git"
9build: [
10 [make "lib.byte"]
11 [make "lib.native"] {ocaml:native}
12]
13install: [make "lib.install"]
14remove: [make "lib.uninstall"]
15depends: [
16 "ocaml" {>= "4.02.1"}
17 "ocamlfind" {build}
18 "ocamlbuild" {build}
19 "num"
20]
21synopsis: "Base58 encoding and decoding"
22description:
23 "This library enables you to encode and decode into base58 representation using the alphabet of your choice."
24url {
25 src: "https://github.com/mransan/base58/archive/0.1.0.tar.gz"
26 checksum: [
27 "sha256=26f14776c048b3e2b342cf3b9a442cba5e1561f4f835857df99603d97466fba1"
28 "md5=e1f6fd4ad91b96b4c2bd678648a319bb"
29 ]
30}