this repo has no description
0
fork

Configure Feed

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

Merge pull request #23700 from anuragsoni/release-shuttle-0.9.4

[new release] shuttle_ssl, shuttle_http and shuttle (0.9.4)

authored by

Raphaël Proust and committed by
GitHub
1e3c4664 89f703c5

+127
+42
packages/shuttle/shuttle.0.9.4/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Reasonably performant non-blocking channels for async" 3 + maintainer: ["Anurag Soni <anurag@sonianurag.com>"] 4 + authors: ["Anurag Soni"] 5 + license: "MIT" 6 + tags: ["async" "reader" "writer"] 7 + homepage: "https://github.com/anuragsoni/shuttle" 8 + bug-reports: "https://github.com/anuragsoni/shuttle/issues" 9 + depends: [ 10 + "dune" {>= "2.8"} 11 + "ocaml" {>= "4.11.0"} 12 + "async" {>= "v0.15.0"} 13 + "core" {>= "v0.15.0"} 14 + "core_unix" {>= "v0.15.0"} 15 + "ppx_jane" {>= "v0.15.0"} 16 + "odoc" {with-doc} 17 + ] 18 + build: [ 19 + ["dune" "subst"] {dev} 20 + [ 21 + "dune" 22 + "build" 23 + "-p" 24 + name 25 + "-j" 26 + jobs 27 + "@install" 28 + "@runtest" {with-test} 29 + "@doc" {with-doc} 30 + ] 31 + ] 32 + dev-repo: "git+https://github.com/anuragsoni/shuttle.git" 33 + available: [ arch != "s390x" ] 34 + url { 35 + src: 36 + "https://github.com/anuragsoni/shuttle/releases/download/0.9.4/shuttle-0.9.4.tbz" 37 + checksum: [ 38 + "sha256=d868723ab7d9b9c7239c30ce0692bc02c8f6ac3f3ff62ef31a0b8a014de45995" 39 + "sha512=f831285927eae3da9bb6e233e296e0d9193a940faf81850a279d50a1639ad806717054f973e60436d9afa503ae5a800ddd6a5c4b3eaca8457b20ac5d810534f3" 40 + ] 41 + } 42 + x-commit-hash: "86e713055877724ceb1ffacf5401df894e517547"
+44
packages/shuttle_http/shuttle_http.0.9.4/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Async library for HTTP/1.1 servers and clients" 3 + description: 4 + "Shuttle_http is a low level library for implementing HTTP/1.1 web services and clients in OCaml." 5 + maintainer: ["Anurag Soni <anurag@sonianurag.com>"] 6 + authors: ["Anurag Soni"] 7 + license: "MIT" 8 + tags: ["http-server" "http-client" "http" "http1.1" "async"] 9 + homepage: "https://github.com/anuragsoni/shuttle" 10 + bug-reports: "https://github.com/anuragsoni/shuttle/issues" 11 + depends: [ 12 + "dune" {>= "2.8"} 13 + "shuttle" {= version} 14 + "shuttle_ssl" {= version} 15 + "re2" {>= "v0.15.0"} 16 + "ppx_jane" {with-test} 17 + "core_unix" {with-test} 18 + "odoc" {with-doc} 19 + ] 20 + dev-repo: "git+https://github.com/anuragsoni/shuttle.git" 21 + build: [ 22 + ["dune" "subst"] {dev} 23 + [ 24 + "dune" 25 + "build" 26 + "-p" 27 + name 28 + "-j" 29 + jobs 30 + "@install" 31 + "@runtest" {with-test & os != "macos"} 32 + "@doc" {with-doc} 33 + ] 34 + ] 35 + available: [ arch = "x86_64" | arch = "arm64" ] 36 + url { 37 + src: 38 + "https://github.com/anuragsoni/shuttle/releases/download/0.9.4/shuttle-0.9.4.tbz" 39 + checksum: [ 40 + "sha256=d868723ab7d9b9c7239c30ce0692bc02c8f6ac3f3ff62ef31a0b8a014de45995" 41 + "sha512=f831285927eae3da9bb6e233e296e0d9193a940faf81850a279d50a1639ad806717054f973e60436d9afa503ae5a800ddd6a5c4b3eaca8457b20ac5d810534f3" 42 + ] 43 + } 44 + x-commit-hash: "86e713055877724ceb1ffacf5401df894e517547"
+41
packages/shuttle_ssl/shuttle_ssl.0.9.4/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Async_ssl support for shuttle" 3 + maintainer: ["Anurag Soni <anurag@sonianurag.com>"] 4 + authors: ["Anurag Soni"] 5 + license: "MIT" 6 + tags: ["async" "reader" "writer" "ssl"] 7 + homepage: "https://github.com/anuragsoni/shuttle" 8 + bug-reports: "https://github.com/anuragsoni/shuttle/issues" 9 + depends: [ 10 + "dune" {>= "2.8"} 11 + "ocaml" {>= "4.11.0"} 12 + "shuttle" {= version} 13 + "ppx_jane" {>= "v0.15.0"} 14 + "async_ssl" {>= "v0.15.0"} 15 + "odoc" {with-doc} 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/anuragsoni/shuttle.git" 32 + available: [ arch != "s390x" ] 33 + url { 34 + src: 35 + "https://github.com/anuragsoni/shuttle/releases/download/0.9.4/shuttle-0.9.4.tbz" 36 + checksum: [ 37 + "sha256=d868723ab7d9b9c7239c30ce0692bc02c8f6ac3f3ff62ef31a0b8a014de45995" 38 + "sha512=f831285927eae3da9bb6e233e296e0d9193a940faf81850a279d50a1639ad806717054f973e60436d9afa503ae5a800ddd6a5c4b3eaca8457b20ac5d810534f3" 39 + ] 40 + } 41 + x-commit-hash: "86e713055877724ceb1ffacf5401df894e517547"