this repo has no description
1opam-version: "2.0"
2maintainer: "david.allsopp@metastack.com"
3authors: [ "David Allsopp" ]
4license: "BSD-3-clause with OCaml linking exception"
5homepage: "https://metastack.github.io/bitmasks"
6dev-repo: "git+https://github.com/metastack/bitmasks.git"
7bug-reports: "https://github.com/metastack/bitmasks/issues"
8build: [
9 [ "dune" "build" "-p" name "-j" jobs "@install" "@runtest" {with-test}]
10 [ make "doc" ] {with-doc}
11]
12depends: [
13 "ocaml" {< "4.12"}
14 "dune"
15 "stdlib-shims"
16 "seq"
17 "odoc" {with-doc}
18]
19synopsis: "BitMasks over int and int64 exposed as sets"
20description: """
21Library for exposing bitmasks (typically as int or int64) in an
22implementation compatible with OCaml's Set. The underlying data
23representation is unaltered, allowing the value to be manipulated
24either as a bitmask or as a set without conversion."""
25url {
26 src: "https://github.com/metastack/bitmasks/archive/v1.3.0.tar.gz"
27 checksum: [
28 "sha256=a1cffbe3c98fcdc3d1e1fbc7fc73b88294f74c6f51d5d8b11b4eb2b94156dfc3"
29 "md5=b89571470e7966d468218fc1ba787028"
30 ]
31}