this repo has no description
1opam-version: "2.0" 2maintainer: "Clement Pascutto" 3authors: [ 4 "Craig Ferguson <craig@tarides.com>" 5 "Thomas Gazagnaire <thomas@tarides.com>" 6 "Ioana Cristescu <ioana@tarides.com>" 7 "Clément Pascutto <clement@tarides.com>" 8] 9license: "MIT" 10homepage: "https://github.com/mirage/index" 11bug-reports: "https://github.com/mirage/index/issues" 12dev-repo: "git+https://github.com/mirage/index.git" 13doc: "https://mirage.github.io/index/" 14 15build: [ 16 ["dune" "subst"] {dev} 17 ["dune" "build" "-p" name "-j" jobs] 18 ["dune" "runtest" "-p" name] {with-test} 19] 20 21depends: [ 22 "ocaml" {>= "4.06.0" & < "4.12.0"} 23 "dune" {>= "1.11.0"} 24 "fmt" {>= "0.8.6"} 25 "logs" {>= "0.7.0"} 26 "alcotest" {with-test} 27 "crowbar" {with-test} 28 "re" {with-test} 29] 30synopsis: "A platform-agnostic multi-level index for OCaml" 31description:""" 32Index is a scalable implementation of persistent indices in OCaml. 33 34It takes an arbitrary IO implementation and user-supplied content 35types and supplies a standard key-value interface for persistent 36storage. Index provides instance sharing by default: each OCaml 37run-time shares a common singleton instance. 38 39Index supports multiple-reader/single-writer access. Concurrent access 40is safely managed using lock files.""" 41url { 42 src: 43 "https://github.com/mirage/index/releases/download/1.0.0/index-1.0.0.tbz" 44 checksum: [ 45 "sha256=9e2b60bffcad828b2c732cbdfb6c35627443062fb482d08e431035f78e54584a" 46 "sha512=44d710f5ef3007abfbbab4bcc8d408e59d55f109fff81c7be6513fb838092039b6af4371f6df14d1746eaa0b9784549ebfecd9cf8b0578fa831281162ba635e3" 47 ] 48}