this repo has no description
1opam-version: "2.0"
2maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>"
3authors: "Romain Calascibetta <romain.calascibetta@gmail.com>"
4homepage: "https://github.com/dinosaure/art"
5bug-reports: "https://github.com/dinosaure/art/issues"
6dev-repo: "git+https://github.com/dinosaure/art.git"
7doc: "https://dinosaure.github.io/art/"
8license: "MIT"
9synopsis: "Adaptive Radix Tree"
10description: """
11Implementation of an Adaptive Radix Tree in OCaml. A fast hash-table
12like structure plus the order."""
13
14build: [ "dune" "build" "-p" name "-j" jobs ]
15run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
16
17depends: [
18 "ocaml" {>= "4.07.0"}
19 "dune" {>= "2.7.0"}
20 "base-bytes"
21 "fmt" {>= "0.8.7"}
22 "alcotest" {with-test}
23]
24x-commit-hash: "b5bb8afcd294122171c020fa31a36a0b1eafeb5d"
25url {
26 src:
27 "https://github.com/dinosaure/art/releases/download/v0.1.0/art-v0.1.0.tbz"
28 checksum: [
29 "sha256=0f37b4a13c04737edcf4343f3c2c1186ebae4fba5311a6a0e7c7c8ee358459a9"
30 "sha512=131760ec65180cfc3679f12b351e00036654b600c2454770619f5f4d921608d94663ffc97b1504bbf04193c7cb86d2fd7ec05af8aa32b08ea2c1a801418019e7"
31 ]
32}