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" { >= "3.0" } 11 "ezjsonm" { >= "1.1.0" } 12 "zarith" {>= "1.4"} 13 "zarith_stubs_js" 14 "hex" {>= "1.3.0"} 15 "json-data-encoding" { = version } 16 "json-data-encoding-bson" { = version } 17 "alcotest" { >= "1.0.0" & with-test } 18 "crowbar" { >= "0.2" & with-test } 19 "ppx_expect" 20 "either" 21 "bigstringaf" { >= "0.6.1" } 22 "ppx_hash" 23 "ocamlformat" { = "0.24.1" & with-doc } # not technically a doc dep; modify when with-dev becomes available 24 "odoc" { with-doc } 25 "md2mld" { with-test } # not technically a test dep; modify when https://github.com/ocurrent/ocaml-ci/issues/264 is fixed 26 "js_of_ocaml-compiler" { with-test } 27 "conf-npm" { with-test } 28] 29build: [ 30 ["dune" "build" "-p" name "-j" jobs] 31 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 32] 33synopsis: "Library of JSON and binary encoding combinators" 34url { 35 src: 36 "https://gitlab.com/nomadic-labs/data-encoding/-/archive/v1.0.0/data-encoding-v1.0.0.tar.gz" 37 checksum: [ 38 "md5=d15b03873f0ccc333b60bfcdf0595766" 39 "sha512=0a5355bae421b5d155eeff7ad333cce32cf317b88ac69a07be715ff9a4cd05c8e1715de4917ed8f67789070175654ea3e332a348e586d5005e8772f5672c4a6f" 40 ] 41}