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.8.0"} 20 "fmt" {>= "0.8.7"} 21 "alcotest" {with-test} 22 "crowbar" {with-test} 23 "monolith" {with-test} 24] 25url { 26 src: 27 "https://github.com/dinosaure/art/releases/download/v0.2.0/art-0.2.0.tbz" 28 checksum: [ 29 "sha256=3b0690b13902d30c857bb7edf4491731c374c7504a999e6fabed9228504de9bb" 30 "sha512=b3f96eb07fb50ed014483dabe4b364c195a9e7bd2641225cb599d783c096c9d8be036966c33e5eb0c1d9c193328f4163292d460481c258aa1c5d512ccc713690" 31 ] 32} 33x-commit-hash: "25a1d6efb20a3650899d87a1a70161ee3338c986"