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