this repo has no description
1opam-version: "2.0" 2maintainer: "david.allsopp@metastack.com" 3authors: [ "David Allsopp" ] 4license: "BSD-3-clause" 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" 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.4.0.tar.gz" 27 checksum: [ 28 "md5=ca4039c557d165d61845a44baa3119c0" 29 "sha512=3aa006f8416c5fb38142ccf5fc5af85cb827da83fb83dd5b879988797af70701dd466a936b500f9a17dbf5b092de6fecf3b1f91def38d547612c1e95cb606339" 30 ] 31}