Revision 8e5193c197e0244eeb42803ea4c678fc1f90d317 authored by Raphaël Proust on 26 October 2023, 06:44:23 UTC, committed by Raphaël Proust on 26 October 2023, 06:44:23 UTC
Fix bug: Length headers are unsigned

See merge request nomadic-labs/data-encoding!154
2 parent s 5a50495 + 33c8f1f
Raw File
json-data-encoding.opam
opam-version: "2.0"
name: "json-data-encoding"
synopsis: "Type-safe encoding to and decoding from JSON"
maintainer: "contact@nomadic-labs.com"
authors: [ "Nomadic Labs" "Ocamlpro" ]
homepage: "https://gitlab.com/nomadic-labs/json-data-encoding"
bug-reports: "https://gitlab.com/nomadic-labs/json-data-encoding/issues"
license: "MIT"
version: "1.0.0"
dev-repo: "git+https://gitlab.com/nomadic-labs/json-data-encoding"

build: [
  ["dune" "build" "-j" jobs "-p" name]
  ["dune" "runtest" "-p" name "-j" jobs] {with-test}
]

depends: [
  "ocaml" {>= "4.10"}
  "dune" {>= "3.0"}
  "uri" {>= "1.9.0" }
  "hex" {>= "1.3.0"}
  "crowbar" { with-test }
  "alcotest" { with-test }
  "ocamlformat" { = "0.24.1" & with-doc } # not technically a doc dep; modify when with-dev becomes available
  "odoc" { with-doc }
  "js_of_ocaml-compiler" { with-test }
  "conf-npm" { with-test }
]
conflicts: [
  "data-encoding" {!= version}
]
back to top