forked from riot-ml/riot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathriot.opam
36 lines (36 loc) · 1.04 KB
/
riot.opam
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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
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"
maintainer: ["Leandro Ostera <leandro@abstractmachines.dev>"]
authors: ["Leandro Ostera <leandro@abstractmachines.dev>"]
license: "MIT"
tags: ["topics" "multicore" "erlang" "actor" "message-passing" "processes"]
homepage: "https://github.com/leostera/riot"
bug-reports: "https://github.com/leostera/riot/issues"
depends: [
"ocaml" {>= "5.1"}
"dune" {>= "3.10"}
"ptime" {>= "1.1.0"}
"iomux" {>= "0.3"}
"bigstringaf" {>= "0.9.1"}
"uri" {>= "4.4.0"}
"telemetry" {>= "0.0.1"}
"odoc" {with-doc & >= "2.2.2"}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/leostera/riot.git"