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/patricia-tree/" 11doc: "https://codex.top/patricia-tree/" 12bug-reports: 13 "https://github.com/codex-semantics-library/patricia-tree/issues" 14depends: [ 15 "ocaml" {>= "4.14"} 16 "zarith" {>= "1.13"} 17 "dune" {>= "2.7"} 18 "qcheck-core" {>= "0.21.2" & with-test} 19 "ppx_inline_test" {>= "v0.16.0" & with-test} 20 "odoc" {with-doc} 21] 22build: [ 23 ["dune" "subst"] {dev} 24 [ 25 "dune" 26 "build" 27 "-p" 28 name 29 "-j" 30 jobs 31 "@install" 32 "@runtest" {with-test} 33 "@doc" {with-doc} 34 ] 35] 36dev-repo: "git+https://github.com/codex-semantics-library/patricia-tree.git" 37url { 38 src: 39 "https://github.com/codex-semantics-library/patricia-tree/releases/download/v0.9.0/patricia-tree-0.9.0.tbz" 40 checksum: [ 41 "sha256=a1c431db349146feec0c4c454adf43a9065cc644a9ed10c58be4a5e6f569ca3d" 42 "sha512=0c715ecd53321e9d2551ccbe655fc5725e6eba1396e985525161f34c4dfe3d0f1e9a550e55e7ec0612eb37ae606194600da90f2efc1e4fb5f67ac96247432339" 43 ] 44} 45x-commit-hash: "a15fd857e1f719169179c1ef3097f12f89a5d012"