mirror of
https://github.com/c-cube/nanoev.git
synced 2025-12-07 11:45:45 -05:00
format
This commit is contained in:
parent
413346afae
commit
fe57c8082e
3 changed files with 7 additions and 7 deletions
|
|
@ -17,10 +17,10 @@
|
|||
|
||||
(package
|
||||
(name nanoev)
|
||||
(synopsis "Tiny event loop around `select`")
|
||||
(synopsis "Tiny event loop abstraction")
|
||||
(depends ocaml dune base-unix)
|
||||
(depopts
|
||||
(trace (>= 0.7))
|
||||
(trace (>= 0.7))
|
||||
(picos
|
||||
(and (>= 0.5) (< 0.7))))
|
||||
(tags
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -2,7 +2,8 @@
|
|||
(name nanoev)
|
||||
(public_name nanoev)
|
||||
(synopsis "Nano ev loop")
|
||||
(libraries unix
|
||||
(libraries
|
||||
unix
|
||||
(select
|
||||
trace_.ml
|
||||
from
|
||||
|
|
|
|||
|
|
@ -2,6 +2,4 @@
|
|||
(name nanoev_unix)
|
||||
(public_name nanoev.unix)
|
||||
(synopsis "Unix/select backend")
|
||||
(libraries
|
||||
nanoev
|
||||
unix))
|
||||
(libraries nanoev unix))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue