Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion current_ocluster.opam
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ depends: [
"dune" {>= "3.7"}
"ocluster-api" {= version}
"ocaml" {>= "4.14.1"}
"capnp-rpc-unix" {>= "1.2.3"}
"capnp-rpc-unix" {>= "1.2.3" & < "2.0"}
"current" {>= "0.6.4"}
"current_git" {>= "0.6.4"}
"duration"
Expand Down
12 changes: 6 additions & 6 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
(description "OCaml bindings for the OCluster Cap'n Proto API.")
(depends
(ocaml (>= 4.14.1))
(capnp-rpc-lwt (>= 1.2.3))
(capnp-rpc-lwt (and (>= 1.2.3) (< 2.0)))
fmt
(lwt (>= 5.6.1))
ppx_deriving
Expand All @@ -36,7 +36,7 @@
(depends
(ocluster-api (= :version))
(ocaml (>= 4.14.1))
(capnp-rpc-lwt (>= 1.2.3))
(capnp-rpc-lwt (and (>= 1.2.3) (< 2.0)))
(cohttp-lwt-unix (>= 4.0))
(digestif (>= 0.8))
(extunix (>= 0.4.1))
Expand All @@ -54,9 +54,9 @@
(ocluster-api (= :version))
(ocluster-worker (= :version))
(ocaml (>= 4.14.1))
(capnp-rpc-lwt (>= 1.2.3))
(capnp-rpc-net (>= 1.2.3))
(capnp-rpc-unix (>= 1.2.3))
(capnp-rpc-lwt (and (>= 1.2.3) (< 2.0)))
(capnp-rpc-net (and (>= 1.2.3) (< 2.0)))
(capnp-rpc-unix (and (>= 1.2.3) (< 2.0)))
(cmdliner (>= 1.2.0))
(conf-libev (<> :os "win32"))
(digestif (>= 0.8))
Expand Down Expand Up @@ -89,7 +89,7 @@
(depends
(ocluster-api (= :version))
(ocaml (>= 4.14.1))
(capnp-rpc-unix (>= 1.2.3))
(capnp-rpc-unix (and (>= 1.2.3) (< 2.0)))
(current (>= 0.6.4))
(current_git (>= 0.6.4))
duration
Expand Down
2 changes: 1 addition & 1 deletion ocluster-api.opam
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ bug-reports: "https://github.com/ocurrent/ocluster/issues"
depends: [
"dune" {>= "3.7"}
"ocaml" {>= "4.14.1"}
"capnp-rpc-lwt" {>= "1.2.3"}
"capnp-rpc-lwt" {>= "1.2.3" & < "2.0"}
"fmt"
"lwt" {>= "5.6.1"}
"ppx_deriving"
Expand Down
2 changes: 1 addition & 1 deletion ocluster-worker.opam
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ depends: [
"dune" {>= "3.7"}
"ocluster-api" {= version}
"ocaml" {>= "4.14.1"}
"capnp-rpc-lwt" {>= "1.2.3"}
"capnp-rpc-lwt" {>= "1.2.3" & < "2.0"}
"cohttp-lwt-unix" {>= "4.0"}
"digestif" {>= "0.8"}
"extunix" {>= "0.4.1"}
Expand Down
6 changes: 3 additions & 3 deletions ocluster.opam
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ depends: [
"ocluster-api" {= version}
"ocluster-worker" {= version}
"ocaml" {>= "4.14.1"}
"capnp-rpc-lwt" {>= "1.2.3"}
"capnp-rpc-net" {>= "1.2.3"}
"capnp-rpc-unix" {>= "1.2.3"}
"capnp-rpc-lwt" {>= "1.2.3" & < "2.0"}
"capnp-rpc-net" {>= "1.2.3" & < "2.0"}
"capnp-rpc-unix" {>= "1.2.3" & < "2.0"}
"cmdliner" {>= "1.2.0"}
"conf-libev" {os != "win32"}
"digestif" {>= "0.8"}
Expand Down