this repo has no description
1opam-version: "2.0" 2 3synopsis: "Promises and event-driven I/O" 4license: "MIT" 5homepage: "https://github.com/ocsigen/lwt" 6doc: "https://ocsigen.org/lwt" 7bug-reports: "https://github.com/ocsigen/lwt/issues" 8 9authors: [ 10 "Jérôme Vouillon" 11 "Jérémie Dimino" 12] 13maintainer: [ 14 "Raphaël Proust <code@bnwr.net>" 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" & "os" != "win32"} # mmap is needed as long as Lwt supports OCaml < 4.06.0. 24 "ocaml" {(>= "4.02.0" & "os" != "win32" | >= "4.06.0") & < "5.0"} 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 # Until https://github.com/aantron/bisect_ppx/pull/327. 31 # "bisect_ppx" {dev & >= "2.0.0"} 32 "ocamlfind" {dev & >= "1.7.3-1"} 33] 34 35depopts: [ 36 "base-threads" 37 "base-unix" 38 "conf-libev" 39] 40 41conflicts: [ 42 "ocaml-variants" {= "4.02.1+BER"} 43] 44 45build: [ 46 ["dune" "exec" "-p" name "src/unix/config/discover.exe" "--" "--save" 47 "--use-libev" "%{conf-libev:installed}%"] 48 ["dune" "build" "-p" name "-j" jobs] 49] 50 51description: "A promise is a value that may become determined in the future. 52 53Lwt provides typed, composable promises. Promises that are resolved by I/O are 54resolved by Lwt in parallel. 55 56Meanwhile, OCaml code, including code creating and waiting on promises, runs in 57a single thread by default. This reduces the need for locks or other 58synchronization primitives. Code can be run in parallel on an opt-in basis." 59url { 60 src: "https://github.com/ocsigen/lwt/archive/refs/tags/5.5.0.tar.gz" 61 checksum: [ 62 "md5=94272fac89c5bf21a89c102b8a8f35a5" 63 "sha512=8951b94555e930634375816d71815b9d85daad6ffb7dab24864661504d11be26575ab0b237196c54693efa372a9b69cdc1d5068a20a250dc0bbb4a3c03c5fda1" 64 ] 65}