this repo has no description
1opam-version: "2.0" 2maintainer: "contact@nomadic-labs.com" 3authors: [ "Nomadic Labs" ] 4homepage: "https://gitlab.com/nomadic-labs/data-encoding" 5bug-reports: "https://gitlab.com/nomadic-labs/data-encoding/issues" 6dev-repo: "git+https://gitlab.com/nomadic-labs/data-encoding.git" 7license: "MIT" 8depends: [ 9 "ocaml" { >= "4.10" } 10 "dune" { >= "2.0" } 11 "ezjsonm" 12 "zarith" {>= "1.4"} 13 "zarith_stubs_js" 14 "hex" {>= "1.3.0"} 15 "json-data-encoding" { = "0.11" } 16 "json-data-encoding-bson" { = "0.11" } 17 "alcotest" { with-test } 18 "crowbar" { >= "0.2" & with-test } 19 "either" 20 "ocamlformat" { = "0.20.1" & with-doc } # not technically a doc dep; modify when with-dev becomes available 21 "odoc" { with-doc } 22 "js_of_ocaml-compiler" { with-test } 23] 24build: [ 25 ["dune" "build" "-p" name "-j" jobs] 26 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 27] 28synopsis: "Library of JSON and binary encoding combinators" 29url { 30 src: 31 "https://gitlab.com/nomadic-labs/data-encoding/-/archive/v0.5/data-encoding-v0.5.tar.gz" 32 checksum: [ 33 "md5=0c97d67c12d905800c9f80f718c3429e" 34 "sha512=801cd42bb52a7de52bcf6059d08617e40a9b0b53dbd98b5f33b8813c6640c47cd13a9bb8ee83541b2346edd7a2ed7c6f0d9ea67c0933d62ca135a335c2f2970f" 35 ] 36}