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" 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] 17dev-repo: "git+https://github.com/ocsigen/lwt.git" 18 19depends: [ 20 "cppo" {build & >= "1.1.0"} 21 "dune" {>= "1.8.0"} 22 "dune-configurator" 23 "mmap" {>= "1.1.0"} # mmap is needed as long as Lwt supports OCaml < 4.06.0. 24 "ocaml" {>= "4.02.0" & < "4.12"} 25 ("ocaml" {>= "4.08.0"} | "ocaml-syntax-shims") 26 "ocplib-endian" 27 "result" # result is needed as long as Lwt supports OCaml 4.02. 28 "seq" # seq is needed as long as Lwt supports OCaml < 4.07.0. 29 30 "bisect_ppx" {dev & >= "2.0.0"} 31 "ocamlfind" {dev & >= "1.7.3-1"} 32] 33 34depopts: [ 35 "base-threads" 36 "base-unix" 37 "conf-libev" 38] 39 40conflicts: [ 41 "ocaml-variants" {= "4.02.1+BER"} 42] 43 44build: [ 45 ["dune" "exec" "-p" name "src/unix/config/discover.exe" "--" "--save" 46 "--use-libev" "%{conf-libev:installed}%"] 47 ["dune" "build" "-p" name "-j" jobs] 48] 49 50description: "A promise is a value that may become determined in the future. 51 52Lwt provides typed, composable promises. Promises that are resolved by I/O are 53resolved by Lwt in parallel. 54 55Meanwhile, OCaml code, including code creating and waiting on promises, runs in 56a single thread by default. This reduces the need for locks or other 57synchronization primitives. Code can be run in parallel on an opt-in basis." 58 59url { 60 src: "https://github.com/ocsigen/lwt/archive/5.3.0.tar.gz" 61 checksum: [ 62 "sha256=38ce928378a07b685f4606b60cbe37c26ef93ccb3e808c218e7d34ece9e659ad" 63 "md5=85e9c7e9095b4e14d0698e3ece72f378" 64 ] 65}