-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
dune-project
49 lines (40 loc) · 1.14 KB
/
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.11)
(using mdx 0.4)
(name riot)
(generate_opam_files true)
(cram enable)
(source
(github riot-ml/riot))
(authors "Leandro Ostera <[email protected]>")
(maintainers "Leandro Ostera <[email protected]>")
(license MIT)
(pin
(url "git+https://github.com/riot-ml/rio.git")
(package (name rio)))
(pin
(url "git+https://github.com/riot-ml/bytestring.git")
(package (name bytestring)))
(package
(name riot)
(synopsis "An actor-model multi-core scheduler for OCaml 5")
(description
"Riot is an actor-model multi-core scheduler for OCaml 5. It brings Erlang-style concurrency to the language, where lighweight process communicate via message passing")
(depends
bytestring
(castore (and :with-test (>= "0.0.2")))
(config (>= "0.0.1"))
(gluon (>= "0.0.1"))
(mdx (and :with-test (>= "2.3.1")))
(mirage-crypto (>= "0.11.2"))
(mirage-crypto-rng (>= "0.11.2"))
(mtime (>= "2.0.0"))
(ocaml (>= "5.1"))
(odoc (and :with-doc (>= "2.2.2")))
(ptime (>= "1.1.0"))
rio
(telemetry (>= "0.0.1"))
(tls (>= "1.0.0"))
(uri (>= "4.4.0"))
dune)
(tags
(multicore erlang actor "message-passing" processes)))