this repo has no description
1opam-version: "2.0"
2maintainer: "essdotteedot <essdotteedot@gmail.com>"
3authors: [ "essdotteedot <essdotteedot@gmail.com>" ]
4license: "MIT"
5homepage: "https://github.com/essdotteedot/distributed"
6dev-repo: "git+https://github.com/essdotteedot/distributed.git"
7bug-reports: "https://github.com/essdotteedot/distributed/issues"
8
9build: [
10 ["jbuilder" "subst" "-p" name] {dev}
11 ["jbuilder" "build" "-p" name "-j" jobs]
12 ["jbuilder" "build" "@runtest-uwt" "-p" name "-j" jobs] {with-test}
13]
14depends: [
15 "ocaml" {>= "4.02.3"}
16 "jbuilder" {>= "1.0+beta16"}
17 "distributed" {>= "0.5.0"}
18 "logs"
19 "uwt"
20]
21synopsis: "A library to provide a uwt based implementation of Distributed."
22description: """
23Primitive for spawning processes (in the Erlang sense) either remotely or locally, monitoring/unmonitoring spawned processes, sending,
24receiving, broadcasting messages to those processes. Unlike Erlang, the messages that are sent between processes are typed."""
25url {
26 src: "https://github.com/essdotteedot/distributed/archive/v0.5.0.tar.gz"
27 checksum: [
28 "sha256=e60a275e18c8fdc6ac6005af42f56d76d6d39222c12ab60617417925f3793625"
29 "md5=158919cc350bfb668e12ec8367b8f7c7"
30 ]
31}