forked from riot-ml/riot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
80 lines (70 loc) · 2.1 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
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
(lang dune 3.11)
(using mdx 0.4)
(name riot)
(generate_opam_files true)
(cram enable)
(source
(github leostera/riot))
(authors "Leandro Ostera <leandro@abstractmachines.dev>")
(maintainers "Leandro Ostera <leandro@abstractmachines.dev>")
(license MIT)
(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 (= :version))
(castore (and :with-test (>= "0.0.2")))
(config (>= "0.0.1"))
(gluon (= :version))
(io (= :version))
(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"))
(randomconv (>= "0.1.3"))
(telemetry (>= "0.0.1"))
(tls (>="0.17.3"))
(uri (>= "4.4.0"))
(x509 (and :with-test (>= "0.16.5")))
dune)
(tags
(multicore erlang actor "message-passing" processes)))
(package
(name io)
(depends
(cstruct (>= "6.2.0"))
(ocaml (>= "5.1"))
dune)
(tags (multicore io streams read write)))
(package
(name gluon)
(depends
(io (= :version))
(bytestring (= :version))
(libc (>= "0.0.1"))
(config (>= "0.0.1"))
(ocaml (>= "5.1"))
(uri (>= "4.4.0"))
dune)
(tags (async io tcp udp iocp multicore)))
(package
(name bytestring)
(synopsis "Efficient, immutable, pattern-matchable, UTF friendly byte strings")
(description "The Bytestring package implements efficient, immutable, pattern-matchable, UTF friendly byte strings backed up by a rope implementation with mutable iterator instances and a transient interface in the spirit of Clojure transient data.")
(authors
"Leandro Ostera <leandro@abstractmachines.dev>"
"Felipe Oliveira Carvalho <felipekde@gmail.com>")
(depends
(io (= :version))
(ocaml (>= "5.1.1"))
(ppxlib (>= 0.31.0))
(qcheck (and :with-test (>= "0.21.3")))
(sedlex (>= "3.2"))
(spices (>= "0.0.2"))
dune
))