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.08.0"} 23 "dune" {>= "2.7.0"} 24 "optint" {>= "0.1.0"} 25 "repr" {>= "0.2.0" & < "0.5.0"} 26 "ppx_repr" 27 "fmt" {>= "0.8.5"} 28 "logs" {>= "0.7.0"} 29 "mtime" {>= "1.1.0"} 30 "cmdliner" {< "2.0.0"} 31 "cmdliner" {with-test & < "1.1.0"} 32 "progress" {>= "0.1.1" & < "0.2.0"} 33 "semaphore-compat" {>= "1.0.1"} 34 "jsonm" 35 "stdlib-shims" 36 "alcotest" {with-test} 37 "crowbar" {with-test & >= "0.2"} 38 "re" {with-test} 39] 40synopsis: "A platform-agnostic multi-level index for OCaml" 41description:""" 42Index is a scalable implementation of persistent indices in OCaml. 43 44It takes an arbitrary IO implementation and user-supplied content 45types and supplies a standard key-value interface for persistent 46storage. Index provides instance sharing: each OCaml 47run-time can share a common singleton instance. 48 49Index supports multiple-reader/single-writer access. Concurrent access 50is safely managed using lock files.""" 51x-commit-hash: "a2ef9791eb79e29e3d46a7dde66d93cb5b7a19ef" 52url { 53 src: 54 "https://github.com/mirage/index/releases/download/1.4.0/index-1.4.0.tbz" 55 checksum: [ 56 "sha256=8cd859751eb01b578402ec7de3d67fc0b92106381df9704331da81c25041ad8f" 57 "sha512=212d674b50b091f8fd3ad0e793e06c555bd012669ff6eb2fe0774469a64f008c1957795203a3b5e08a583e66aa34f2e11f02def7f818bd54c1bf3ad07b71c3ec" 58 ] 59}