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.5"} 25 "logs" {>= "0.7.0"} 26 "mtime" {>= "1.0.0"} 27 "alcotest" {with-test} 28 "crowbar" {with-test} 29 "re" {with-test} 30 "stdlib-shims" 31] 32synopsis: "A platform-agnostic multi-level index for OCaml" 33description:""" 34Index is a scalable implementation of persistent indices in OCaml. 35 36It takes an arbitrary IO implementation and user-supplied content 37types and supplies a standard key-value interface for persistent 38storage. Index provides instance sharing by default: each OCaml 39run-time shares a common singleton instance. 40 41Index supports multiple-reader/single-writer access. Concurrent access 42is safely managed using lock files.""" 43url { 44 src: 45 "https://github.com/mirage/index/releases/download/1.2.1/index-1.2.1.tbz" 46 checksum: [ 47 "sha256=cd80c43fd046b3d405b567eed237ad25450140e931d1eef5015ee6af74362ba9" 48 "sha512=1f9a7f02309450c0c64b2b92ef1ef367b10fae65af7ff451976c8fef7c88929527e4561bea8360e9dd34af50187c816f1ab716e234d24a81b43ca718e0b52ee2" 49 ] 50}