version: "0.0.0"
opam-version: "2.0"
name: "affect"
synopsis: "Streamlined and natural concurrency model for OCaml"
description: """\
Affect is a streamlined and natural concurrency model for OCaml.

It provides parallel asynchronous functions and first-class
synchronous actions to orchestrate them. The resulting [concurrency
model] has structured cooperative concurrency, structured cancellation
and structured effect handling.

Affect is distributed under the ISC license. The base library has no
dependencies. It optionally depends on the [`cmdliner`] library and
the OCaml `unix` library.

Homepage: <https://erratique.ch/software/affect/>

[`cmdliner`]: <http://erratique.ch/software/cmdliner>
[concurrency model]: https://erratique.ch/software/affect/doc/concurrency_model.html"""
maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>"
authors: "The affect programmers"
license: "ISC"
tags: [
  "effects" "concurrency" "parallelism" "fibers" "org:erratique" "cml" "unix"
]
homepage: "https://erratique.ch/software/affect"
doc: "https://erratique.ch/software/affect/doc"
bug-reports: "https://github.com/dbuenzli/affect/issues"
depends: [
  "ocaml" {>= "5.5.0"}
  "ocamlfind" {build}
  "ocamlbuild" {build}
  "topkg" {build & >= "1.1.0"}
]
depopts: ["cmdliner"]
conflicts: [
  "cmdliner" {< "2.0.0"}
]
build: [
  "ocaml"
  "pkg/pkg.ml"
  "build"
  "--dev-pkg"
  "%{dev}%"
  "--with-cmdliner"
  "%{cmdliner:installed}%"
]
dev-repo: "git+https://erratique.ch/repos/affect.git"
x-maintenance-intent: ["(latest)"]
