From e1b1461a1207ff65f53c562a07d57a0d0f58936a Mon Sep 17 00:00:00 2001 From: Tim McGilchrist Date: Mon, 6 Nov 2023 10:37:09 +1100 Subject: [PATCH] Add lower bounds on eio. --- dune-project | 4 ++-- grpc-eio.opam | 2 +- grpc-examples.opam | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dune-project b/dune-project index 93cd4c0..9856ec7 100644 --- a/dune-project +++ b/dune-project @@ -74,7 +74,7 @@ (depends (grpc (= :version)) - eio + (eio (>= 0.12)) stringext)) (package @@ -96,7 +96,7 @@ tls-async (lwt_ssl (>= 1.2.0)) (mdx (and (>= 2.2.1) :with-test)) - (eio_main (>= 0.10)) + (eio_main (>= 0.12)) stringext)) (package diff --git a/grpc-eio.opam b/grpc-eio.opam index eddb0b3..57541ef 100644 --- a/grpc-eio.opam +++ b/grpc-eio.opam @@ -19,7 +19,7 @@ bug-reports: "https://github.com/dialohq/ocaml-grpc/issues" depends: [ "dune" {>= "3.7"} "grpc" {= version} - "eio" + "eio" {>= "0.12"} "stringext" "odoc" {with-doc} ] diff --git a/grpc-examples.opam b/grpc-examples.opam index 017ee7a..7c8ef02 100644 --- a/grpc-examples.opam +++ b/grpc-examples.opam @@ -32,7 +32,7 @@ depends: [ "tls-async" "lwt_ssl" {>= "1.2.0"} "mdx" {>= "2.2.1" & with-test} - "eio_main" {>= "0.10"} + "eio_main" {>= "0.12"} "stringext" "odoc" {with-doc} ]