-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.opam
50 lines (46 loc) · 1.49 KB
/
index.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
opam-version: "2.0"
maintainer: "Clement Pascutto"
authors: [
"Craig Ferguson <craig@tarides.com>"
"Thomas Gazagnaire <thomas@tarides.com>"
"Ioana Cristescu <ioana@tarides.com>"
"Clément Pascutto <clement@tarides.com>"
]
license: "MIT"
homepage: "https://github.com/mirage/index"
bug-reports: "https://github.com/mirage/index/issues"
dev-repo: "git+https://github.com/mirage/index.git"
doc: "https://mirage.github.io/index/"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.7.0"}
"optint" {>= "0.1.0"}
"repr" {>= "0.6.0"}
"ppx_repr"
"fmt" {>= "0.8.5"}
"logs" {>= "0.7.0"}
"mtime" {>= "2.0.0"}
"cmdliner" {>= "1.1.0"}
"progress" {>= "0.2.1"}
"semaphore-compat" {>= "1.0.1"}
"jsonm"
"stdlib-shims"
"alcotest" {with-test & >= "1.7.0"}
"crowbar" {with-test & >= "0.2"}
"re" {with-test}
"lru" {>= "0.3.0"}
]
synopsis: "A platform-agnostic multi-level index for OCaml"
description:"""
Index is a scalable implementation of persistent indices in OCaml.
It takes an arbitrary IO implementation and user-supplied content
types and supplies a standard key-value interface for persistent
storage. Index provides instance sharing: each OCaml
run-time can share a common singleton instance.
Index supports multiple-reader/single-writer access. Concurrent access
is safely managed using lock files."""