this repo has no description
1opam-version: "2.0" 2maintainer: "Clement Pascutto" 3authors: ["Clement Pascutto"] 4license: "MIT" 5homepage: "https://github.com/mirage/bloomf" 6bug-reports: "https://github.com/mirage/bloomf/issues" 7dev-repo: "git+https://github.com/mirage/bloomf.git" 8doc: "https://mirage.github.io/bloomf/" 9 10build: [ 11 ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs] 13 ["dune" "runtest" "-p" name] {with-test} 14] 15 16depends: [ 17 "ocaml" {>= "4.03.0"} 18 "dune" {>= "1.7.0"} 19 "bitv" 20 "alcotest" {with-test} 21] 22synopsis: "Efficient Bloom filters for OCaml" 23description: "Efficient Bloom filters for OCaml" 24url { 25 src: 26 "https://github.com/mirage/bloomf/releases/download/v0.1.0/bloomf-v0.1.0.tbz" 27 checksum: [ 28 "sha256=c825aeab299becdba9ebc43f8b53d4f8f326ebdfdf6fa098f02f65654011c050" 29 "sha512=3a0707197bf2337c60f2932f0716a0135a1dc280ff20fd72cca30d065d87d6d4a44a541388cfb639acd729cc35e40ae2d8cbf562dd0184974c465d39642b2295" 30 ] 31}