this repo has no description
0
fork

Configure Feed

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

Merge pull request #26877 from raphael-proust/opam-publish-lwt.5.9.0

2 packages from ocsigen/lwt at 5.9.0

authored by

Marcello Seri and committed by
GitHub
bf952fff 03ecf717

+101
+63
packages/lwt/lwt.5.9.0/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.9.0.tar.gz" 59 + checksum: [ 60 + "md5=763b9201c891f8c20ee02dec0af23355" 61 + "sha512=35574743df40170a8d1676254952c060090421a40d5f8ad37a6691f4f8bb0e28fca61f5efff1050edc4f8a3ffa2f06a1e23d0c084c89bfc105c1235e249bbc75" 62 + ] 63 + }
+38
packages/lwt_retry/lwt_retry.5.9.0/opam
··· 1 + # This file is generated by dune, edit dune-project instead 2 + opam-version: "2.0" 3 + synopsis: "Utilities for retrying Lwt computations" 4 + maintainer: [ 5 + "Raphaël Proust <code@bnwr.net>" "Shon Feder <shon.feder@gmail.com>" 6 + ] 7 + authors: ["Shon Feder"] 8 + license: "MIT" 9 + homepage: "https://github.com/ocsigen/lwt" 10 + doc: "https://ocsigen.org/lwt" 11 + bug-reports: "https://github.com/ocsigen/lwt/issues" 12 + depends: [ 13 + "dune" {>= "2.7"} 14 + "ocaml" {>= "4.08"} 15 + "lwt" {>= "5.3.0"} 16 + ] 17 + build: [ 18 + ["dune" "subst"] {dev} 19 + [ 20 + "dune" 21 + "build" 22 + "-p" 23 + name 24 + "-j" 25 + jobs 26 + "@install" 27 + "@runtest" {with-test} 28 + "@doc" {with-doc} 29 + ] 30 + ] 31 + dev-repo: "git+https://github.com/ocsigen/lwt.git" 32 + url { 33 + src: "https://github.com/ocsigen/lwt/archive/refs/tags/5.9.0.tar.gz" 34 + checksum: [ 35 + "md5=763b9201c891f8c20ee02dec0af23355" 36 + "sha512=35574743df40170a8d1676254952c060090421a40d5f8ad37a6691f4f8bb0e28fca61f5efff1050edc4f8a3ffa2f06a1e23d0c084c89bfc105c1235e249bbc75" 37 + ] 38 + }