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.6"}
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.0.1/index-1.0.1.tbz"
44 checksum: [
45 "sha256=7f2f9efe3ed8b0a434ddf819c835f12ec03c21bc6f9ca6b7904407f146e60680"
46 "sha512=47a62af9a60a059dd4b40a32d841b1afa87a64e6cd65024dbf26622b30e7187e5cc482279143d87e4216fb94d7c9cfcf4c19bedbe7f930877b200a637a858092"
47 ]
48}