Revision 6c64c33f9144b0ffb1994e0bbc7598706e80e65a authored by Raphaël Proust on 23 March 2022, 15:19:48 UTC, committed by Raphaël Proust on 23 March 2022, 15:19:48 UTC
Make compact JSON identical to vanilla JSON

See merge request nomadic-labs/data-encoding!82
2 parent s 91487cd + 4dfa145
Raw File
data-encoding.opam
opam-version: "2.0"
maintainer: "contact@nomadic-labs.com"
authors: [ "Nomadic Labs" ]
homepage: "https://gitlab.com/nomadic-labs/data-encoding"
bug-reports: "https://gitlab.com/nomadic-labs/data-encoding/issues"
dev-repo: "git+https://gitlab.com/nomadic-labs/data-encoding.git"
license: "MIT"
depends: [
  "ocaml" { >= "4.10" }
  "dune" { >= "2.0" }
  "ezjsonm"
  "zarith" {>= "1.4"}
  "zarith_stubs_js"
  "hex" {>= "1.3.0"}
  "json-data-encoding" { = "0.11" }
  "json-data-encoding-bson" { = "0.11" }
  "alcotest" { with-test }
  "crowbar" { >= "0.2" & with-test }
  "either"
  "ocamlformat" { = "0.20.1" & with-doc } # not technically a doc dep; modify when with-dev becomes available
  "odoc" { with-doc }
  "js_of_ocaml-compiler" { with-test }
]
build: [
  ["dune" "build" "-p" name "-j" jobs]
  ["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
synopsis: "Library of JSON and binary encoding combinators"
back to top