go back to eio.unix

This commit is contained in:
Simon Cruanes 2026-02-15 16:08:56 -05:00
parent 97c4e4dc08
commit 32421a26bc
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
3 changed files with 3 additions and 1 deletions

View file

@ -46,5 +46,6 @@
(depends (depends
(tiny_httpd (= :version)) (tiny_httpd (= :version))
(eio (and (>= 1.0) (< 2.0))) (eio (and (>= 1.0) (< 2.0)))
base-unix
(logs :with-test) (logs :with-test)
(odoc :with-doc))) (odoc :with-doc)))

View file

@ -3,4 +3,4 @@
(public_name tiny_httpd_eio) (public_name tiny_httpd_eio)
(synopsis "An EIO-based backend for Tiny_httpd") (synopsis "An EIO-based backend for Tiny_httpd")
(flags :standard -safe-string -warn-error -a+8) (flags :standard -safe-string -warn-error -a+8)
(libraries tiny_httpd eio eio_posix)) (libraries tiny_httpd eio eio.unix))

View file

@ -11,6 +11,7 @@ depends: [
"dune" {>= "3.2"} "dune" {>= "3.2"}
"tiny_httpd" {= version} "tiny_httpd" {= version}
"eio" {>= "1.0" & < "2.0"} "eio" {>= "1.0" & < "2.0"}
"base-unix"
"logs" {with-test} "logs" {with-test}
"odoc" {with-doc} "odoc" {with-doc}
] ]