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]
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.1.0/index-1.1.0.tbz"
44 checksum: [
45 "sha256=a2966d8aa7d318daea3474ca53c6f0239759ca5c966d36e084758adc49eadfef"
46 "sha512=45cff0b3665ca375dfc329faad3a598fe306e47a715ce0abf7842fd119af20591d1568b9c8779ff1a382ed089bdbdf167bf5712ae8da7d86cac9afaebafb8324"
47 ]
48}