this repo has no description
1authors : [ "Richard W.M. Jones" "Xavier R. Guérin" ]
2bug-reports : "https://bitbucket.org/thanatonauts/bitstring/issues"
3dev-repo: "git+https://bitbucket.org/thanatonauts/bitstring.git"
4doc : "https://bitstring.software"
5homepage : "https://bitstring.software"
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.1.1"
10
11build: [
12 ["dune" "build" "-p" name "-j" jobs]
13 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
14]
15depends: [
16 "ocaml" {>= "4.02.3"}
17 "dune"
18 "ppx_tools_versioned" {build}
19 "ocaml-migrate-parsetree" {>= "1.0.5" & < "2.0.0"}
20 "stdlib-shims"
21 "ounit" {with-test}
22]
23conflicts: [
24 "ppx_bitstring"
25]
26
27synopsis: "bitstrings and bitstring matching for OCaml"
28description: """
29The ocaml-bitstring project adds Erlang-style bitstrings and matching over bitstrings as a syntax extension and library for OCaml.
30You can use this module to both parse and generate binary formats, files and protocols.
31Bitstring handling is added as primitives to the language, making it exceptionally simple to use and very powerful."""
32url {
33 src: "https://github.com/ocaml/opam-source-archives/raw/main/bitstring.3.1.1.tar.gz"
34 checksum: [
35 "sha256=867299a702784ca8ac59bb50dcf4c2cdec49fba2c4ed89f8de40c60ac671b22f"
36 "md5=ebf52fe55946c70aa7cb3fe51905b830"
37 ]
38}