this repo has no description
1opam-version: "2.0"
2synopsis:
3 "Patricia Tree data structure in OCaml for maps and sets. Supports generic key-value pairs"
4maintainer: ["Dorian Lesbre <dorian.lesbre@cea.fr>"]
5authors: [
6 "Matthieu Lemerre <matthieu.lemerre@cea.fr>"
7 "Dorian Lesbre <dorian.lesbre@cea.fr>"
8]
9license: "LGPL-2.1-only"
10homepage: "https://codex.top/api/patricia-tree/"
11doc: "https://codex.top/api/patricia-tree/"
12bug-reports:
13 "https://github.com/codex-semantics-library/patricia-tree/issues"
14depends: [
15 "ocaml" {>= "4.14"}
16 "dune" {>= "3.0"}
17 "qcheck-core" {>= "0.21.2" & with-test}
18 "ppx_inline_test" {>= "v0.16.0" & with-test}
19 "mdx" {>= "2.4.1" & with-test}
20 "odoc" {>= "2.4.0" & with-doc}
21 "sherlodoc" {with-doc}
22]
23build: [
24 ["dune" "subst"] {dev}
25 [
26 "dune"
27 "build"
28 "-p"
29 name
30 "-j"
31 jobs
32 "@install"
33 "@runtest" {with-test}
34 "@doc" {with-doc}
35 ]
36]
37dev-repo: "git+https://github.com/codex-semantics-library/patricia-tree.git"
38url {
39 src:
40 "https://github.com/codex-semantics-library/patricia-tree/releases/download/v0.10.0/patricia-tree-0.10.0.tbz"
41 checksum: [
42 "sha256=10b4d793f5b8d30ce8ee072624134595040949b9653079cf3431c64f1fd29dc6"
43 "sha512=608a735220a5dde2c5674719d0c1fc29714436147fbc0d30b58adf75b95b883e561004ca98f9091b319d2432d728fb84b026a5431d93414005803e3059d13061"
44 ]
45}
46x-commit-hash: "b9b6c645a91a581d2705bb86f09c9ca8aef8353c"