forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[new release] gluten (6 packages) (0.5.1)
CHANGES: - gluten-lwt,gluten-eio: remove `Client.socket` ([anmonteiro/gluten#75](anmonteiro/gluten#75)) - gluten-eio: don't require `Eio_unix.stream_socket_ty`, allowing the use of mock sockets ([anmonteiro/gluten#74](anmonteiro/gluten#74))
- Loading branch information
1 parent
5979d63
commit 1f4cd1a
Showing
6 changed files
with
240 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
opam-version: "2.0" | ||
synopsis: "Async support for gluten" | ||
maintainer: ["Antonio Nuno Monteiro <[email protected]>"] | ||
authors: ["Antonio Nuno Monteiro <[email protected]>"] | ||
license: "BSD-3-clause" | ||
homepage: "https://github.com/anmonteiro/gluten" | ||
bug-reports: "https://github.com/anmonteiro/gluten/issues" | ||
depends: [ | ||
"dune" {>= "2.7"} | ||
"ocaml" {>= "4.08.0"} | ||
"gluten" {= version} | ||
"faraday-async" {>= "0.7.3"} | ||
"async" {>= "v0.15.0"} | ||
"core" {>= "v0.15.0"} | ||
"odoc" {with-doc} | ||
] | ||
depopts: ["async_ssl" "tls-async"] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/anmonteiro/gluten.git" | ||
url { | ||
src: | ||
"https://github.com/anmonteiro/gluten/releases/download/0.5.1/gluten-0.5.1.tbz" | ||
checksum: [ | ||
"sha256=55971b3050d1bfe4d54971b4e70518c5a59b4e70526b8dd1895c7d39eb0f9d96" | ||
"sha512=5a27e7a39f375b07910575839be75c62459ee55f35dd2b511db624b48f6ba86a6b1f8e749e6b3eeb4743e0890ba1952914e4df74a76dacb3062fadd9667e29cd" | ||
] | ||
} | ||
x-commit-hash: "a2439efe4f187b8c43dee577299470660503a73d" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
opam-version: "2.0" | ||
synopsis: "EIO runtime for gluten" | ||
maintainer: ["Antonio Nuno Monteiro <[email protected]>"] | ||
authors: ["Antonio Nuno Monteiro <[email protected]>"] | ||
license: "BSD-3-clause" | ||
homepage: "https://github.com/anmonteiro/gluten" | ||
bug-reports: "https://github.com/anmonteiro/gluten/issues" | ||
depends: [ | ||
"dune" {>= "2.7"} | ||
"ocaml" {>= "4.08.0"} | ||
"gluten" {= version} | ||
"eio" {>= "0.12"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/anmonteiro/gluten.git" | ||
url { | ||
src: | ||
"https://github.com/anmonteiro/gluten/releases/download/0.5.1/gluten-0.5.1.tbz" | ||
checksum: [ | ||
"sha256=55971b3050d1bfe4d54971b4e70518c5a59b4e70526b8dd1895c7d39eb0f9d96" | ||
"sha512=5a27e7a39f375b07910575839be75c62459ee55f35dd2b511db624b48f6ba86a6b1f8e749e6b3eeb4743e0890ba1952914e4df74a76dacb3062fadd9667e29cd" | ||
] | ||
} | ||
x-commit-hash: "a2439efe4f187b8c43dee577299470660503a73d" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
opam-version: "2.0" | ||
synopsis: "Lwt + Unix support for gluten" | ||
maintainer: ["Antonio Nuno Monteiro <[email protected]>"] | ||
authors: ["Antonio Nuno Monteiro <[email protected]>"] | ||
license: "BSD-3-clause" | ||
homepage: "https://github.com/anmonteiro/gluten" | ||
bug-reports: "https://github.com/anmonteiro/gluten/issues" | ||
depends: [ | ||
"dune" {>= "2.7"} | ||
"ocaml" {>= "4.08.0"} | ||
"gluten-lwt" {= version} | ||
"faraday-lwt-unix" {>= "0.7.3"} | ||
"odoc" {with-doc} | ||
] | ||
depopts: [ | ||
"lwt_ssl" {>= "1.2.0"} | ||
"tls-lwt" | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/anmonteiro/gluten.git" | ||
url { | ||
src: | ||
"https://github.com/anmonteiro/gluten/releases/download/0.5.1/gluten-0.5.1.tbz" | ||
checksum: [ | ||
"sha256=55971b3050d1bfe4d54971b4e70518c5a59b4e70526b8dd1895c7d39eb0f9d96" | ||
"sha512=5a27e7a39f375b07910575839be75c62459ee55f35dd2b511db624b48f6ba86a6b1f8e749e6b3eeb4743e0890ba1952914e4df74a76dacb3062fadd9667e29cd" | ||
] | ||
} | ||
x-commit-hash: "a2439efe4f187b8c43dee577299470660503a73d" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
opam-version: "2.0" | ||
synopsis: "Lwt-specific runtime for gluten" | ||
maintainer: ["Antonio Nuno Monteiro <[email protected]>"] | ||
authors: ["Antonio Nuno Monteiro <[email protected]>"] | ||
license: "BSD-3-clause" | ||
homepage: "https://github.com/anmonteiro/gluten" | ||
bug-reports: "https://github.com/anmonteiro/gluten/issues" | ||
depends: [ | ||
"dune" {>= "2.7"} | ||
"ocaml" {>= "4.08.0"} | ||
"gluten" {= version} | ||
"lwt" {>= "5.1.1"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/anmonteiro/gluten.git" | ||
url { | ||
src: | ||
"https://github.com/anmonteiro/gluten/releases/download/0.5.1/gluten-0.5.1.tbz" | ||
checksum: [ | ||
"sha256=55971b3050d1bfe4d54971b4e70518c5a59b4e70526b8dd1895c7d39eb0f9d96" | ||
"sha512=5a27e7a39f375b07910575839be75c62459ee55f35dd2b511db624b48f6ba86a6b1f8e749e6b3eeb4743e0890ba1952914e4df74a76dacb3062fadd9667e29cd" | ||
] | ||
} | ||
x-commit-hash: "a2439efe4f187b8c43dee577299470660503a73d" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
opam-version: "2.0" | ||
synopsis: "Mirage support for gluten" | ||
maintainer: ["Antonio Nuno Monteiro <[email protected]>"] | ||
authors: ["Antonio Nuno Monteiro <[email protected]>"] | ||
license: "BSD-3-clause" | ||
homepage: "https://github.com/anmonteiro/gluten" | ||
bug-reports: "https://github.com/anmonteiro/gluten/issues" | ||
depends: [ | ||
"dune" {>= "2.7"} | ||
"ocaml" {>= "4.08.0"} | ||
"gluten-lwt" {= version} | ||
"faraday-lwt" {>= "0.7.3"} | ||
"conduit-mirage" {>= "2.0.2"} | ||
"mirage-flow" {>= "2.0.0"} | ||
"cstruct" {>= "6.0.0"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/anmonteiro/gluten.git" | ||
url { | ||
src: | ||
"https://github.com/anmonteiro/gluten/releases/download/0.5.1/gluten-0.5.1.tbz" | ||
checksum: [ | ||
"sha256=55971b3050d1bfe4d54971b4e70518c5a59b4e70526b8dd1895c7d39eb0f9d96" | ||
"sha512=5a27e7a39f375b07910575839be75c62459ee55f35dd2b511db624b48f6ba86a6b1f8e749e6b3eeb4743e0890ba1952914e4df74a76dacb3062fadd9667e29cd" | ||
] | ||
} | ||
x-commit-hash: "a2439efe4f187b8c43dee577299470660503a73d" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
opam-version: "2.0" | ||
synopsis: "A reusable runtime library for network protocols" | ||
description: | ||
"gluten implements platform specific runtime code for driving network libraries based on state machines, such as http/af, h2 and websocketaf." | ||
maintainer: ["Antonio Nuno Monteiro <[email protected]>"] | ||
authors: ["Antonio Nuno Monteiro <[email protected]>"] | ||
license: "BSD-3-clause" | ||
homepage: "https://github.com/anmonteiro/gluten" | ||
bug-reports: "https://github.com/anmonteiro/gluten/issues" | ||
depends: [ | ||
"dune" {>= "2.7"} | ||
"ocaml" {>= "4.08.0"} | ||
"bigstringaf" {>= "0.4.0"} | ||
"faraday" {>= "0.7.3"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/anmonteiro/gluten.git" | ||
url { | ||
src: | ||
"https://github.com/anmonteiro/gluten/releases/download/0.5.1/gluten-0.5.1.tbz" | ||
checksum: [ | ||
"sha256=55971b3050d1bfe4d54971b4e70518c5a59b4e70526b8dd1895c7d39eb0f9d96" | ||
"sha512=5a27e7a39f375b07910575839be75c62459ee55f35dd2b511db624b48f6ba86a6b1f8e749e6b3eeb4743e0890ba1952914e4df74a76dacb3062fadd9667e29cd" | ||
] | ||
} | ||
x-commit-hash: "a2439efe4f187b8c43dee577299470660503a73d" |