forked from mirage/mirage-kv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmirage-kv.opam
29 lines (28 loc) · 931 Bytes
/
mirage-kv.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
opam-version: "2.0"
maintainer: "Thomas Gazagnaire <[email protected]>"
authors: ["Thomas Gazagnaire <[email protected]>" "Stefanie Schirmer" "Hannes Mehnert"]
homepage: "https://github.com/mirage/mirage-kv"
doc: "https://mirage.github.io/mirage-kv/"
license: "ISC"
dev-repo: "git+https://github.com/mirage/mirage-kv.git"
bug-reports: "https://github.com/mirage/mirage-kv/issues"
tags: ["org:mirage"]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name] {with-test}
]
depends: [
"ocaml" {>= "4.08.0"}
"dune"
"fmt" {>= "0.8.7"}
"lwt" {>= "4.0.0"}
"optint" {>= "0.2.0"}
"ptime" {>= "1.0.0"}
"alcotest" {with-test & >= "0.8.1"}
]
synopsis: "MirageOS signatures for key/value devices"
description: """
mirage-kv provides the `Mirage_kv.RO` and `Mirage_kv.RW`
signatures the MirageOS key/value devices should implement.
"""