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
|
(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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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))
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue