this repo has no description
1opam-version: "2.0" 2synopsis: "Bitcoin data-structures library for OCaml" 3description: """ 4Bitcoin data-structures library for OCaml. Modules documentation is 5available at https://dakk.github.io/bitcoinml/ 6""" 7maintainer: "Davide Gessa <gessadavide@gmail.com>" 8authors: [ 9 "Davide Gessa <gessadavide@gmail.com>" 10] 11 12homepage: "https://github.com/dakk/bitcoinml" 13bug-reports: "https://github.com/dakk/bitcoinml/issues" 14license: "MIT" 15dev-repo: "git+https://github.com/dakk/bitcoinml.git" 16build: ["dune" "build" "-p" name "-j" jobs] 17 18depends: [ 19 "ocaml" {>= "4.05.0"} 20 21 "dune" {>= "1.6.0"} 22 "bitstring" {>= "3.1.0" & < "4.0.0"} 23 "stdint" {>= "0.5.1"} 24 "cryptokit" {>= "1.13"} 25 "bignum" {>= "v0.10.0"} 26 27 "hex" {with-test & >= "1.3.0"} 28 "ounit" {with-test & >= "2.0.8"} 29 "odoc" {with-test & >= "1.3.0"} 30] 31 32url { 33 src: "https://github.com/dakk/bitcoinml/archive/0.4.1.zip" 34 checksum: [ 35 "md5=bc06a6aaa41e1c443d8c5179241e4eb7" 36 "sha512=4f9004cb956117566c4643f6a64ffa03f0469866df6fd77f50316b4a42b50ff3be0a866cdfe20fdd4ae733d056dab18948aabe2187e9695aee46cd3981902e45" 37 ] 38}