Revision 1f76b9fe029ce94c8ef92bf970c4718013b74a01 authored by Laure Runser on 24 August 2023, 12:40:41 UTC, committed by Laure Runser on 25 August 2023, 09:36:41 UTC
Doesn't compile bc i didn't change things in the benchmark files
1 parent b0bd165
Raw File
dune-project
(lang dune 3.0)

(name data-encoding)

(generate_opam_files true)

(source
 (gitlab nomadic-labs/data-encoding))

(authors "Nomadic Labs")

(maintainers "Nomadic Labs")

(license "MIT")

(documentation https://nomadic-labs.gitlab.io/data-encoding)

(version 1.99.0)

(package
 (name data-encoding)
 (synopsis "Backend-independent codec declaration")
 (description "")
 (depends
  (ocaml
   (>= 4.14))
  dune
  (json-data-encoding
   (= :version))
  (binary-data-encoding
   (= :version))
  optint
  (ppx_expect :with-test)
  (ocamlformat
   (and
    :with-test
    (= 0.24.1)))))

(package
 (name json-data-encoding)
 (synopsis "JSON specific codecs and de/serialisation")
 (description "")
 (depends
  (ocaml
   (>= 4.14))
  dune
  optint
  buffy
  (qcheck
   (and
    :with-test
    (>= 0.19)))
  (qcheck-core :with-test)
  (ppx_expect :with-test)
  (ocamlformat
   (and
    :with-test
    (= 0.24.1)))
  (landmarks :dev)
  (landmarks-ppx :dev)
  ezjsonm))

(package
 (name binary-data-encoding)
 (synopsis "Binary codecs and de/serialisation")
 (description "")
 (depends
  (ocaml
   (>= 4.14))
  dune
  optint
  buffy
  (qcheck
   (and
    :with-test
    (>= 0.19)))
  (qcheck-core :with-test)
  (ppx_expect :with-test)
  (ocamlformat
   (and
    :with-test
    (= 0.24.1)))
  (landmarks :dev)
  (landmarks-ppx :dev)))

(package
 (name buffy)
 (synopsis "Buffers with user-controled allocation")
 (description "")
 (depends
  (ocaml
   (>= 4.14))
  dune
  (ocamlformat
   (and
    :with-test
    (= 0.24.1)))
  (landmarks :dev)
  (landmarks-ppx :dev)))
back to top