Skip to content

Commit 04820cd

Browse files
authored
Merge pull request ocaml#27787 from c-cube/release-moonpool-v0.8
[new release] moonpool (3 packages) (0.8)
2 parents a84d26e + cdf594d commit 04820cd

File tree

3 files changed

+131
-0
lines changed
  • packages
    • moonpool-io/moonpool-io.0.8
    • moonpool-lwt/moonpool-lwt.0.8
    • moonpool/moonpool.0.8

3 files changed

+131
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
opam-version: "2.0"
2+
synopsis: "Async IO for moonpool, relying on picos (experimental)"
3+
maintainer: ["Simon Cruanes"]
4+
authors: ["Simon Cruanes"]
5+
license: "MIT"
6+
homepage: "https://github.com/c-cube/moonpool"
7+
bug-reports: "https://github.com/c-cube/moonpool/issues"
8+
depends: [
9+
"dune" {>= "3.0"}
10+
"moonpool" {= version}
11+
"picos_io" {>= "0.5" & < "0.7"}
12+
"ocaml" {>= "5.0"}
13+
"trace" {with-test}
14+
"trace-tef" {with-test}
15+
"odoc" {with-doc}
16+
]
17+
build: [
18+
["dune" "subst"] {dev}
19+
[
20+
"dune"
21+
"build"
22+
"-p"
23+
name
24+
"-j"
25+
jobs
26+
"@install"
27+
"@runtest" {with-test}
28+
"@doc" {with-doc}
29+
]
30+
]
31+
dev-repo: "git+https://github.com/c-cube/moonpool.git"
32+
url {
33+
src:
34+
"https://github.com/c-cube/moonpool/releases/download/v0.8/moonpool-0.8.tbz"
35+
checksum: [
36+
"sha256=2c10792726b1c2e4987f0f2acca5c5c221ea5cc0a2b4c75ad4fd2709e32aab6f"
37+
"sha512=801c399ae9b72dd5f84624cdee9bcbb56c5ed9c371001e00176e685686234b4135d69e48877412b25a5127ad59b729000d5422dad0c90e2ded2744b974dddeca"
38+
]
39+
}
40+
x-commit-hash: "ed0eda226c8be1436a79e345db0e9eea57276871"
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
synopsis: "Event loop for moonpool based on Lwt-engine (experimental)"
3+
maintainer: ["Simon Cruanes"]
4+
authors: ["Simon Cruanes"]
5+
license: "MIT"
6+
homepage: "https://github.com/c-cube/moonpool"
7+
bug-reports: "https://github.com/c-cube/moonpool/issues"
8+
depends: [
9+
"dune" {>= "3.0"}
10+
"moonpool" {= version}
11+
"ocaml" {>= "5.0"}
12+
"lwt"
13+
"base-unix"
14+
"trace" {with-test}
15+
"trace-tef" {with-test}
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/c-cube/moonpool.git"
33+
url {
34+
src:
35+
"https://github.com/c-cube/moonpool/releases/download/v0.8/moonpool-0.8.tbz"
36+
checksum: [
37+
"sha256=2c10792726b1c2e4987f0f2acca5c5c221ea5cc0a2b4c75ad4fd2709e32aab6f"
38+
"sha512=801c399ae9b72dd5f84624cdee9bcbb56c5ed9c371001e00176e685686234b4135d69e48877412b25a5127ad59b729000d5422dad0c90e2ded2744b974dddeca"
39+
]
40+
}
41+
x-commit-hash: "ed0eda226c8be1436a79e345db0e9eea57276871"
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
opam-version: "2.0"
2+
synopsis: "Pools of threads supported by a pool of domains"
3+
maintainer: ["Simon Cruanes"]
4+
authors: ["Simon Cruanes"]
5+
license: "MIT"
6+
tags: ["thread" "pool" "domain" "futures" "fork-join"]
7+
homepage: "https://github.com/c-cube/moonpool"
8+
bug-reports: "https://github.com/c-cube/moonpool/issues"
9+
depends: [
10+
"ocaml" {>= "4.14"}
11+
"dune" {>= "3.0"}
12+
"either" {>= "1.0"}
13+
"trace" {with-test}
14+
"trace-tef" {with-test}
15+
"qcheck-core" {with-test & >= "0.19"}
16+
"thread-local-storage" {>= "0.2" & < "0.3"}
17+
"odoc" {with-doc}
18+
"hmap" {with-test}
19+
"picos" {>= "0.5" & < "0.7"}
20+
"picos_std" {>= "0.5" & < "0.7"}
21+
"mdx" {>= "1.9.0" & with-test}
22+
]
23+
depopts: [
24+
"hmap"
25+
"trace" {>= "0.6"}
26+
]
27+
build: [
28+
["dune" "subst"] {dev}
29+
[
30+
"dune"
31+
"build"
32+
"-p"
33+
name
34+
"-j"
35+
jobs
36+
"@install"
37+
"@runtest" {with-test}
38+
"@doc" {with-doc}
39+
]
40+
]
41+
dev-repo: "git+https://github.com/c-cube/moonpool.git"
42+
url {
43+
src:
44+
"https://github.com/c-cube/moonpool/releases/download/v0.8/moonpool-0.8.tbz"
45+
checksum: [
46+
"sha256=2c10792726b1c2e4987f0f2acca5c5c221ea5cc0a2b4c75ad4fd2709e32aab6f"
47+
"sha512=801c399ae9b72dd5f84624cdee9bcbb56c5ed9c371001e00176e685686234b4135d69e48877412b25a5127ad59b729000d5422dad0c90e2ded2744b974dddeca"
48+
]
49+
}
50+
x-commit-hash: "ed0eda226c8be1436a79e345db0e9eea57276871"

0 commit comments

Comments
 (0)