mirror of
https://github.com/c-cube/nanoev.git
synced 2025-12-05 19:00:35 -05:00
28 lines
501 B
Text
28 lines
501 B
Text
(lang dune 2.7)
|
|
|
|
(name nanoev)
|
|
(generate_opam_files true)
|
|
|
|
(source
|
|
(github c-cube/nanoev))
|
|
|
|
(authors "Simon Cruanes")
|
|
|
|
(maintainers "Simon Cruanes")
|
|
|
|
(license MIT)
|
|
|
|
;(documentation https://url/to/documentation)
|
|
|
|
(package
|
|
(name nanoev)
|
|
(synopsis "Tiny event loop around `select`")
|
|
(depends ocaml dune base-unix)
|
|
(depopts
|
|
(picos
|
|
(and (>= 0.5) (< 0.7))))
|
|
(tags
|
|
(unix select async)))
|
|
|
|
|
|
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/reference/dune-project/index.html
|