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