this repo has no description
1authors : [ "Richard W.M. Jones" "Xavier R. Guérin" ] 2bug-reports : "https://github.com/xguerin/bitstring/issues" 3dev-repo: "git+https://github.com/xguerin/bitstring.git" 4doc : "https://xguer.in/bitstring" 5homepage : "https://github.com/xguerin/bitstring" 6license : ["LGPL-2.0-or-later with exceptions" "GPL-2.0-or-later"] 7maintainer : "Xavier R. Guérin <ghub@applepine.org>" 8opam-version: "2.0" 9version : "3.0.0" 10 11build: [ 12 ["jbuilder" "build" "-p" name "-j" jobs] 13 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 14] 15depends: [ 16 "ocaml" {>= "4.02.3"} 17 "jbuilder" {>= "1.0+beta7"} 18 "ppx_tools_versioned" 19 "ocaml-migrate-parsetree" {>= "1.0.5" & < "2.0.0"} 20 "ounit" {with-test} 21] 22conflicts: [ 23 "ppx_bitstring" 24] 25 26synopsis: "bitstrings and bitstring matching for OCaml" 27description: """ 28The ocaml-bitstring project adds Erlang-style bitstrings and matching over bitstrings as a syntax extension and library for OCaml. 29You can use this module to both parse and generate binary formats, files and protocols. 30Bitstring handling is added as primitives to the language, making it exceptionally simple to use and very powerful.""" 31url { 32 src: "https://github.com/ocaml/opam-source-archives/raw/main/bitstring.3.0.0.tar.gz" 33 checksum: [ 34 "sha256=ee066207521c925e1f24467dc33f0af8fb2f7623ec149fff927df5b45723d8e4" 35 "md5=ce1d3b99ed9d4ff98af1fafd9274d897" 36 ] 37}