From 98fce5913e41697adb2732b869330fdca096c68d Mon Sep 17 00:00:00 2001 From: Daniel Quernheim Date: Wed, 1 Nov 2023 12:23:50 +0000 Subject: [PATCH] Fix dependencies for `eio` and `async` We don't require the `h2-{async,eio,lwt}` packages anymore in the `.opam` files, so we can't have them in the `dune` files either --- lib/grpc-async/dune | 2 +- lib/grpc-eio/dune | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/grpc-async/dune b/lib/grpc-async/dune index 3bd83b1..2db5222 100644 --- a/lib/grpc-async/dune +++ b/lib/grpc-async/dune @@ -1,6 +1,6 @@ (library (name grpc_async) (public_name grpc-async) - (libraries grpc h2 h2-async stringext async) + (libraries grpc h2 stringext async) (preprocess (pps ppx_jane))) diff --git a/lib/grpc-eio/dune b/lib/grpc-eio/dune index b112d4e..39ce5ea 100644 --- a/lib/grpc-eio/dune +++ b/lib/grpc-eio/dune @@ -1,4 +1,4 @@ (library (name grpc_eio) (public_name grpc-eio) - (libraries grpc h2-eio)) + (libraries grpc h2 eio))