From bee4e868aa0c31ab5701b72c0577ae3b626a91c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Zimmermann?= Date: Mon, 28 Oct 2024 14:22:19 +0100 Subject: [PATCH] Release the version constraint on ssl. The underlying bug was fixed and the constraints is not compatible with OCaml 5.2. --- bot-components.opam | 2 +- dune-project | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bot-components.opam b/bot-components.opam index 502a57ea..bbf68e21 100644 --- a/bot-components.opam +++ b/bot-components.opam @@ -13,7 +13,7 @@ depends: [ "cohttp-lwt" {>= "2.5.4"} "cohttp-lwt-unix" {>= "2.5.4"} "lwt_ssl" {>= "1.1.3"} - "ssl" {= "0.5.9"} + "ssl" {>= "0.5.9"} "stdio" {>= "v0.14.0"} "ohex" {>= "0.2.0"} "mirage-crypto" {>= "1.0.0"} diff --git a/dune-project b/dune-project index 17a1beb6..77200794 100644 --- a/dune-project +++ b/dune-project @@ -39,7 +39,7 @@ (cohttp-lwt (>= 2.5.4)) (cohttp-lwt-unix (>= 2.5.4)) (lwt_ssl (>= 1.1.3)) - (ssl (= 0.5.9)) + (ssl (>= 0.5.9)) (stdio (>= v0.14.0)) (ohex (>= 0.2.0)) (mirage-crypto (>= 1.0.0))