-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53e4c0e
commit ffe2df9
Showing
5 changed files
with
102 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
(dirs :standard \ var cache) | ||
(dirs :standard \ var) | ||
|
||
(vendored_dirs scache) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,97 @@ | ||
(lang dune 3.7) | ||
|
||
(name solver-service) | ||
|
||
(formatting (enabled_for dune)) | ||
(formatting | ||
(enabled_for dune)) | ||
|
||
(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]>") | ||
|
||
(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 (>= 5.0.0)) | ||
; Examples dependencies | ||
(current_web (and (>= 0.6.4) :with-test)) | ||
(current_git (and (>= 0.6.4) :with-test)) | ||
(current_github (and (>= 0.6.4) :with-test)) | ||
(current_ocluster (and (>= 0.2.1) :with-test)) | ||
(ppx_deriving_yojson (>= 3.6.1)) | ||
(ppx_deriving (>= 5.1)) | ||
(yojson (>= 2.1.0)) | ||
(lwt (>= 5.6.1)) | ||
(eio (>= 0.12)) | ||
(eio_main (>= 0.12)) | ||
(lwt_eio (>= 0.5)) | ||
(logs (>= 0.7.0)) | ||
(fmt (>= 0.9.0)) | ||
(ocaml-version (>= 3.6.1)) | ||
(solver-service-api (= :version)) | ||
(dune-build-info (>= 3.8.0)) | ||
(opam-0install (>= 0.4.3)) | ||
(git-unix (>= 3.12.0)) | ||
(ocluster-api (>= 0.2.1)) | ||
(prometheus-app (>= 1.2)) | ||
(capnp-rpc-net (>= 1.2.3)) | ||
(capnp-rpc-unix (>= 1.2.3))) | ||
(conflicts (carton (< 0.4.2)))) | ||
(opam-file-format | ||
(>= 2.1.6)) | ||
(ocaml | ||
(>= 5.0.0)) | ||
(current_web | ||
(and | ||
(>= 0.6.4) | ||
:with-test)) | ||
(current_git | ||
(and | ||
(>= 0.6.4) | ||
:with-test)) | ||
(current_github | ||
(and | ||
(>= 0.6.4) | ||
:with-test)) | ||
(current_ocluster | ||
(and | ||
(>= 0.2.1) | ||
:with-test)) | ||
(ppx_deriving_yojson | ||
(>= 3.6.1)) | ||
(ppx_deriving | ||
(>= 5.1)) | ||
(yojson | ||
(>= 2.1.0)) | ||
(lwt | ||
(>= 5.6.1)) | ||
(eio | ||
(>= 0.12)) | ||
(eio_main | ||
(>= 0.12)) | ||
(lwt_eio | ||
(>= 0.5)) | ||
(logs | ||
(>= 0.7.0)) | ||
(fmt | ||
(>= 0.9.0)) | ||
sqlite3 | ||
(ocaml-version | ||
(>= 3.6.1)) | ||
(solver-service-api | ||
(= :version)) | ||
(dune-build-info | ||
(>= 3.8.0)) | ||
(opam-0install | ||
(>= 0.4.3)) | ||
(git-unix | ||
(>= 3.12.0)) | ||
(ocluster-api | ||
(>= 0.2.1)) | ||
(prometheus-app | ||
(>= 1.2)) | ||
(capnp-rpc-net | ||
(>= 1.2.3)) | ||
(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)) | ||
(capnp (>= 3.5.0)) | ||
(capnp-rpc-lwt (>= 1.2.3)) | ||
(ppx_deriving_yojson (>= 3.6.1)) | ||
(ppx_deriving (>= 5.1)))) | ||
(ocaml | ||
(>= 4.14.1)) | ||
(capnp | ||
(>= 3.5.0)) | ||
(capnp-rpc-lwt | ||
(>= 1.2.3)) | ||
(ppx_deriving_yojson | ||
(>= 3.6.1)) | ||
(ppx_deriving | ||
(>= 5.1)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters