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