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,7 +17,7 @@
(package
(name nanoev)
(synopsis "Tiny event loop around `select`")
(synopsis "Tiny event loop abstraction")
(depends ocaml dune base-unix)
(depopts
(trace (>= 0.7))
@ -34,6 +34,7 @@
dune
nanoev
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

View file

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

View file

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