this repo has no description
0
fork

Configure Feed

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

[new release] httpun-ws (6 packages) (0.2.0)

CHANGES:

- fix: update computation for payload length offset
([anmonteiro/httpun-ws#63](https://github.com/anmonteiro/httpun-ws/pull/63))
- don't select digestif implementation
([anmonteiro/httpun-ws#67](https://github.com/anmonteiro/httpun-ws/pull/67))
- fix: garbled data after committing frame header
([anmonteiro/httpun-ws#68](https://github.com/anmonteiro/httpun-ws/pull/68))
- fix: mask all client frames
([anmonteiro/httpun-ws#69](https://github.com/anmonteiro/httpun-ws/pull/69))
- feat: yield the reader if reads not scheduled
([anmonteiro/httpun-ws#70](https://github.com/anmonteiro/httpun-ws/pull/70))
- unify input handler EOF and websocket error handler
([anmonteiro/httpun-ws#70](https://github.com/anmonteiro/httpun-ws/pull/70),
[anmonteiro/httpun-ws#72](https://github.com/anmonteiro/httpun-ws/pull/72))
- client: fix infinite loop when client handshake disconnects
([anmonteiro/httpun-ws#73](https://github.com/anmonteiro/httpun-ws/pull/73))

+258
+43
packages/httpun-ws-async/httpun-ws-async.0.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Mirage support for httpun" 3 + maintainer: ["Antonio Nuno Monteiro <anmonteiro@gmail.com>"] 4 + authors: [ 5 + "Spiros Eliopoulos <spiros@inhabitedtype.com>" 6 + "Antonio Nuno Monteiro <anmonteiro@gmail.com>" 7 + ] 8 + license: "BSD-3-clause" 9 + homepage: "https://github.com/anmonteiro/httpun-ws" 10 + bug-reports: "https://github.com/anmonteiro/httpun-ws/issues" 11 + depends: [ 12 + "dune" {>= "3.0"} 13 + "ocaml" {>= "4.08"} 14 + "httpun-ws" 15 + "async" {>= "v0.15.0"} 16 + "gluten-async" 17 + "digestif" 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/anmonteiro/httpun-ws.git" 35 + url { 36 + src: 37 + "https://github.com/anmonteiro/httpun-ws/releases/download/0.2.0/httpun-ws-0.2.0.tbz" 38 + checksum: [ 39 + "sha256=eae0cd2e0eb5b4fc9cb6d862b7116a6f0fc8503b2e439046bf0e6f4cb2c297fd" 40 + "sha512=71ad0b694dd968c74e658bb41f7d0b871d45605602b9e1a16549e3f0bfe32bca0f6f5978592ac211ec6619664ec68d8ca4b02fa17610bd7a772e212b75e99645" 41 + ] 42 + } 43 + x-commit-hash: "b25537968d81cc64d17728bdf7cd9b0781e2d1e7"
+42
packages/httpun-ws-eio/httpun-ws-eio.0.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Eio support for httpun" 3 + maintainer: ["Antonio Nuno Monteiro <anmonteiro@gmail.com>"] 4 + authors: [ 5 + "Spiros Eliopoulos <spiros@inhabitedtype.com>" 6 + "Antonio Nuno Monteiro <anmonteiro@gmail.com>" 7 + ] 8 + license: "BSD-3-clause" 9 + homepage: "https://github.com/anmonteiro/httpun-ws" 10 + bug-reports: "https://github.com/anmonteiro/httpun-ws/issues" 11 + depends: [ 12 + "dune" {>= "3.0"} 13 + "ocaml" {>= "4.08"} 14 + "httpun-ws" 15 + "digestif" 16 + "gluten-eio" {>= "0.2.1"} 17 + "odoc" {with-doc} 18 + ] 19 + build: [ 20 + ["dune" "subst"] {dev} 21 + [ 22 + "dune" 23 + "build" 24 + "-p" 25 + name 26 + "-j" 27 + jobs 28 + "@install" 29 + "@runtest" {with-test} 30 + "@doc" {with-doc} 31 + ] 32 + ] 33 + dev-repo: "git+https://github.com/anmonteiro/httpun-ws.git" 34 + url { 35 + src: 36 + "https://github.com/anmonteiro/httpun-ws/releases/download/0.2.0/httpun-ws-0.2.0.tbz" 37 + checksum: [ 38 + "sha256=eae0cd2e0eb5b4fc9cb6d862b7116a6f0fc8503b2e439046bf0e6f4cb2c297fd" 39 + "sha512=71ad0b694dd968c74e658bb41f7d0b871d45605602b9e1a16549e3f0bfe32bca0f6f5978592ac211ec6619664ec68d8ca4b02fa17610bd7a772e212b75e99645" 40 + ] 41 + } 42 + x-commit-hash: "b25537968d81cc64d17728bdf7cd9b0781e2d1e7"
+41
packages/httpun-ws-lwt-unix/httpun-ws-lwt-unix.0.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Lwt + unix support for httpun-ws" 3 + maintainer: ["Antonio Nuno Monteiro <anmonteiro@gmail.com>"] 4 + authors: [ 5 + "Spiros Eliopoulos <spiros@inhabitedtype.com>" 6 + "Antonio Nuno Monteiro <anmonteiro@gmail.com>" 7 + ] 8 + license: "BSD-3-clause" 9 + homepage: "https://github.com/anmonteiro/httpun-ws" 10 + bug-reports: "https://github.com/anmonteiro/httpun-ws/issues" 11 + depends: [ 12 + "dune" {>= "3.0"} 13 + "ocaml" {>= "4.08"} 14 + "httpun-ws-lwt" 15 + "gluten-lwt-unix" {>= "0.2.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/anmonteiro/httpun-ws.git" 33 + url { 34 + src: 35 + "https://github.com/anmonteiro/httpun-ws/releases/download/0.2.0/httpun-ws-0.2.0.tbz" 36 + checksum: [ 37 + "sha256=eae0cd2e0eb5b4fc9cb6d862b7116a6f0fc8503b2e439046bf0e6f4cb2c297fd" 38 + "sha512=71ad0b694dd968c74e658bb41f7d0b871d45605602b9e1a16549e3f0bfe32bca0f6f5978592ac211ec6619664ec68d8ca4b02fa17610bd7a772e212b75e99645" 39 + ] 40 + } 41 + x-commit-hash: "b25537968d81cc64d17728bdf7cd9b0781e2d1e7"
+43
packages/httpun-ws-lwt/httpun-ws-lwt.0.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Lwt support for httpun" 3 + maintainer: ["Antonio Nuno Monteiro <anmonteiro@gmail.com>"] 4 + authors: [ 5 + "Spiros Eliopoulos <spiros@inhabitedtype.com>" 6 + "Antonio Nuno Monteiro <anmonteiro@gmail.com>" 7 + ] 8 + license: "BSD-3-clause" 9 + homepage: "https://github.com/anmonteiro/httpun-ws" 10 + bug-reports: "https://github.com/anmonteiro/httpun-ws/issues" 11 + depends: [ 12 + "dune" {>= "3.0"} 13 + "ocaml" {>= "4.08"} 14 + "httpun-ws" 15 + "lwt" 16 + "digestif" 17 + "gluten-lwt" {>= "0.2.0"} 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/anmonteiro/httpun-ws.git" 35 + url { 36 + src: 37 + "https://github.com/anmonteiro/httpun-ws/releases/download/0.2.0/httpun-ws-0.2.0.tbz" 38 + checksum: [ 39 + "sha256=eae0cd2e0eb5b4fc9cb6d862b7116a6f0fc8503b2e439046bf0e6f4cb2c297fd" 40 + "sha512=71ad0b694dd968c74e658bb41f7d0b871d45605602b9e1a16549e3f0bfe32bca0f6f5978592ac211ec6619664ec68d8ca4b02fa17610bd7a772e212b75e99645" 41 + ] 42 + } 43 + x-commit-hash: "b25537968d81cc64d17728bdf7cd9b0781e2d1e7"
+43
packages/httpun-ws-mirage/httpun-ws-mirage.0.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Mirage support for httpun" 3 + maintainer: ["Antonio Nuno Monteiro <anmonteiro@gmail.com>"] 4 + authors: [ 5 + "Spiros Eliopoulos <spiros@inhabitedtype.com>" 6 + "Antonio Nuno Monteiro <anmonteiro@gmail.com>" 7 + ] 8 + license: "BSD-3-clause" 9 + homepage: "https://github.com/anmonteiro/httpun-ws" 10 + bug-reports: "https://github.com/anmonteiro/httpun-ws/issues" 11 + depends: [ 12 + "dune" {>= "3.0"} 13 + "ocaml" {>= "4.08"} 14 + "httpun-ws-lwt" 15 + "gluten-mirage" {>= "0.2.0"} 16 + "mirage-flow" {>= "2.0.0"} 17 + "cstruct" 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/anmonteiro/httpun-ws.git" 35 + url { 36 + src: 37 + "https://github.com/anmonteiro/httpun-ws/releases/download/0.2.0/httpun-ws-0.2.0.tbz" 38 + checksum: [ 39 + "sha256=eae0cd2e0eb5b4fc9cb6d862b7116a6f0fc8503b2e439046bf0e6f4cb2c297fd" 40 + "sha512=71ad0b694dd968c74e658bb41f7d0b871d45605602b9e1a16549e3f0bfe32bca0f6f5978592ac211ec6619664ec68d8ca4b02fa17610bd7a772e212b75e99645" 41 + ] 42 + } 43 + x-commit-hash: "b25537968d81cc64d17728bdf7cd9b0781e2d1e7"
+46
packages/httpun-ws/httpun-ws.0.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Websocket implementation for httpun" 3 + maintainer: ["Antonio Nuno Monteiro <anmonteiro@gmail.com>"] 4 + authors: [ 5 + "Spiros Eliopoulos <spiros@inhabitedtype.com>" 6 + "Antonio Nuno Monteiro <anmonteiro@gmail.com>" 7 + ] 8 + license: "BSD-3-clause" 9 + homepage: "https://github.com/anmonteiro/httpun-ws" 10 + bug-reports: "https://github.com/anmonteiro/httpun-ws/issues" 11 + depends: [ 12 + "dune" {>= "3.0"} 13 + "ocaml" {>= "4.08"} 14 + "base64" {>= "3.0.0"} 15 + "bigstringaf" 16 + "angstrom" {>= "0.14.0"} 17 + "faraday" {>= "0.8.0"} 18 + "gluten" {>= "0.2.0"} 19 + "httpun" 20 + "alcotest" {with-test} 21 + "odoc" {with-doc} 22 + ] 23 + build: [ 24 + ["dune" "subst"] {dev} 25 + [ 26 + "dune" 27 + "build" 28 + "-p" 29 + name 30 + "-j" 31 + jobs 32 + "@install" 33 + "@runtest" {with-test} 34 + "@doc" {with-doc} 35 + ] 36 + ] 37 + dev-repo: "git+https://github.com/anmonteiro/httpun-ws.git" 38 + url { 39 + src: 40 + "https://github.com/anmonteiro/httpun-ws/releases/download/0.2.0/httpun-ws-0.2.0.tbz" 41 + checksum: [ 42 + "sha256=eae0cd2e0eb5b4fc9cb6d862b7116a6f0fc8503b2e439046bf0e6f4cb2c297fd" 43 + "sha512=71ad0b694dd968c74e658bb41f7d0b871d45605602b9e1a16549e3f0bfe32bca0f6f5978592ac211ec6619664ec68d8ca4b02fa17610bd7a772e212b75e99645" 44 + ] 45 + } 46 + x-commit-hash: "b25537968d81cc64d17728bdf7cd9b0781e2d1e7"