this repo has no description
1opam-version: "2.0"
2synopsis: "An actor-model multi-core scheduler for OCaml 5"
3description:
4 "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"
5maintainer: ["Leandro Ostera <leandro@abstractmachines.dev>"]
6authors: ["Leandro Ostera <leandro@abstractmachines.dev>"]
7license: "MIT"
8tags: ["topics" "multicore" "erlang" "actor" "message-passing" "processes"]
9homepage: "https://github.com/leostera/riot"
10bug-reports: "https://github.com/leostera/riot/issues"
11depends: [
12 "ocaml" {>= "5.1" & < "5.3"}
13 "dune" {>= "3.10"}
14 "ptime" {>= "1.1.0"}
15 "iomux" {>= "0.3"}
16 "bigstringaf" {>= "0.9.1"}
17 "uri" {>= "4.4.0"}
18 "telemetry" {>= "0.0.1"}
19 "odoc" {with-doc & >= "2.2.2"}
20]
21build: [
22 ["dune" "subst"] {dev}
23 [
24 "dune"
25 "build"
26 "-p"
27 name
28 "-j"
29 jobs
30 "@install"
31 "@runtest" {with-test}
32 "@doc" {with-doc}
33 ]
34]
35dev-repo: "git+https://github.com/leostera/riot.git"
36url {
37 src:
38 "https://github.com/leostera/riot/releases/download/0.0.4/riot-0.0.4.tbz"
39 checksum: [
40 "sha256=bd196369f74bbc42f23d262030d5fa04c03f5f00c46bf944f0dcbc193745976f"
41 "sha512=f1ca69e05b57e83a1bd173efe51b745d331355a83381e6068743a7626e45dcf515cdd8947180051bddfe9f5727c2732aa0f01a093b04cf33fa4081d32f24fd65"
42 ]
43}
44x-commit-hash: "6c862bf5376f9ea465faec6a7ba6bebf1e6d791d"