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.4.tar.gz" 32 checksum: [ 33 "sha256=60ca9e74ed9859795f5ecf5917db34152f35e3fd3fc404a78264a4ae8d26ae13" 34 "md5=ee283333fc0bb9036e336556aa345274" 35 ] 36}