this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #27204 from raphael-proust/opam-publish-lwt.5.8.1

2 packages from ocsigen/lwt at 5.8.1

authored by

Shon Feder and committed by
GitHub
152dc7d1 b910ec12

+104
+63
packages/lwt/lwt.5.8.1/opam
··· 1 + # This file is generated by dune, edit dune-project instead 2 + opam-version: "2.0" 3 + synopsis: "Promises and event-driven I/O" 4 + description: """ 5 + A promise is a value that may become determined in the future. 6 + 7 + Lwt provides typed, composable promises. Promises that are resolved by I/O are 8 + resolved by Lwt in parallel. 9 + 10 + Meanwhile, OCaml code, including code creating and waiting on promises, runs in 11 + a single thread by default. This reduces the need for locks or other 12 + synchronization primitives. Code can be run in parallel on an opt-in basis. 13 + """ 14 + maintainer: [ 15 + "Raphaël Proust <code@bnwr.net>" "Anton Bachin <antonbachin@yahoo.com>" 16 + ] 17 + authors: ["Jérôme Vouillon" "Jérémie Dimino"] 18 + license: "MIT" 19 + homepage: "https://github.com/ocsigen/lwt" 20 + doc: "https://ocsigen.org/lwt" 21 + bug-reports: "https://github.com/ocsigen/lwt/issues" 22 + depends: [ 23 + "dune" {>= "2.7"} 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 + ] 31 + depopts: ["base-threads" "base-unix" "conf-libev"] 32 + dev-repo: "git+https://github.com/ocsigen/lwt.git" 33 + build: [ 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 + ] 57 + url { 58 + src: "https://github.com/ocsigen/lwt/archive/refs/tags/5.8.1.tar.gz" 59 + checksum: [ 60 + "md5=d0f824f75ce5297975aec75366fed36c" 61 + "sha512=c43fff2e9e808dc49ddf09caf7040e512ba36aebe2c600d524095ced11c196c3ac619953a11cb3e3a9f7c6c99e798d43bf179d5f790ab258fb9f746fae4c1125" 62 + ] 63 + }
+41
packages/lwt_ppx/lwt_ppx.5.8.1/opam
··· 1 + # This file is generated by dune, edit dune-project instead 2 + opam-version: "2.0" 3 + synopsis: 4 + "PPX syntax for Lwt, providing something similar to async/await from JavaScript" 5 + maintainer: [ 6 + "Raphaël Proust <code@bnwr.net>" "Anton Bachin <antonbachin@yahoo.com>" 7 + ] 8 + authors: ["Jérôme Vouillon" "Jérémie Dimino"] 9 + license: "MIT" 10 + homepage: "https://github.com/ocsigen/lwt" 11 + doc: "https://ocsigen.org/lwt" 12 + bug-reports: "https://github.com/ocsigen/lwt/issues" 13 + depends: [ 14 + "dune" {>= "2.7"} 15 + "ocaml" {>= "4.08"} 16 + "ppxlib" {>= "0.16.0" & < "0.36"} 17 + "lwt" 18 + "odoc" {with-doc} 19 + ] 20 + build: [ 21 + ["dune" "subst"] {dev} 22 + [ 23 + "dune" 24 + "build" 25 + "-p" 26 + name 27 + "-j" 28 + jobs 29 + "@install" 30 + "@runtest" {with-test} 31 + "@doc" {with-doc} 32 + ] 33 + ] 34 + dev-repo: "git+https://github.com/ocsigen/lwt.git" 35 + url { 36 + src: "https://github.com/ocsigen/lwt/archive/refs/tags/5.8.1.tar.gz" 37 + checksum: [ 38 + "md5=d0f824f75ce5297975aec75366fed36c" 39 + "sha512=c43fff2e9e808dc49ddf09caf7040e512ba36aebe2c600d524095ced11c196c3ac619953a11cb3e3a9f7c6c99e798d43bf179d5f790ab258fb9f746fae4c1125" 40 + ] 41 + }