this repo has no description
1opam-version: "2.0"
2synopsis: "Promises and event-driven I/O"
3description: """\
4A promise is a value that may become determined in the future.
5
6Lwt provides typed, composable promises. Promises that are resolved by I/O are
7resolved by Lwt in parallel.
8
9Meanwhile, OCaml code, including code creating and waiting on promises, runs in
10a single thread by default. This reduces the need for locks or other
11synchronization primitives. Code can be run in parallel on an opt-in basis."""
12maintainer: [
13 "Raphaël Proust <code@bnwr.net>" "Anton Bachin <antonbachin@yahoo.com>"
14]
15authors: ["Jérôme Vouillon" "Jérémie Dimino"]
16license: "MIT"
17homepage: "https://github.com/ocsigen/lwt"
18doc: "https://ocsigen.org/lwt"
19bug-reports: "https://github.com/ocsigen/lwt/issues"
20depends: [
21 "cppo" {build & >= "1.1.0"}
22 "dune" {>= "1.8.0"}
23 "dune-configurator"
24 "mmap" {>= "1.1.0"}
25 "ocaml" {>= "4.02.0" & < "5.0"}
26 ("ocaml" {>= "4.08.0"} | "ocaml-syntax-shims")
27 "ocplib-endian"
28 "result"
29 "seq"
30 "ocamlfind" {dev & >= "1.7.3-1"}
31]
32depopts: ["base-threads" "base-unix" "conf-libev"]
33conflicts: [
34 "ocaml-variants" {= "4.02.1+BER"}
35]
36build: [
37 [
38 "dune"
39 "exec"
40 "-p"
41 name
42 "src/unix/config/discover.exe"
43 "--"
44 "--save"
45 "--use-libev"
46 "%{conf-libev:installed}%"
47 ]
48 ["dune" "build" "-p" name "-j" jobs]
49]
50dev-repo: "git+https://github.com/ocsigen/lwt.git"
51url {
52 src: "https://github.com/ocsigen/lwt/archive/5.4.0.zip"
53 checksum: [
54 "md5=fc4721bdb1a01225b96e3a2debde95fa"
55 "sha512=e427f08223b77f9af696c9e6f90ff68e27e02e446910ef90d3da542e7b00bf23dd191ac77c1871288faa2289f8d28fc2f44efc3d3fe9165fe1c7a6be88ee49ff"
56 ]
57}