forked from ocurrent/solver-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
58 lines (54 loc) · 1.59 KB
/
dune-project
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
51
52
53
54
55
56
57
58
(lang dune 3.7)
(name solver-service)
(generate_opam_files true)
(source (github ocurrent/solver-service))
(authors "Thomas Leonard <[email protected]>" "Patrick Ferris <[email protected]>")
(maintainers "[email protected]" "Tim McGilchrist <[email protected]>")
(package
(name solver-service)
(synopsis "Choose package versions to test")
(depends
(ocaml (>= 4.14.1))
(alcotest-lwt (and (>= 1.7.0) :with-test))
; Examples dependencies
(current_web :with-test)
(current_github :with-test)
(current_ocluster :with-test)
(ppx_deriving_yojson (>= 3.6.1))
(ppx_deriving (>= 5.1))
(yojson (>= 2.1.0))
(lwt (>= 5.6.1))
(logs (>= 0.7.0))
(fmt (>= 0.9.0))
(ocaml-version (>= 3.6.1))
(solver-service-api (= :version))
(dune-build-info (>= 3.8.0))
conf-libev
(opam-0install (>= 0.4.3))
(git-unix (>= 3.12.0))
(capnp-rpc-unix (>= 1.2.3)))
(conflicts (carton (< 0.4.2))))
(package
(name solver-service-api)
(synopsis "Cap'n Proto API for the solver service")
(depends
(ocaml (>= 4.14.1))
(alcotest-lwt (and (>= 1.7.0) :with-test))
current_rpc ; Version pinned by git submodule
(capnp (>= 3.5.0))
(capnp-rpc-lwt (>= 1.2.3))
(ppx_deriving_yojson (>= 3.6.1))
(ppx_deriving (>= 5.1))))
(package
(name solver-worker)
(synopsis "OCluster worker that can solve opam constraints")
(depends
(ocaml (>= 4.14.1))
(alcotest-lwt (and (>= 1.7.0) :with-test))
ocluster-api
current ; Version pinned by git submodule
(prometheus-app (>= 1.2))
(logs (>= 0.7.0))
(fmt (>= 0.9.0))
(dune-build-info (>= 3.7))
(solver-service (= :version))))