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 "-j" jobs] {with-test}
19]
20
21depends: [
22 "ocaml" {>= "4.08.0"}
23 "dune" {>= "2.7.0"}
24 "optint" {>= "0.1.0"}
25 "repr" {>= "0.6.0"}
26 "ppx_repr"
27 "fmt" {>= "0.8.5"}
28 "logs" {>= "0.7.0" & < "0.8.0"}
29 "mtime" {>= "1.1.0" & < "2.0.0"}
30 "cmdliner" {< "2.0.0"}
31 "progress" {>= "0.2.1"}
32 "semaphore-compat" {>= "1.0.1"}
33 "jsonm"
34 "stdlib-shims"
35 "alcotest" {with-test}
36 "crowbar" {with-test & >= "0.2"}
37 "re" {with-test}
38 "lru" {>= "0.3.0"}
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."""
51url {
52 src:
53 "https://github.com/mirage/index/releases/download/1.6.1/index-1.6.1.tbz"
54 checksum: [
55 "sha256=acfc0dcea916a836a4da60d30c806a22f69c858d6f7ce233166c1a5e365e6bee"
56 "sha512=78c45c71c1194d6e118c5cf3920d84c571d0f61f8fa3467f72e7c17c4bbab8e01a5efdb6a96a5328a7b3c5bbf01b0b31e42525c66f4be72d986530ef0ec7cec5"
57 ]
58}
59x-commit-hash: "8f21880122f0774113ab664cebd9e31ae9391b75"