this repo has no description
1opam-version: "2.0" 2license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 3synopsis:"This library provides functions for encoding efficiently simple OCaml data" 4description:"The library provides two main modules 5- Buffer: defines buffers for writing and reading compressed data. 6- Lens: an easy to use API for easily defining encoders and decoders." 7authors: ["Steven de Oliveira <de.oliveira.steven@gmail.com>"] 8maintainer: ["Steven de Oliveira <de.oliveira.steven@gmail.com>"] 9homepage:"https://ocamlpro.github.io/bitpack_serializer/bitpack_serializer/index.html" 10bug-reports:"https://https://github.com/OCamlPro/bitpack_serializer/issues" 11dev-repo:"git+https://github.com/OCamlPro/bitpack_serializer" 12build: [ 13 ["dune" "subst"] {dev} 14 [ 15 "dune" 16 "build" 17 "-p" 18 name 19 "-j" 20 jobs 21 "@install" 22 "@runtest" {with-test} 23 "@doc" {with-doc} 24 ] 25] 26depends: [ 27 "ocaml" {>= "4.08.0"} 28 "dune" {>= "2.7.0"} 29 "zarith" {>= "1.10"} 30 "ppx_inline_test" {with-test} 31 "ppx_expect" {with-test} 32 "odoc" {with-doc} 33 "ocamlformat" {with-test} 34] 35url { 36 src: "https://github.com/OCamlPro/bitpack_serializer/archive/refs/tags/v0.1.0.tar.gz" 37 checksum: [ 38 "md5=5739dc1b8f16a64a17bc1d97aa80eef9" 39 "sha512=c80ba1779264a4c2fb38fff81f10b996fb8a8b5aa357e2e25636d16aa8a47e88553061f922329dd34ecc17034d8ec7c219e95ae78796aa1b4db5c010fac0c289" 40 ] 41}