chore: bounds on eio

This commit is contained in:
Simon Cruanes 2025-05-01 15:44:51 -04:00
parent 711312141a
commit 169c19b679
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
2 changed files with 2 additions and 2 deletions

View file

@ -45,6 +45,6 @@
(synopsis "Use eio for tiny_httpd") (synopsis "Use eio for tiny_httpd")
(depends (depends
(tiny_httpd (= :version)) (tiny_httpd (= :version))
eio (eio (and (>= 1.0) (< 2.0)))
(logs :with-test) (logs :with-test)
(odoc :with-doc))) (odoc :with-doc)))

View file

@ -10,7 +10,7 @@ bug-reports: "https://github.com/c-cube/tiny_httpd/issues"
depends: [ depends: [
"dune" {>= "3.2"} "dune" {>= "3.2"}
"tiny_httpd" {= version} "tiny_httpd" {= version}
"eio" "eio" {>= "1.0" & < "2.0"}
"logs" {with-test} "logs" {with-test}
"odoc" {with-doc} "odoc" {with-doc}
] ]