-
Notifications
You must be signed in to change notification settings - Fork 1
/
art.opam
25 lines (23 loc) · 876 Bytes
/
art.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
opam-version: "2.0"
name: "art"
maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>"
authors: "Romain Calascibetta <romain.calascibetta@gmail.com>"
homepage: "https://github.com/dinosaure/art"
bug-reports: "https://github.com/dinosaure/art/issues"
dev-repo: "git+https://github.com/dinosaure/art.git"
doc: "https://dinosaure.github.io/art/"
license: "MIT"
synopsis: "Adaptive Radix Tree"
description: """
Implementation of an Adaptive Radix Tree in OCaml. A fast hash-table
like structure plus the order."""
build: [ "dune" "build" "-p" name "-j" jobs ]
run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.8.0"}
"fmt" {>= "0.8.7"}
"alcotest" {>= "1.7.0" & with-test}
"crowbar" {with-test}
"monolith" {>= "20210525" & with-test}
]