forked from mirage/irmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
irmin-client.opam
33 lines (33 loc) · 935 Bytes
/
irmin-client.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
opam-version: "2.0"
synopsis: "A client for irmin-server"
maintainer: "Zach Shipko <[email protected]>"
authors: "Zach Shipko <[email protected]>"
license: "ISC"
homepage: "https://github.com/mirage/irmin"
doc: "https://irmin.org"
dev-repo: "git+ssh://github.com/mirage/irmin"
bug-reports: "https://github.com/mirage/irmin/issues"
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.9.0"}
"irmin-server" {= version}
"irmin-cli" {= version}
"ipaddr"
"websocket-lwt-unix"
"conduit-lwt-unix" {>= "6.0.0"}
"lwt-dllist"
"js_of_ocaml-lwt"
"brr" {>= "0.0.4"}
"fmt" {>= "0.9.0"}
"logs" {>= "0.7.0"}
"lwt" {>= "5.7.0"}
"irmin-test" {= version & with-test}
"alcotest-lwt" {with-test & >= "1.8.0"}
"irmin-watcher" {with-test & >= "0.5.0"}
"mirage-crypto-rng-lwt" {with-test & >= "1.1.0"}
]
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name] {with-test}
]