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.3/riot-0.0.3.tbz"
39 checksum: [
40 "sha256=6201ce27997ec1c4b4509782c6be2fa2bf102b804b11dcbf9ebdb49a123c19c3"
41 "sha512=ad70a67601a892700e461efe57484d109b1d08e30d15464ad8611e71dd568c934d3f948afd645e096e4f97ad1935aaeaf5d9b6d9d59c52a82eeb5c4995421646"
42 ]
43}
44x-commit-hash: "8f6c100541ca46a7a42ef0ff0d5ec2e6ff6afc6e"