-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdune-project
More file actions
95 lines (83 loc) · 1.42 KB
/
dune-project
File metadata and controls
95 lines (83 loc) · 1.42 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
(lang dune 3.15)
(using mdx 0.2)
(name moonpool)
(version 0.11)
(generate_opam_files true)
(source
(github c-cube/moonpool))
(authors "Simon Cruanes")
(maintainers "Simon Cruanes")
(license MIT)
;(documentation https://url/to/documentation)
(package
(name moonpool)
(synopsis "Pools of threads supported by a pool of domains")
(depends
(ocaml
(>= 5.0))
dune
(either
(>= 1.0))
(trace
(and
(>= 0.11)
:with-test))
(trace-tef
(and
(>= 0.11)
:with-test))
(qcheck-core
(and
:with-test
(>= 0.21)))
(thread-local-storage
(and
(>= 0.2)
(< 0.3)))
(odoc :with-doc)
(hmap :with-test)
(picos
(and
(>= 0.5)
(< 0.7)))
(picos_std
(and
(>= 0.5)
(< 0.7)))
(mdx
(and
(>= 1.9.0)
:with-test)))
(depopts
hmap
(ambient-context (>= 0.2))
(trace
(>= 0.6)))
(tags
(thread pool domain futures fork-join)))
(package
(name moonpool-lwt)
(synopsis "Event loop for moonpool based on Lwt-engine (experimental)")
(allow_empty) ; on < 5.0
(depends
(moonpool
(= :version))
(ocaml
(>= 5.0))
(qcheck-core
(and
:with-test
(>= 0.21)))
(hmap :with-test)
(lwt (and (>= 5.0) (< 6.0)))
base-unix
(trace
(and
(>= 0.11)
:with-test))
(trace-tef
(and
(>= 0.11)
:with-test))
(odoc :with-doc)))
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project