Skip to content

Commit 1a352f3

Browse files
authored
Merge pull request ocaml#24766 from c-cube/release-moonpool-v0.5
[new release] moonpool (0.5)
2 parents 7dca61f + f9195e0 commit 1a352f3

File tree

1 file changed

+46
-0
lines changed
  • packages/moonpool/moonpool.0.5

1 file changed

+46
-0
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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.08"}
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+
"odoc" {with-doc}
17+
"mdx" {>= "1.9.0" & with-test}
18+
]
19+
depopts: [
20+
"thread-local-storage"
21+
"domain-local-await" {>= "0.2"}
22+
]
23+
build: [
24+
["dune" "subst"] {dev}
25+
[
26+
"dune"
27+
"build"
28+
"-p"
29+
name
30+
"-j"
31+
jobs
32+
"@install"
33+
"@runtest" {with-test}
34+
"@doc" {with-doc}
35+
]
36+
]
37+
dev-repo: "git+https://github.com/c-cube/moonpool.git"
38+
url {
39+
src:
40+
"https://github.com/c-cube/moonpool/releases/download/v0.5/moonpool-0.5.tbz"
41+
checksum: [
42+
"sha256=bd1ab7a02532bc515fa43b6ed3ef7e206d318bd393a4256ed9084255c364ac86"
43+
"sha512=4385fb57dde586b229b00c28c00c23b140ac41d8300c5b5f6fc812167d29b277c0c22a41c35d697bcb3ecefd20b1cbb22c115d4586e6421808469efa8f9bf6c3"
44+
]
45+
}
46+
x-commit-hash: "fd2102c7fe4fc936de93fe179b3e59758d18f992"

0 commit comments

Comments
 (0)