forked from mirage/irmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
irmin-server.opam
36 lines (35 loc) · 965 Bytes
/
irmin-server.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
opam-version: "2.0"
synopsis: "A high-performance server for Irmin"
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"}
"optint" {>= "0.1.0"}
"irmin" {= version}
"ppx_irmin" {= version}
"irmin-pack" {= version}
"uri"
"fmt"
"cmdliner" {>= "1.0.4"}
"logs" {>= "0.7.0"}
"lwt" {>= "5.4.0"}
"conduit-lwt-unix" {>= "6.0.0"}
"websocket-lwt-unix"
"cohttp-lwt-unix"
"ppx_blob" {>= "0.7.2"}
"digestif" {>= "1.1.4"}
"alcotest-lwt" {>= "1.7.0" & with-test}
"irmin-watcher" {>= "0.5.0" & with-test}
"irmin-test" {= version & with-test}
]
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name] {with-test}
]