-
Notifications
You must be signed in to change notification settings - Fork 5
/
dune-project
49 lines (42 loc) · 886 Bytes
/
dune-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
(lang dune 3.0)
(name lev)
(generate_opam_files true)
(license ISC)
(maintainers "Rudi Grinberg <[email protected]>")
(authors
"Rudi Grinberg <[email protected]>"
"Ulugbek Abdullaev <[email protected]>")
(source (github rgrinberg/lev))
(implicit_transitive_deps false)
(package
(synopsis "Bindings to libev")
(description "Low level bindings to libev")
(name lev)
(depends
(ppx_expect :with-test)
base-unix))
(package
(synopsis "Fiber + Lev")
(description "High level API based on dune's fibers")
(name lev-fiber)
(depends
(ppx_expect :with-test)
(ocaml (>= 4.14.0))
lev
dyn
fiber
stdune
base-threads
base-unix))
(package
(synopsis "Fiber + Lev + Csexp")
(description "Client/Servers that use csexp for transport")
(name lev-fiber-csexp)
(depends
(ppx_expect :with-test)
lev-fiber
stdune
dyn
csexp
(fiber (>= 3.1.1))
base-unix))