this repo has no description
1opam-version: "2.0"
2maintainer: "Vincent Bernardoff <vb@luminar.eu.org>"
3authors: ["Vincent Bernardoff <vb@luminar.eu.org>"]
4homepage: "https://github.com/vbmithr/ocaml-bech32"
5license: "ISC"
6dev-repo: "git+https://github.com/vbmithr/ocaml-bech32.git"
7doc: "https://vbmithr.github.io/ocaml-bech32/doc"
8bug-reports: "https://github.com/vbmithr/ocaml-bech32/issues"
9tags: ["bitcoin"]
10build: [ "dune" "build" "-j" jobs "-p" name ]
11run-test: [ "dune" "runtest" "-j" jobs "-p" name ]
12depends: [
13 "ocaml" {>= "4.08.0"}
14 "dune" {>= "2.3.1"}
15 "rresult" {>= "0.6.0"}
16 "astring" {>= "0.8.3"}
17 "hex" {with-test & >= "1.4.0"}
18 "alcotest" {with-test & >= "1.1.0"}
19]
20synopsis: "Bech32 addresses for OCaml (see
21https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki)"
22description:"""This package implements parsing and pretty-printing of
23Bech32 addresses, used in Bitcoin as well as other blockchains
24projects, i.e. Zilliqa."""
25url {
26 src:
27 "https://github.com/vbmithr/ocaml-bech32/releases/download/0.1/bech32-0.1.tbz"
28 checksum: [
29 "sha256=1c858f8e155c57b8f98d40f02e93076db3fcebbc41ee8f2236a8c4abf9ab1ce5"
30 "sha512=6241e4b60b2ab6dea685833c55905ae90d5df5392097e97af184574228248d4837b60a107aafa24fc31e0c968d59de129e45d73cc26b949574e559c9eeefd236"
31 ]
32}