swh:1:snp:61dcfc0dd5674a0e65803e88039c122d9532074e
Raw File
Tip revision: 9ac38c720c5c440939e93d2f51d31a962f6c556f authored by Raphaƫl Proust on 23 February 2022, 10:57:30 UTC
Prevent variable list encodings within fixed-length lists and arrays
Tip revision: 9ac38c7
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" { >= "1.11" }
  "ezjsonm"
  "zarith" {>= "1.4"}
  "hex" {>= "1.3.0"}
  "json-data-encoding" { = "0.11" }
  "json-data-encoding-bson" { = "0.11" }
  "alcotest" { with-test }
  "crowbar" { >= "0.2" & with-test }
  "ocamlformat" { = "0.20.1" & with-doc } # not technically a doc dep; modify when with-dev becomes available
  "odoc" { with-doc }
]
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