this repo has no description
1opam-version: "2.0" 2synopsis: "A B-Tree based index implementation" 3description: 4 "Cactus implements a disk-resident, B-Tree based key-value data structure." 5maintainer: "gabriel.belouze@tarides.com" 6authors: [ 7 "Gabriel Belouze <gabriel.belouze@ens.psl.eu>" 8 "Ioana Cristescu <ioana@tarides.com>" 9] 10license: "MIT" 11homepage: "https://github.com/mirage/cactus/" 12bug-reports: "https://github.com/mirage/cactus/issues/" 13depends: [ 14 "dune" {>= "2.8"} 15 "ocaml" {>= "4.11.0"} 16 "alcotest" {with-test} 17 "repr" {>= "0.2.1" & < "0.6.0"} 18 "ppx_repr" {>= "0.2.1"} 19 "hex" {>= "1.4.0"} 20 "logs" {>= "0.7.0"} 21 "mtime" {>= "1.2.0" & < "2.0.0"} 22 "progress" {>= "0.2.1"} 23 "optint" {>= "0.1.0"} 24 "lru" {>= "0.3.0"} 25 "bentov" {>= "1"} 26 "fmt" {>= "0.8.9" & with-test} 27] 28build: [ 29 ["dune" "subst"] {dev} 30 [ 31 "dune" 32 "build" 33 "-p" 34 name 35 "-j" 36 jobs 37 "@install" 38 "@runtest" {with-test} 39 "@doc" {with-doc} 40 ] 41] 42dev-repo: "git+https://github.com/mirage/cactus.git" 43url { 44 src: 45 "https://github.com/mirage/cactus/releases/download/1.0.0/cactus-1.0.0.tbz" 46 checksum: [ 47 "sha256=2332a10e6bf52c8fd6b3a6587551271072eb77373824b18885dbb575dfe1707f" 48 "sha512=2246a48b85a0d2eef2b23a05b9886911f172c7eaa77b643a2c51e23be885342b5149c39c51aab7fd1798515500a87954c9a57d7b6f2c8cc3d855a6f193480ac8" 49 ] 50} 51x-commit-hash: "ddb2b0dffb47d1fb2940ac2173d68e5275cc45e6"