this repo has no description
0
fork

Configure Feed

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

[new release] shuttle_http (2 packages) (0.12.0)

CHANGES:

* Adapt to Janestreet's 0.17 series.

+88
+48
packages/shuttle_http/shuttle_http.0.12.0/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_http" 10 + bug-reports: "https://github.com/anuragsoni/shuttle_http/issues" 11 + depends: [ 12 + "dune" {>= "3.1"} 13 + "async" {>= "v0.17.0"} 14 + "async_log" {>= "v0.17.0"} 15 + "async_ssl" {>= "v0.17.0"} 16 + "core" {>= "v0.17.0"} 17 + "jane_rope" {>= "v0.17.0"} 18 + "ocaml" {>= "5.1.0"} 19 + "ppx_jane" {>= "v0.17.0"} 20 + "re2" {>= "v0.17.0"} 21 + "core_unix" {with-test} 22 + "odoc" {with-doc} 23 + ] 24 + dev-repo: "git+https://github.com/anuragsoni/shuttle_http.git" 25 + build: [ 26 + ["dune" "subst"] {dev} 27 + [ 28 + "dune" 29 + "build" 30 + "-p" 31 + name 32 + "-j" 33 + jobs 34 + "@install" 35 + "@runtest" {with-test & os != "macos"} 36 + "@doc" {with-doc} 37 + ] 38 + ] 39 + available: [ arch = "x86_64" | arch = "arm64" ] 40 + url { 41 + src: 42 + "https://github.com/anuragsoni/shuttle_http/releases/download/0.12.0/shuttle_http-0.12.0.tbz" 43 + checksum: [ 44 + "sha256=073651dfcbe88a29856ae9568583ecece3df659aa74470ca92671e388ccc9351" 45 + "sha512=78a8f4517238a7332cf5211f250aa031a3f64fcdf3617c23f072183bbbd9535e295cdef9551d24e4451ef674e0ce6845296960f66ca9c28b81430f4cf0dda563" 46 + ] 47 + } 48 + x-commit-hash: "b7f2b7b1f7f018d58ae5b898293043dd77314b43"
+40
packages/shuttle_websocket/shuttle_websocket.0.12.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Websocket support for HTTP/1.1 servers using Async" 3 + description: 4 + "Shuttle_websocket is a companion library for shuttle_http that provides a HTTP service that performs websocket negotiation for HTTP/1.1 servers." 5 + maintainer: ["Anurag Soni <anurag@sonianurag.com>"] 6 + authors: ["Anurag Soni"] 7 + license: "MIT" 8 + tags: ["http-server" "websocket"] 9 + homepage: "https://github.com/anuragsoni/shuttle_http" 10 + bug-reports: "https://github.com/anuragsoni/shuttle_http/issues" 11 + depends: [ 12 + "dune" {>= "3.1"} 13 + "shuttle_http" {= version} 14 + "async_websocket" 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_http.git" 32 + url { 33 + src: 34 + "https://github.com/anuragsoni/shuttle_http/releases/download/0.12.0/shuttle_http-0.12.0.tbz" 35 + checksum: [ 36 + "sha256=073651dfcbe88a29856ae9568583ecece3df659aa74470ca92671e388ccc9351" 37 + "sha512=78a8f4517238a7332cf5211f250aa031a3f64fcdf3617c23f072183bbbd9535e295cdef9551d24e4451ef674e0ce6845296960f66ca9c28b81430f4cf0dda563" 38 + ] 39 + } 40 + x-commit-hash: "b7f2b7b1f7f018d58ae5b898293043dd77314b43"