this repo has no description
1opam-version: "2.0" 2maintainer: "unixjunkie@sdf.org" 3authors: ["Francois Berenger"] 4homepage: "https://github.com/UnixJunkie/interval-tree" 5dev-repo: "git+https://github.com/UnixJunkie/interval-tree" 6bug-reports: "https://github.com/UnixJunkie/interval-tree/issues" 7license: "BSD-3-Clause" 8depends: [ 9 "ocaml" 10 "dune" {>= "1.11"} 11] 12build: [ 13 ["dune" "build" "-p" name "-j" jobs "@install" 14 "@runtest" {with-test} 15 ] 16] 17synopsis: "Float intervals tree library" 18description: """ 19interval tree for float intervals, you can create a tree once then 20query it many times (queries are fast)""" 21url { 22 src: "https://github.com/UnixJunkie/interval-tree/archive/v2.2.tar.gz" 23 checksum: [ 24 "sha256=204528c090f55f8c5a1fcb9b3fd501c5500bbd5ddba523c475986db1b03ac544" 25 "md5=9e794444e840be1db8987687857a36da" 26 ] 27}