Skip to content

Commit 2ec6d6c

Browse files
Merge pull request #28891 from c-cube/release-moonpool-v0.10
[new release] moonpool (2 packages) (0.10)
2 parents 48c9f6e + 475938e commit 2ec6d6c

File tree

2 files changed

+93
-0
lines changed
  • packages
    • moonpool-lwt/moonpool-lwt.0.10
    • moonpool/moonpool.0.10

2 files changed

+93
-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: "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+
"qcheck-core" {with-test & >= "0.19"}
13+
"hmap" {with-test}
14+
"lwt"
15+
"base-unix"
16+
"trace" {with-test}
17+
"trace-tef" {with-test}
18+
"odoc" {with-doc}
19+
]
20+
build: [
21+
["dune" "subst"] {dev}
22+
[
23+
"dune"
24+
"build"
25+
"-p"
26+
name
27+
"-j"
28+
jobs
29+
"@install"
30+
"@runtest" {with-test}
31+
"@doc" {with-doc}
32+
]
33+
]
34+
dev-repo: "git+https://github.com/c-cube/moonpool.git"
35+
url {
36+
src:
37+
"https://github.com/c-cube/moonpool/releases/download/v0.10/moonpool-0.10.tbz"
38+
checksum: [
39+
"sha256=6e3ddd37c8db9b2b7945031a72f716ba291753b1b212dd85af3cc1d62325375a"
40+
"sha512=07e51249842078b08850506ff76800c4fc9185113a08b69c517fd3e6e561120dbd12a0aabd89518a540adf4d0711fd0785894595d2a3e39a799e764a427c25fc"
41+
]
42+
}
43+
x-commit-hash: "4de33f0121510a3115b11d5d1bc25408f3a236c4"
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" {>= "5.0"}
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.10/moonpool-0.10.tbz"
45+
checksum: [
46+
"sha256=6e3ddd37c8db9b2b7945031a72f716ba291753b1b212dd85af3cc1d62325375a"
47+
"sha512=07e51249842078b08850506ff76800c4fc9185113a08b69c517fd3e6e561120dbd12a0aabd89518a540adf4d0711fd0785894595d2a3e39a799e764a427c25fc"
48+
]
49+
}
50+
x-commit-hash: "4de33f0121510a3115b11d5d1bc25408f3a236c4"

0 commit comments

Comments
 (0)