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] conduit-lwt-tls, conduit-mirage, conduit-tls, conduit-l…
…wt, conduit-async-tls, conduit-async, conduit, conduit-async-ssl and conduit-lwt-ssl (3.0.0) CHANGES: * **breaking change** - New version of `conduit`. Most of the new API has a description on the pull-request [mirage/ocaml-conduit#311](mirage/ocaml-conduit#311). Documentation is updated as well with a small HOW-TO (available [here](https://mirage.github.io/ocaml-conduit/conduit/howto.html)) which describes the new API.
- Loading branch information
Showing
19 changed files
with
371 additions
and
10 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,38 @@ | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
authors: [ | ||
"Anil Madhavapeddy" | ||
"Thomas Leonard" | ||
"Thomas Gazagnaire" | ||
"Rudi Grinberg" | ||
] | ||
license: "ISC" | ||
tags: "org:mirage" | ||
homepage: "https://github.com/mirage/ocaml-conduit" | ||
bug-reports: "https://github.com/mirage/ocaml-conduit/issues" | ||
dev-repo: "git+https://github.com/mirage/ocaml-conduit.git" | ||
synopsis: "A network connection establishment library using Async and OpenSSL" | ||
|
||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j1"] {with-test} | ||
] | ||
|
||
depends: [ | ||
"ocaml" {>= "4.07.0"} | ||
"dune" {>= "2.0.0"} | ||
"core" | ||
"conduit-async" {= version} | ||
"async" {>= "v0.12.0"} | ||
"async_ssl" | ||
] | ||
x-commit-hash: "f5ec040e47bf878c17c247a8e18bed7a0d60d2af" | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-conduit/releases/download/v3.0.0/conduit-v3.0.0.tbz" | ||
checksum: [ | ||
"sha256=ac41681b50107c96bcae92fc93be4faa3d4d2b6c2095e79b963c142a0f055fd8" | ||
"sha512=b427c2f37908b662f98360410dcaa18b31554024ddf2480abd9195acc83f427df44428642d2b028faa15c99f4a538d15fcd89d9b8dca399ee684864633963738" | ||
] | ||
} |
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" | ||
maintainer: "[email protected]" | ||
authors: [ | ||
"Anil Madhavapeddy" | ||
"Thomas Leonard" | ||
"Thomas Gazagnaire" | ||
"Rudi Grinberg" | ||
] | ||
license: "ISC" | ||
tags: "org:mirage" | ||
homepage: "https://github.com/mirage/ocaml-conduit" | ||
bug-reports: "https://github.com/mirage/ocaml-conduit/issues" | ||
dev-repo: "git+https://github.com/mirage/ocaml-conduit.git" | ||
synopsis: "A network connection establishment library using Async and ocaml-tls" | ||
|
||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j1"] {with-test} | ||
] | ||
|
||
depends: [ | ||
"ocaml" {>= "4.07.0"} | ||
"dune" {>= "2.0.0"} | ||
"core" | ||
"conduit-async" {= version} | ||
"async" {>= "v0.12.0"} | ||
"conduit-tls" {= version} | ||
] | ||
x-commit-hash: "f5ec040e47bf878c17c247a8e18bed7a0d60d2af" | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-conduit/releases/download/v3.0.0/conduit-v3.0.0.tbz" | ||
checksum: [ | ||
"sha256=ac41681b50107c96bcae92fc93be4faa3d4d2b6c2095e79b963c142a0f055fd8" | ||
"sha512=b427c2f37908b662f98360410dcaa18b31554024ddf2480abd9195acc83f427df44428642d2b028faa15c99f4a538d15fcd89d9b8dca399ee684864633963738" | ||
] | ||
} |
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
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
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
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
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
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,46 @@ | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
authors: [ | ||
"Anil Madhavapeddy" | ||
"Thomas Leonard" | ||
"Thomas Gazagnaire" | ||
"Rudi Grinberg" | ||
"Romain Calascibetta" | ||
] | ||
license: "ISC" | ||
tags: "org:mirage" | ||
homepage: "https://github.com/mirage/ocaml-conduit" | ||
bug-reports: "https://github.com/mirage/ocaml-conduit/issues" | ||
dev-repo: "git+https://github.com/mirage/ocaml-conduit.git" | ||
synopsis: "A portable network connection establishment library using Async" | ||
|
||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j1"] {with-test} | ||
] | ||
|
||
depends: [ | ||
"ocaml" {>= "4.07.0"} | ||
"dune" {>= "2.0.0"} | ||
"core" | ||
"conduit" {= version} | ||
"async" {>= "v0.12.0"} | ||
"cstruct" | ||
"base-bigarray" {with-test} | ||
"bigstringaf" {with-test} | ||
"ke" {with-test} | ||
"fmt" {with-test} | ||
"rresult" {with-test} | ||
"conduit-async-tls" {with-test & post} | ||
"conduit-async-ssl" {with-test & post} | ||
] | ||
x-commit-hash: "f5ec040e47bf878c17c247a8e18bed7a0d60d2af" | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-conduit/releases/download/v3.0.0/conduit-v3.0.0.tbz" | ||
checksum: [ | ||
"sha256=ac41681b50107c96bcae92fc93be4faa3d4d2b6c2095e79b963c142a0f055fd8" | ||
"sha512=b427c2f37908b662f98360410dcaa18b31554024ddf2480abd9195acc83f427df44428642d2b028faa15c99f4a538d15fcd89d9b8dca399ee684864633963738" | ||
] | ||
} |
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,37 @@ | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
authors:[ | ||
"Anil Madhavapeddy" | ||
"Thomas Leonard" | ||
"Thomas Gazagnaire" | ||
"Rudi Grinberg" | ||
"Romain Calascibetta" | ||
] | ||
license: "ISC" | ||
tags: "org:mirage" | ||
homepage: "https://github.com/mirage/ocaml-conduit" | ||
bug-reports: "https://github.com/mirage/ocaml-conduit/issues" | ||
dev-repo: "git+https://github.com/mirage/ocaml-conduit.git" | ||
synopsis: "A portable network connection establishment library using Lwt and OpenSSL" | ||
|
||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j1"] {with-test} | ||
] | ||
|
||
depends: [ | ||
"ocaml" {>= "4.07.0"} | ||
"dune" {>= "2.0.0"} | ||
"conduit-lwt" {= version} | ||
"lwt_ssl" | ||
] | ||
x-commit-hash: "f5ec040e47bf878c17c247a8e18bed7a0d60d2af" | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-conduit/releases/download/v3.0.0/conduit-v3.0.0.tbz" | ||
checksum: [ | ||
"sha256=ac41681b50107c96bcae92fc93be4faa3d4d2b6c2095e79b963c142a0f055fd8" | ||
"sha512=b427c2f37908b662f98360410dcaa18b31554024ddf2480abd9195acc83f427df44428642d2b028faa15c99f4a538d15fcd89d9b8dca399ee684864633963738" | ||
] | ||
} |
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" | ||
maintainer: "[email protected]" | ||
authors:[ | ||
"Anil Madhavapeddy" | ||
"Thomas Leonard" | ||
"Thomas Gazagnaire" | ||
"Rudi Grinberg" | ||
"Romain Calascibetta" | ||
] | ||
license: "ISC" | ||
tags: "org:mirage" | ||
homepage: "https://github.com/mirage/ocaml-conduit" | ||
bug-reports: "https://github.com/mirage/ocaml-conduit/issues" | ||
dev-repo: "git+https://github.com/mirage/ocaml-conduit.git" | ||
synopsis: "A portable network connection establishment library using Lwt and ocaml-tls" | ||
|
||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j1"] {with-test} | ||
] | ||
|
||
depends: [ | ||
"ocaml" {>= "4.07.0"} | ||
"dune" {>= "2.0.0"} | ||
"conduit-lwt" {= version} | ||
"conduit-tls" {= version} | ||
"mirage-crypto-rng" {>= "0.8.0"} | ||
] | ||
x-commit-hash: "f5ec040e47bf878c17c247a8e18bed7a0d60d2af" | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-conduit/releases/download/v3.0.0/conduit-v3.0.0.tbz" | ||
checksum: [ | ||
"sha256=ac41681b50107c96bcae92fc93be4faa3d4d2b6c2095e79b963c142a0f055fd8" | ||
"sha512=b427c2f37908b662f98360410dcaa18b31554024ddf2480abd9195acc83f427df44428642d2b028faa15c99f4a538d15fcd89d9b8dca399ee684864633963738" | ||
] | ||
} |
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
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
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
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
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
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,46 @@ | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
authors:[ | ||
"Anil Madhavapeddy" | ||
"Thomas Leonard" | ||
"Thomas Gazagnaire" | ||
"Rudi Grinberg" | ||
"Romain Calascibetta" | ||
] | ||
license: "ISC" | ||
tags: "org:mirage" | ||
homepage: "https://github.com/mirage/ocaml-conduit" | ||
bug-reports: "https://github.com/mirage/ocaml-conduit/issues" | ||
dev-repo: "git+https://github.com/mirage/ocaml-conduit.git" | ||
synopsis: "A portable network connection establishment library using Lwt" | ||
|
||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j1"] {with-test} | ||
] | ||
|
||
depends: [ | ||
"ocaml" {>= "4.07.0"} | ||
"dune" {>= "2.0.0"} | ||
"conduit" {= version} | ||
"cstruct" | ||
"lwt" | ||
"base-unix" | ||
"base-bigarray" {with-test} | ||
"bigstringaf" {with-test} | ||
"ke" {with-test} | ||
"fmt" {with-test} | ||
"rresult" {with-test} | ||
"conduit-lwt-tls" {with-test & post} | ||
"conduit-lwt-ssl" {with-test & post} | ||
] | ||
x-commit-hash: "f5ec040e47bf878c17c247a8e18bed7a0d60d2af" | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-conduit/releases/download/v3.0.0/conduit-v3.0.0.tbz" | ||
checksum: [ | ||
"sha256=ac41681b50107c96bcae92fc93be4faa3d4d2b6c2095e79b963c142a0f055fd8" | ||
"sha512=b427c2f37908b662f98360410dcaa18b31554024ddf2480abd9195acc83f427df44428642d2b028faa15c99f4a538d15fcd89d9b8dca399ee684864633963738" | ||
] | ||
} |
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" | ||
maintainer: "[email protected]" | ||
authors: [ | ||
"Anil Madhavapeddy" | ||
"Thomas Leonard" | ||
"Thomas Gazagnaire" | ||
] | ||
license: "ISC" | ||
tags: "org:mirage" | ||
homepage: "https://github.com/mirage/ocaml-conduit" | ||
bug-reports: "https://github.com/mirage/ocaml-conduit/issues" | ||
dev-repo: "git+https://github.com/mirage/ocaml-conduit.git" | ||
synopsis: "A network connection establishment library for MirageOS" | ||
|
||
build: [ | ||
["dune" "subst"] {pinned} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name] {with-test} | ||
] | ||
|
||
depends: [ | ||
"ocaml" {>= "4.07.0"} | ||
"dune" {>= "2.0.0"} | ||
"conduit" {= version} | ||
"tcpip" | ||
"mirage-flow" | ||
"mirage-time" | ||
"dns-client" {>= "4.6.0"} | ||
"ke" | ||
"bigstringaf" | ||
] | ||
x-commit-hash: "f5ec040e47bf878c17c247a8e18bed7a0d60d2af" | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-conduit/releases/download/v3.0.0/conduit-v3.0.0.tbz" | ||
checksum: [ | ||
"sha256=ac41681b50107c96bcae92fc93be4faa3d4d2b6c2095e79b963c142a0f055fd8" | ||
"sha512=b427c2f37908b662f98360410dcaa18b31554024ddf2480abd9195acc83f427df44428642d2b028faa15c99f4a538d15fcd89d9b8dca399ee684864633963738" | ||
] | ||
} |
Oops, something went wrong.