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: "851da36bfc053f776fe2c3563d12c04dfb6a77bc" 25url { 26 src: 27 "https://github.com/dinosaure/art/releases/download/v0.1.1/art-v0.1.1.tbz" 28 checksum: [ 29 "sha256=3aa83eb744f50e7e141de93eec5f3788da6160df090958ad1a10cf3645bf5497" 30 "sha512=e9d4c9ae09eac7e5f94e83d37c265cbc5fa41c069f15ddf7a277d1e3a64770515928936fd3cd4fc34026a18c8995a90d4fc48e73cbb4cd67e630e4a84061253b" 31 ] 32}