This commit is contained in:
Simon Cruanes 2025-02-15 16:58:28 -05:00
parent 413346afae
commit fe57c8082e
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
3 changed files with 7 additions and 7 deletions

View file

@ -17,10 +17,10 @@
(package (package
(name nanoev) (name nanoev)
(synopsis "Tiny event loop around `select`") (synopsis "Tiny event loop abstraction")
(depends ocaml dune base-unix) (depends ocaml dune base-unix)
(depopts (depopts
(trace (>= 0.7)) (trace (>= 0.7))
(picos (picos
(and (>= 0.5) (< 0.7)))) (and (>= 0.5) (< 0.7))))
(tags (tags
@ -34,6 +34,7 @@
dune dune
nanoev nanoev
picos picos
(tiny_httpd (>= 0.17)))) (tiny_httpd (>= 0.17)))
(tags (nanoev http)))
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/reference/dune-project/index.html ; See the complete stanza docs at https://dune.readthedocs.io/en/stable/reference/dune-project/index.html

View file

@ -2,7 +2,8 @@
(name nanoev) (name nanoev)
(public_name nanoev) (public_name nanoev)
(synopsis "Nano ev loop") (synopsis "Nano ev loop")
(libraries unix (libraries
unix
(select (select
trace_.ml trace_.ml
from from

View file

@ -2,6 +2,4 @@
(name nanoev_unix) (name nanoev_unix)
(public_name nanoev.unix) (public_name nanoev.unix)
(synopsis "Unix/select backend") (synopsis "Unix/select backend")
(libraries (libraries nanoev unix))
nanoev
unix))