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.5/riot-0.0.5.tbz"
39 checksum: [
40 "sha256=01b7b82ccc656b12b7315960d9df17eb4682b8f1af68e9fee33171fee1f9cf88"
41 "sha512=d8831d8a75fe43a7e8d16d2c0bb7d27f6d975133e17c5dd89ef7e575039c59d27c1ab74fbadcca81ddfbc0c74d1e46c35baba35ef825b36ac6c4e49d7a41d0c2"
42 ]
43}
44x-commit-hash: "98855655048893413233afff6e7c47df2702041a"