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.11.0"} 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.2.0.tar.gz" 27 checksum: [ 28 "sha256=e3c59984d535679a9333cee41ab03acd0bdc717c271378b00701fbc7ae01f3ed" 29 "md5=63e842db085ec7a053ecee9e621a3f74" 30 ] 31}