this repo has no description
1opam-version: "2.0" 2synopsis: "A pure OCaml R-Tree implementation" 3description: 4 "This implements a simple, functional R-Tree library in pure OCaml with support for efficient bulk loading of values." 5maintainer: ["patrick@sirref.org"] 6authors: ["Marius A. Eriksen" "Patrick Ferris"] 7license: "BSD-3-Clause" 8tags: ["spatial" "index"] 9homepage: "https://github.com/geocaml/ocaml-rtree" 10bug-reports: "https://github.com/geocaml/ocaml-rtree/issues" 11depends: [ 12 "ocaml" 13 "dune" {>= "3.6"} 14 "repr" {>= "0.4.0"} 15 "bechamel" {with-test} 16 "vg" {with-test} 17 "ounit2" {with-test} 18 "mdx" {with-test & >= "2.2.0"} 19 "odoc" {with-doc} 20] 21build: [ 22 ["dune" "subst"] {dev} 23 [ 24 "dune" 25 "build" 26 "-p" 27 name 28 "-j" 29 jobs 30 "@install" 31 "@runtest" {with-test} 32 "@doc" {with-doc} 33 ] 34] 35dev-repo: "git+https://github.com/geocaml/ocaml-rtree.git" 36url { 37 src: 38 "https://github.com/geocaml/ocaml-rtree/releases/download/v0.1.1/rtree-0.1.1.tbz" 39 checksum: [ 40 "sha256=408c9600703ea96f3ccd9f99dea853d5cb6c76c05e7e546ac18d90fc42426147" 41 "sha512=0d658adce2995dbe2de8bf5a93161fe0013872152417472cbf5bb00d8eed99a073e3942ad7cc6bb4e9d37d90853a58adb712fa5e9837301e4cd5c2ed68ebbaa5" 42 ] 43} 44x-commit-hash: "a7a9718718371a978507fb097504060ca01b9c17"