diff --git a/dune-project b/dune-project index 0c8c452c0..4d295cc44 100644 --- a/dune-project +++ b/dune-project @@ -24,7 +24,7 @@ (domain-local-await (>= 0.1.0)) (crowbar (and (>= 0.2) :with-test)) (mtime (>= 2.0.0)) - (mdx (and (>= 2.2.0) (< 2.4.0) :with-test)) + (mdx (and (>= 2.4.1) :with-test)) (dscheck (and (>= 0.1.0) :with-test)))) (package (name eio_linux) @@ -34,7 +34,7 @@ (depends (alcotest (and (>= 1.7.0) :with-test)) (eio (= :version)) - (mdx (and (>= 2.2.0) (< 2.4.0) :with-test)) + (mdx (and (>= 2.4.1) :with-test)) (logs (and (>= 0.7.0) :with-test)) (fmt (>= 0.8.9)) (cmdliner (and (>= 1.1.0) :with-test)) @@ -47,7 +47,7 @@ (depends (eio (= :version)) (iomux (>= 0.2)) - (mdx (and (>= 2.2.0) (< 2.4.0) :with-test)) + (mdx (and (>= 2.4.1) :with-test)) (fmt (>= 0.8.9)))) (package (name eio_windows) @@ -64,7 +64,7 @@ (synopsis "Effect-based direct-style IO mainloop for OCaml") (description "Selects an appropriate Eio backend for the current platform.") (depends - (mdx (and (>= 2.2.0) (< 2.4.0) :with-test)) + (mdx (and (>= 2.4.1) :with-test)) (kcas (and (>= 0.3.0) :with-test)) (yojson (and (>= 2.0.2) :with-test)) (eio_linux (and diff --git a/eio.opam b/eio.opam index 69d23d15c..78109b129 100644 --- a/eio.opam +++ b/eio.opam @@ -21,7 +21,7 @@ depends: [ "domain-local-await" {>= "0.1.0"} "crowbar" {>= "0.2" & with-test} "mtime" {>= "2.0.0"} - "mdx" {>= "2.2.0" & < "2.4.0" & with-test} + "mdx" {>= "2.4.1" & with-test} "dscheck" {>= "0.1.0" & with-test} "odoc" {with-doc} ] diff --git a/eio_linux.opam b/eio_linux.opam index 3295b820f..05b4f4f71 100644 --- a/eio_linux.opam +++ b/eio_linux.opam @@ -12,7 +12,7 @@ depends: [ "dune" {>= "3.9"} "alcotest" {>= "1.7.0" & with-test} "eio" {= version} - "mdx" {>= "2.2.0" & < "2.4.0" & with-test} + "mdx" {>= "2.4.1" & with-test} "logs" {>= "0.7.0" & with-test} "fmt" {>= "0.8.9"} "cmdliner" {>= "1.1.0" & with-test} diff --git a/eio_main.opam b/eio_main.opam index 04be9aef3..1d3cad8a4 100644 --- a/eio_main.opam +++ b/eio_main.opam @@ -10,7 +10,7 @@ doc: "https://ocaml-multicore.github.io/eio/" bug-reports: "https://github.com/ocaml-multicore/eio/issues" depends: [ "dune" {>= "3.9"} - "mdx" {>= "2.2.0" & < "2.4.0" & with-test} + "mdx" {>= "2.4.1" & with-test} "kcas" {>= "0.3.0" & with-test} "yojson" {>= "2.0.2" & with-test} "eio_linux" diff --git a/eio_posix.opam b/eio_posix.opam index e5c724697..aeae42e0f 100644 --- a/eio_posix.opam +++ b/eio_posix.opam @@ -12,7 +12,7 @@ depends: [ "dune" {>= "3.9"} "eio" {= version} "iomux" {>= "0.2"} - "mdx" {>= "2.2.0" & < "2.4.0" & with-test} + "mdx" {>= "2.4.1" & with-test} "fmt" {>= "0.8.9"} "odoc" {with-doc} ]