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/let-def/grenier" 5bug-reports: "https://github.com/let-def/grenier" 6license: "ISC" 7dev-repo: "git+https://github.com/let-def/grenier.git" 8build: [ 9 [make] 10 [make "test"] {with-test} 11] 12install: [make "install"] 13remove: ["ocamlfind" "remove" "grenier"] 14depends: [ 15 "ocaml" {>= "4.02" & < "4.10"} 16 "ocamlfind" {build} 17] 18synopsis: "Collection of algorithms (HyperLogLog, order maintenance, ...)" 19description: """ 20Included: 21- baltree : Generic balanced-tree 22- trope : Track objects accross rope-like operations 23- orderme : Order-maintenance problem 24- binpacking : Maxrects rectangle packing implementation 25- doubledouble : Floating points with around 107-bits precision 26- hll : HyperLogLog 27- jmphash : Jump consistent hashing 28- physh : Physical hashtable""" 29flags: light-uninstall 30url { 31 src: "https://github.com/let-def/grenier/archive/v0.6.tar.gz" 32 checksum: [ 33 "sha256=806e61ff1ecceac4bdfdc13ba82ccada23338257399697e04197489a23b1e05c" 34 "md5=2ce9f4cfc13a22b2eab371c38f57485e" 35 ] 36}