this repo has no description
1opam-version: "2.0" 2maintainer: "Frederic Bour <frederic.bour@lakaban.net>" 3authors: "Frederic Bour <frederic.bour@lakaban.net>" 4homepage: "https://github.com/def-lkb/grenier" 5bug-reports: "https://github.com/def-lkb/grenier" 6license: "CC0-1.0+" 7dev-repo: "git+https://github.com/def-lkb/grenier.git" 8build: [ 9 [make] 10] 11install: [make "install"] 12remove: ["ocamlfind" "remove" "grenier"] 13depends: [ 14 "ocaml" {>= "4.02" & < "4.10"} 15 "ocamlfind" {build} 16] 17synopsis: "Collection of algorithms (HyperLogLog, order maintenance, ...)" 18description: """ 19Included: 20- baltree : Generic balanced-tree 21- trope : Track objects accross rope-like operations 22- orderme : Order-maintenance problem 23- doubledouble : Floating points with around 107-bits precision 24- hll : HyperLogLog 25- jmphash : Jump consistent hashing 26- physh : Physical hashtable""" 27flags: light-uninstall 28url { 29 src: "https://github.com/def-lkb/grenier/archive/v0.1.tar.gz" 30 checksum: [ 31 "sha256=cf7c8e2181f987ae88ed112d7f72e1f191b6b94dc3c2d5b8fe92cd8278f0cc50" 32 "md5=db6fd95a65b52e4320062c50cc069fb3" 33 ] 34}