this repo has no description
1opam-version: "2.0"
2
3synopsis: "Promises and event-driven I/O"
4
5license: "MIT"
6homepage: "https://github.com/ocsigen/lwt"
7doc: "https://ocsigen.org/lwt/manual/"
8bug-reports: "https://github.com/ocsigen/lwt/issues"
9
10authors: [
11 "Jérôme Vouillon"
12 "Jérémie Dimino"
13]
14maintainer: [
15 "Anton Bachin <antonbachin@yahoo.com>"
16 "Mauricio Fernandez <mfp@acm.org>"
17 "Simon Cruanes <simon.cruanes.2007@m4x.org>"
18]
19dev-repo: "git+https://github.com/ocsigen/lwt.git"
20
21depends: [
22 "cppo" {build & >= "1.1.0"}
23 "dune"
24 "mmap"
25 "ocaml" {>= "4.02.0" & < "4.12"}
26 "result" # result is needed as long as Lwt supports OCaml 4.02.
27 "seq" # seq is needed as long as Lwt supports OCaml < 4.07.0.
28
29 "bisect_ppx" {dev & >= "1.3.0"}
30 "ocamlfind" {dev & >= "1.7.3-1"}
31]
32depopts: [
33 "base-threads"
34 "base-unix"
35 "conf-libev"
36]
37
38conflicts: [
39 "ocaml-variants" {= "4.02.1+BER"}
40]
41
42build: [
43 ["dune" "build" "-p" name "-j" jobs]
44]
45
46description: "A promise is a value that may become determined in the future.
47
48Lwt provides typed, composable promises. Promises that are resolved by I/O are
49resolved by Lwt in parallel.
50
51Meanwhile, OCaml code, including code creating and waiting on promises, runs in
52a single thread by default. This reduces the need for locks or other
53synchronization primitives. Code can be run in parallel on an opt-in basis."
54
55url {
56 src: "https://github.com/ocsigen/lwt/archive/4.2.0.tar.gz"
57 checksum: [
58 "sha256=6d679ec2f33897675066d4c58c1d57d84045727263c16279b23c3a9ce13fb3f0"
59 "md5=2ce7827948adc611319f9449e4519070"
60 ]
61}