this repo has no description
1opam-version: "2.0" 2synopsis: "Type-safe encoding to and decoding from JSON" 3maintainer: "contact@nomadic-labs.com" 4authors: [ "Nomadic Labs" "Ocamlpro" ] 5homepage: "https://gitlab.com/nomadic-labs/json-data-encoding" 6bug-reports: "https://gitlab.com/nomadic-labs/json-data-encoding/issues" 7license: "MIT" 8dev-repo: "git+https://gitlab.com/nomadic-labs/json-data-encoding" 9 10build: [ 11 ["dune" "build" "-j" jobs "-p" name] 12 ["dune" "runtest" "-p" name "-j" jobs] {with-test & !ocaml-option-bytecode-only:installed} 13] 14 15depends: [ 16 "ocaml" {>= "4.10"} 17 "dune" {>= "3.0"} 18 "uri" {>= "1.9.0" } 19 "hex" {>= "1.3.0"} 20 "crowbar" { with-test } 21 "alcotest" { with-test } 22 "ocamlformat" { = "0.24.1" & with-doc } # not technically a doc dep; modify when with-dev becomes available 23 "odoc" { with-doc } 24 "js_of_ocaml-compiler" { with-test } 25 "conf-npm" { with-test } 26] 27conflicts: [ 28 "data-encoding" {!= version} 29] 30url { 31 src: 32 "https://gitlab.com/nomadic-labs/data-encoding/-/archive/v1.0.1/data-encoding-v1.0.1.tar.gz" 33 checksum: [ 34 "md5=82d6e7783274595c82cff4562e2b06a2" 35 "sha512=df5d00dfef8afeada8a6aee2a97d491a2ce20cfe90aed203848f6098ba05ba60e2ee9d1afc0c6c07cf32dad3f8e34c0b55cf900ef1f2e7a72d704f07fd32e651" 36 ] 37}