Skip to content

Commit 7dc5c0f

Browse files
authored
Merge pull request ocaml#22798 from anuragsoni/release-shuttle-0.7.0
[new release] shuttle_ssl and shuttle (0.7.0)
2 parents 7696e48 + 5138f4f commit 7dc5c0f

File tree

2 files changed

+85
-0
lines changed
  • packages
    • shuttle_ssl/shuttle_ssl.0.7.0
    • shuttle/shuttle.0.7.0

2 files changed

+85
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
opam-version: "2.0"
2+
synopsis: "Reasonably performant non-blocking channels for async"
3+
maintainer: ["Anurag Soni <[email protected]>"]
4+
authors: ["Anurag Soni"]
5+
license: "MIT"
6+
tags: ["async" "reader" "writer"]
7+
homepage: "https://github.com/anuragsoni/shuttle"
8+
doc: "https://anuragsoni.github.io/shuttle/"
9+
bug-reports: "https://github.com/anuragsoni/shuttle/issues"
10+
depends: [
11+
"dune" {>= "2.8"}
12+
"ocaml" {>= "4.11.0"}
13+
"async" {>= "v0.15.0"}
14+
"core" {>= "v0.15.0"}
15+
"core_unix" {>= "v0.15.0"}
16+
"ppx_jane" {>= "v0.15.0"}
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/anuragsoni/shuttle.git"
34+
available: [ arch != "s390x" ]
35+
url {
36+
src:
37+
"https://github.com/anuragsoni/shuttle/releases/download/0.7.0/shuttle-0.7.0.tbz"
38+
checksum: [
39+
"sha256=6671459bc5b8804fa5d7ef3f0d7ef81a863f0053b833dfdbc8d7b1c289a9ce46"
40+
"sha512=527ffc9131c6006af7e0b7a29b37e9e27e808926411b05c17b73f0ff7db08c6f3fb02739023237c97aa8f7fb7184a6f75c3fb21a801b2f96fe2752c62d372675"
41+
]
42+
}
43+
x-commit-hash: "3a253dc1ce4136dff508148b64692777365e1692"
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
opam-version: "2.0"
2+
synopsis: "Async_ssl support for shuttle"
3+
maintainer: ["Anurag Soni <[email protected]>"]
4+
authors: ["Anurag Soni"]
5+
license: "MIT"
6+
tags: ["async" "reader" "writer" "ssl"]
7+
homepage: "https://github.com/anuragsoni/shuttle"
8+
doc: "https://anuragsoni.github.io/shuttle/"
9+
bug-reports: "https://github.com/anuragsoni/shuttle/issues"
10+
depends: [
11+
"dune" {>= "2.8"}
12+
"ocaml" {>= "4.11.0"}
13+
"shuttle" {= version}
14+
"ppx_jane" {>= "v0.15.0"}
15+
"async_ssl" {>= "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.7.0/shuttle-0.7.0.tbz"
37+
checksum: [
38+
"sha256=6671459bc5b8804fa5d7ef3f0d7ef81a863f0053b833dfdbc8d7b1c289a9ce46"
39+
"sha512=527ffc9131c6006af7e0b7a29b37e9e27e808926411b05c17b73f0ff7db08c6f3fb02739023237c97aa8f7fb7184a6f75c3fb21a801b2f96fe2752c62d372675"
40+
]
41+
}
42+
x-commit-hash: "3a253dc1ce4136dff508148b64692777365e1692"

0 commit comments

Comments
 (0)