this repo has no description
1opam-version: "2.0"
2maintainer: "Adriaan Larmuseau <adriaan.larmuseau@gmail.com>"
3authors: "Adriaan Larmuseau <adriaan.larmuseau@gmail.com>"
4homepage: "https://github.com/sylvarant/base58"
5bug-reports: "https://github.com/sylvarant/base58/issues"
6license: "Artistic-2.0"
7dev-repo: "git+https://github.com/sylvarant/base58.git"
8build: [
9 [make "library"]
10 [make "test"] {with-test}
11]
12install: [make "install"]
13remove: ["ocamlfind" "remove" "base58"]
14depends: [
15 ("ocaml" {>= "4.02.0" & < "5.0"} & "num" | "ocaml" {>= "5.0"} & "num" {< "1.5"})
16 "ocamlfind" {build}
17 "testsimple" {with-test}
18 "bisect" {with-test}
19 "bisect_ppx" {with-test}
20 "ocamlbuild" {build}
21]
22synopsis: "Base58 encoding and decoding"
23description:
24 "This library enables you to encode and decode into base58 representation using the flickr or bitcoin standard."
25flags: light-uninstall
26url {
27 src: "https://github.com/sylvarant/base58/archive/v0.1.2.tar.gz"
28 checksum: [
29 "sha256=7b787207e64292d122b69b1cb2fc7a2903df2d7e5219cef0749eb473f71b431c"
30 "md5=0361f7f2d8eef14b7de8c4e482fbf5c2"
31 ]
32}