this repo has no description
1opam-version: "2.0"
2synopsis: "An implementation of M-trees"
3description:
4 "M-trees are an index for metric data that support efficient insertion and range queries."
5maintainer: ["Maintainer Name"]
6authors: ["Jack Feser"]
7license: "MIT"
8homepage: "https://github.com/jfeser/mtree"
9doc: "https://jfeser.github.io/mtree/index.html"
10bug-reports: "https://github.com/jfeser/mtree/issues"
11depends: [
12 "ocaml" {>= "4.12"}
13 "dune" {>= "3.0"}
14 "iter" {>= "1.4"}
15 "core" {with-test & >= "v0.14"}
16 "core_bench" {with-test & >= "v0.14"}
17 "ppx_expect" {with-test & >= "v0.14"}
18 "ppx_sexp_message" {with-test & >= "v0.14"}
19 "ppx_sexp_conv" {with-test & >= "v0.14"}
20 "ppx_compare" {with-test & >= "v0.14"}
21 "ppx_assert" {with-test & >= "v0.14"}
22 "odoc" {with-doc}
23]
24build: [
25 ["dune" "subst"] {dev}
26 [
27 "dune"
28 "build"
29 "-p"
30 name
31 "-j"
32 jobs
33 "@install"
34 "@runtest" {with-test}
35 "@doc" {with-doc}
36 ]
37]
38dev-repo: "git+https://github.com/jfeser/mtree.git"
39url {
40 src: "https://github.com/jfeser/mtree/releases/download/0.1/m_tree-0.1.tbz"
41 checksum: [
42 "sha256=21afe9d04e0fb539a1fff94efdce893e1763ae8f9807c757b40e315d38292d66"
43 "sha512=e778037047e3f8a3e53c8799fdf9d270149305d70b24d1dd6a5c76081a2b69698b43ecbc04073a5f78da9855b13c7376076fd1e468153579fe400b0860ec6c5e"
44 ]
45}
46x-commit-hash: "d2596253dd16c4b6c705310ccd8aa3e599ffc8b9"