From 5582ce85e341ca28153eb96fd30a10e34871e2bb Mon Sep 17 00:00:00 2001 From: Mathieu Barbin Date: Sun, 7 Jan 2024 13:53:47 +0100 Subject: [PATCH] fix order of dependencies in grpc-examples --- dune-project | 14 +++++++------- grpc-examples.opam | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/dune-project b/dune-project index ce61cbe..f9d23ff 100644 --- a/dune-project +++ b/dune-project @@ -99,10 +99,6 @@ (tags (network rpc serialisation)) (depends - (uri - (>= 4.4.0)) - (lwt - (>= 5.3.0)) (async (>= v0.16.0)) cohttp @@ -123,6 +119,8 @@ h2-async h2-eio h2-lwt-unix + (lwt + (>= 5.3.0)) (lwt_ssl (>= 1.2.0)) (mdx @@ -131,12 +129,14 @@ :with-test)) (ocaml-protoc-plugin (>= 4.5)) - (ppx_jane - (>= v0.16.0)) ppx_deriving ppx_deriving_yojson + (ppx_jane + (>= v0.16.0)) stringext - tls-async)) + tls-async + (uri + (>= 4.4.0)))) (package (name grpc-bench) diff --git a/grpc-examples.opam b/grpc-examples.opam index d5e373c..fe616e8 100644 --- a/grpc-examples.opam +++ b/grpc-examples.opam @@ -19,8 +19,6 @@ doc: "https://dialohq.github.io/ocaml-grpc" bug-reports: "https://github.com/dialohq/ocaml-grpc/issues" depends: [ "dune" {>= "3.7"} - "uri" {>= "4.4.0"} - "lwt" {>= "5.3.0"} "async" {>= "v0.16.0"} "cohttp" "cohttp-lwt" @@ -36,14 +34,16 @@ depends: [ "h2-async" "h2-eio" "h2-lwt-unix" + "lwt" {>= "5.3.0"} "lwt_ssl" {>= "1.2.0"} "mdx" {>= "2.2.1" & with-test} "ocaml-protoc-plugin" {>= "4.5"} - "ppx_jane" {>= "v0.16.0"} "ppx_deriving" "ppx_deriving_yojson" + "ppx_jane" {>= "v0.16.0"} "stringext" "tls-async" + "uri" {>= "4.4.0"} "odoc" {with-doc} ] build: [