mirror of
https://github.com/c-cube/nanoev.git
synced 2025-12-06 03:05:32 -05:00
Compare commits
1 commit
43df0f68d6
...
870093e93a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
870093e93a |
8 changed files with 13 additions and 33 deletions
1
.github/workflows/main.yml
vendored
1
.github/workflows/main.yml
vendored
|
|
@ -16,7 +16,6 @@ jobs:
|
||||||
os:
|
os:
|
||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
ocaml-compiler:
|
ocaml-compiler:
|
||||||
- '4.14'
|
|
||||||
- '5.0'
|
- '5.0'
|
||||||
- '5.3'
|
- '5.3'
|
||||||
|
|
||||||
|
|
|
||||||
33
dune-project
33
dune-project
|
|
@ -1,18 +1,11 @@
|
||||||
(lang dune 2.7)
|
(lang dune 2.7)
|
||||||
|
|
||||||
(name nanoev)
|
(name nanoev)
|
||||||
|
|
||||||
(generate_opam_files true)
|
(generate_opam_files true)
|
||||||
|
|
||||||
(source
|
(source
|
||||||
(github c-cube/nanoev))
|
(github c-cube/nanoev))
|
||||||
|
|
||||||
(authors "Simon Cruanes")
|
(authors "Simon Cruanes")
|
||||||
|
|
||||||
(maintainers "Simon Cruanes")
|
(maintainers "Simon Cruanes")
|
||||||
|
|
||||||
(version 0.1)
|
(version 0.1)
|
||||||
|
|
||||||
(license MIT)
|
(license MIT)
|
||||||
|
|
||||||
;(documentation https://url/to/documentation)
|
;(documentation https://url/to/documentation)
|
||||||
|
|
@ -20,11 +13,7 @@
|
||||||
(package
|
(package
|
||||||
(name nanoev)
|
(name nanoev)
|
||||||
(synopsis "Tiny event loop abstraction")
|
(synopsis "Tiny event loop abstraction")
|
||||||
(depends
|
(depends ocaml dune base-unix)
|
||||||
(ocaml
|
|
||||||
(>= 4.12))
|
|
||||||
dune
|
|
||||||
base-unix)
|
|
||||||
(depopts
|
(depopts
|
||||||
(trace
|
(trace
|
||||||
(>= 0.7)))
|
(>= 0.7)))
|
||||||
|
|
@ -35,8 +24,7 @@
|
||||||
(name nanoev-picos)
|
(name nanoev-picos)
|
||||||
(synopsis "Use nanoev from picos")
|
(synopsis "Use nanoev from picos")
|
||||||
(depends
|
(depends
|
||||||
(ocaml
|
ocaml
|
||||||
(>= 4.14))
|
|
||||||
dune
|
dune
|
||||||
base-unix
|
base-unix
|
||||||
(nanoev
|
(nanoev
|
||||||
|
|
@ -58,15 +46,12 @@
|
||||||
(name nanoev-posix)
|
(name nanoev-posix)
|
||||||
(synopsis "Use mtime+iomux (posix compliant) as a backend for nanoev")
|
(synopsis "Use mtime+iomux (posix compliant) as a backend for nanoev")
|
||||||
(depends
|
(depends
|
||||||
(ocaml
|
ocaml
|
||||||
(>= 4.12))
|
|
||||||
dune
|
dune
|
||||||
base-unix
|
base-unix
|
||||||
(iomux (>= 0.3))
|
iomux
|
||||||
(nanoev
|
(nanoev (= :version))
|
||||||
(= :version))
|
(nanoev-picos (= :version))
|
||||||
(nanoev-picos
|
|
||||||
(= :version))
|
|
||||||
(mtime
|
(mtime
|
||||||
(>= 2.0))
|
(>= 2.0))
|
||||||
(moonpool :with-test)
|
(moonpool :with-test)
|
||||||
|
|
@ -81,10 +66,8 @@
|
||||||
(depends
|
(depends
|
||||||
ocaml
|
ocaml
|
||||||
dune
|
dune
|
||||||
(nanoev
|
(nanoev (= :version))
|
||||||
(= :version))
|
(nanoev-picos (= :version))
|
||||||
(nanoev-picos
|
|
||||||
(= :version))
|
|
||||||
picos
|
picos
|
||||||
picos_std
|
picos_std
|
||||||
(tiny_httpd
|
(tiny_httpd
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ tags: ["unix" "select" "async"]
|
||||||
homepage: "https://github.com/c-cube/nanoev"
|
homepage: "https://github.com/c-cube/nanoev"
|
||||||
bug-reports: "https://github.com/c-cube/nanoev/issues"
|
bug-reports: "https://github.com/c-cube/nanoev/issues"
|
||||||
depends: [
|
depends: [
|
||||||
"ocaml" {>= "4.14"}
|
"ocaml"
|
||||||
"dune" {>= "2.7"}
|
"dune" {>= "2.7"}
|
||||||
"base-unix"
|
"base-unix"
|
||||||
"nanoev" {= version}
|
"nanoev" {= version}
|
||||||
|
|
|
||||||
|
|
@ -9,10 +9,10 @@ tags: ["unix" "select" "async" "iomux" "nanoev"]
|
||||||
homepage: "https://github.com/c-cube/nanoev"
|
homepage: "https://github.com/c-cube/nanoev"
|
||||||
bug-reports: "https://github.com/c-cube/nanoev/issues"
|
bug-reports: "https://github.com/c-cube/nanoev/issues"
|
||||||
depends: [
|
depends: [
|
||||||
"ocaml" {>= "4.12"}
|
"ocaml"
|
||||||
"dune" {>= "2.7"}
|
"dune" {>= "2.7"}
|
||||||
"base-unix"
|
"base-unix"
|
||||||
"iomux" {>= "0.3"}
|
"iomux"
|
||||||
"nanoev" {= version}
|
"nanoev" {= version}
|
||||||
"nanoev-picos" {= version}
|
"nanoev-picos" {= version}
|
||||||
"mtime" {>= "2.0"}
|
"mtime" {>= "2.0"}
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ tags: ["unix" "select" "async"]
|
||||||
homepage: "https://github.com/c-cube/nanoev"
|
homepage: "https://github.com/c-cube/nanoev"
|
||||||
bug-reports: "https://github.com/c-cube/nanoev/issues"
|
bug-reports: "https://github.com/c-cube/nanoev/issues"
|
||||||
depends: [
|
depends: [
|
||||||
"ocaml" {>= "4.12"}
|
"ocaml"
|
||||||
"dune" {>= "2.7"}
|
"dune" {>= "2.7"}
|
||||||
"base-unix"
|
"base-unix"
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
|
|
|
||||||
|
|
@ -3,4 +3,4 @@
|
||||||
(public_name nanoev.unix)
|
(public_name nanoev.unix)
|
||||||
(synopsis "Unix/select backend")
|
(synopsis "Unix/select backend")
|
||||||
(private_modules heap)
|
(private_modules heap)
|
||||||
(libraries nanoev unix threads.posix))
|
(libraries nanoev unix))
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
(tests
|
(tests
|
||||||
(names t1)
|
(names t1)
|
||||||
(package nanoev-posix)
|
|
||||||
(libraries nanoev nanoev-posix threads))
|
(libraries nanoev nanoev-posix threads))
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
(tests
|
(tests
|
||||||
(names t1)
|
(names t1)
|
||||||
(package nanoev)
|
|
||||||
(libraries nanoev nanoev.unix threads))
|
(libraries nanoev nanoev.unix threads))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue