From b7182a17e9769c7d08c5b05e2512e0eca605f74e Mon Sep 17 00:00:00 2001 From: Marcello Seri Date: Fri, 30 Jun 2023 16:45:55 +0200 Subject: [PATCH] Fix opam file dependencies Signed-off-by: Marcello Seri --- cohttp-async.opam | 2 +- dune-project | 7 +------ http.opam | 2 -- 3 files changed, 2 insertions(+), 9 deletions(-) diff --git a/cohttp-async.opam b/cohttp-async.opam index 228d3959ba..3590c07c6e 100644 --- a/cohttp-async.opam +++ b/cohttp-async.opam @@ -31,7 +31,7 @@ depends: [ "async_kernel" {>= "v0.16.0"} "async_unix" {>= "v0.16.0"} "async" {>= "v0.16.0"} - "base" {>= "v0.16"} + "base" {>= "v0.16.0"} "core" {with-test} "core_unix" {>= "v0.14.0"} "conduit-async" {>= "1.2.0"} diff --git a/dune-project b/dune-project index b57c16067c..ec0e8d34b7 100644 --- a/dune-project +++ b/dune-project @@ -168,7 +168,7 @@ should also be fine under Windows too. "An implementation of an HTTP client and server using the Async\nconcurrency library. See the `Cohttp_async` module for information\non how to use this. The package also installs `cohttp-curl-async`\nand a `cohttp-server-async` binaries for quick uses of a HTTP(S)\nclient and server respectively.\n") (depends (ocaml - (>= 4.08)) + (>= 4.14)) (http (= :version)) (cohttp @@ -248,11 +248,6 @@ should also be fine under Windows too. (ppx_sexp_conv :with-test) (ppx_compare :with-test) (ppx_here :with-test) - (core - (and - :with-test - (>= v0.13.0))) - (core_bench :with-test) (crowbar (and :with-test (>= 0.2))) (sexplib0 :with-test))) diff --git a/http.opam b/http.opam index 8e84a766bd..0e9a5e8995 100644 --- a/http.opam +++ b/http.opam @@ -30,8 +30,6 @@ depends: [ "ppx_sexp_conv" {with-test} "ppx_compare" {with-test} "ppx_here" {with-test} - "core" {with-test & >= "v0.13.0"} - "core_bench" {with-test} "crowbar" {with-test & >= "0.2"} "sexplib0" {with-test} "odoc" {with-doc}