Compare commits

...

2 commits

Author SHA1 Message Date
Simon Cruanes
01efbd5b22
prepare for 0.1
Some checks failed
github pages / Deploy doc (push) Has been cancelled
Build and Test / build (push) Has been cancelled
Build and Test / format (push) Has been cancelled
2025-05-09 12:42:39 -04:00
Simon Cruanes
57cecc55fc
mark nanoev posix as enabled only on unix systems 2025-05-09 12:42:39 -04:00
6 changed files with 8 additions and 0 deletions

3
CHANGES.md Normal file
View file

@ -0,0 +1,3 @@
# 0.1
initial release, with poll and select backends.

View file

@ -1,5 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.1"
synopsis: "Use nanoev from picos"
maintainer: ["Simon Cruanes"]
authors: ["Simon Cruanes"]

View file

@ -1,5 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.1"
synopsis: "Use mtime+iomux (posix compliant) as a backend for nanoev"
maintainer: ["Simon Cruanes"]
authors: ["Simon Cruanes"]

View file

@ -1,5 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.1"
synopsis: "Tiny event loop abstraction"
maintainer: ["Simon Cruanes"]
authors: ["Simon Cruanes"]

View file

@ -1,5 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.1"
synopsis: "Use nanoev as a basis for tiny_httpd"
maintainer: ["Simon Cruanes"]
authors: ["Simon Cruanes"]

View file

@ -1,6 +1,7 @@
(library
(name nanoev_posix)
(public_name nanoev-posix)
(enabled_if (= %{os_type} "Unix"))
(synopsis "posix backend (poll/ppoll+mtime)")
(private_modules heap)
(libraries threads nanoev unix iomux mtime mtime.clock.os))