-
Notifications
You must be signed in to change notification settings - Fork 0
/
git-kv.opam
32 lines (30 loc) · 1015 Bytes
/
git-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
30
31
32
opam-version: "2.0"
maintainer: "Robur Team <[email protected]>"
authors: [ "Robur Team <[email protected]>" ]
license: "MIT"
homepage: "https://github.com/robur-coop/git-kv"
dev-repo: "git+https://github.com/robur-coop/git-kv.git"
bug-reports: "https://github.com/robur-coop/git-kv/issues"
synopsis: "A Mirage_kv implementation using git"
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.9.0"}
"git" {>= "3.10.0"}
"mirage-kv" {>= "6.0.0"}
"carton" {>= "0.7.0"}
"carton-lwt" {>= "0.7.0"}
"fmt" {>= "0.8.7"}
"mirage-clock" {>= "2.0.0"}
"ptime"
"hxd" {with-test}
"conf-git" {with-test}
"mirage-clock-unix" {with-test}
"git-unix" {>= "3.10.0" & with-test}
"alcotest" {>= "1.8.0" & with-test}
"bos" {>= "0.2.1" & with-test}
]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]