Skip to content

Commit 584764f

Browse files
committed
[new release] shuttle_ssl, shuttle_http and shuttle (0.8.1)
CHANGES: * Same content as 0.8.0, but it re-works the integration tests to not spawn external processes, and adds a constraint on shuttle_http to only have it available on 64 bit systems.
1 parent 4d71c85 commit 584764f

File tree

3 files changed

+128
-0
lines changed
  • packages
    • shuttle_http/shuttle_http.0.8.1
    • shuttle_ssl/shuttle_ssl.0.8.1
    • shuttle/shuttle.0.8.1

3 files changed

+128
-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.8.1/shuttle-0.8.1.tbz"
38+
checksum: [
39+
"sha256=169edfba7a08ae202a3b8a6622cb5c6a22f627d4f09856acb0a4e0885a1ccf17"
40+
"sha512=9bf8344563e7ac9ee031086fdf1e19502934073dd186869574c29a95403333264cf12a60ee8bbdc36c32800acf080126dcfe54871e601f04096ffe523352937e"
41+
]
42+
}
43+
x-commit-hash: "9aa5dba3844cb7baf71ee65b4fec84ff4488b024"
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: "Async library for HTTP/1.1 servers"
3+
description:
4+
"Shuttle_http is a low level library for implementing HTTP/1.1 web services in OCaml."
5+
maintainer: ["Anurag Soni <[email protected]>"]
6+
authors: ["Anurag Soni"]
7+
license: "MIT"
8+
tags: ["http-server" "http" "http1.1" "async"]
9+
homepage: "https://github.com/anuragsoni/shuttle"
10+
doc: "https://anuragsoni.github.io/shuttle/"
11+
bug-reports: "https://github.com/anuragsoni/shuttle/issues"
12+
depends: [
13+
"dune" {>= "2.8"}
14+
"shuttle" {= version}
15+
"ppx_jane" {with-test}
16+
"core_unix" {with-test}
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 = "x86_64" | arch = "arm64" ]
35+
url {
36+
src:
37+
"https://github.com/anuragsoni/shuttle/releases/download/0.8.1/shuttle-0.8.1.tbz"
38+
checksum: [
39+
"sha256=169edfba7a08ae202a3b8a6622cb5c6a22f627d4f09856acb0a4e0885a1ccf17"
40+
"sha512=9bf8344563e7ac9ee031086fdf1e19502934073dd186869574c29a95403333264cf12a60ee8bbdc36c32800acf080126dcfe54871e601f04096ffe523352937e"
41+
]
42+
}
43+
x-commit-hash: "9aa5dba3844cb7baf71ee65b4fec84ff4488b024"
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.8.1/shuttle-0.8.1.tbz"
37+
checksum: [
38+
"sha256=169edfba7a08ae202a3b8a6622cb5c6a22f627d4f09856acb0a4e0885a1ccf17"
39+
"sha512=9bf8344563e7ac9ee031086fdf1e19502934073dd186869574c29a95403333264cf12a60ee8bbdc36c32800acf080126dcfe54871e601f04096ffe523352937e"
40+
]
41+
}
42+
x-commit-hash: "9aa5dba3844cb7baf71ee65b4fec84ff4488b024"

0 commit comments

Comments
 (0)