Native CBOR codec with type-safe combinators
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 28 lines 788 B view raw
1(lang dune 3.21) 2(using mdx 0.4) 3(name nox-cbor) 4 5(generate_opam_files true) 6 7(license ISC) 8(authors "Anil Madhavapeddy <anil@recoil.org>" "Thomas Gazagnaire <thomas@gazagnaire.org>") 9(maintainers "Thomas Gazagnaire <thomas@gazagnaire.org>") 10(source (tangled anil.recoil.org/ocaml-cbort)) 11 12(package 13 (name nox-cbor) 14 (synopsis "Native CBOR codec with type-safe combinators") 15 (tags (org:blacksun codec.binary)) 16 (description 17 "Type-safe CBOR (RFC 8949) encoding and decoding using a combinator-based 18 approach. Define codecs once and use them for both encoding and decoding 19 OCaml values to and from CBOR binary format.") 20 (depends 21 (ocaml (>= 5.1)) 22 (bytesrw (>= 0.2)) 23 (fmt (>= 0.9)) 24 (zarith (>= 1.12)) 25 (odoc :with-doc) 26 (alcobar :with-test) 27 (mdx :with-test) 28 nox-loc))