Skip to content

Commit 15512ce

Browse files
authored
Merge pull request #25332 from c-cube/release-fuseau-v0.1
[new release] fuseau (2 packages) (0.1)
2 parents 7c22f97 + 1d04304 commit 15512ce

File tree

2 files changed

+84
-0
lines changed
  • packages
    • fuseau/fuseau.0.1
    • fuseau-lwt/fuseau-lwt.0.1

2 files changed

+84
-0
lines changed
+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
opam-version: "2.0"
2+
synopsis: "Lwt backend for Fuseau"
3+
maintainer: ["Simon Cruanes"]
4+
authors: ["Simon Cruanes"]
5+
license: "MIT"
6+
tags: ["fuseau" "lwt"]
7+
homepage: "https://github.com/c-cube/fuseau"
8+
bug-reports: "https://github.com/c-cube/fuseau/issues"
9+
depends: [
10+
"dune" {>= "3.0"}
11+
"trace" {>= "0.6"}
12+
"lwt"
13+
"base-unix"
14+
"trace-tef" {with-test}
15+
"fuseau" {= version}
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/fuseau.git"
33+
url {
34+
src:
35+
"https://github.com/c-cube/fuseau/releases/download/v0.1/fuseau-0.1.tbz"
36+
checksum: [
37+
"sha256=8a9339d239aa371d0c4aceb23d7601a1b7da8f42d84542cee30669cc95addb6a"
38+
"sha512=fa656c7311371344f0c6ebf08c666afc33296558ccc678ed87baf2f9ba54035cd4c5caca4257212416296fcdbdfc1687c46cc2ebea3548c792ea72602b85b832"
39+
]
40+
}
41+
x-commit-hash: "861d497ea5eb906484de8a67705efefdeb59b091"

packages/fuseau/fuseau.0.1/opam

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
opam-version: "2.0"
2+
synopsis: "A simple IO and concurrency library for OCaml 5"
3+
maintainer: ["Simon Cruanes"]
4+
authors: ["Simon Cruanes"]
5+
license: "MIT"
6+
tags: ["await" "effects" "event-loop" "thread-local-storage"]
7+
homepage: "https://github.com/c-cube/fuseau"
8+
bug-reports: "https://github.com/c-cube/fuseau/issues"
9+
depends: [
10+
"ocaml" {>= "5.0"}
11+
"dune" {>= "3.0"}
12+
"mtime" {>= "2.0"}
13+
"trace" {>= "0.6"}
14+
"trace-tef" {with-test}
15+
"mdx" {with-test}
16+
"thread-local-storage"
17+
"odoc" {with-doc}
18+
]
19+
depopts: ["moonpool"]
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/fuseau.git"
35+
url {
36+
src:
37+
"https://github.com/c-cube/fuseau/releases/download/v0.1/fuseau-0.1.tbz"
38+
checksum: [
39+
"sha256=8a9339d239aa371d0c4aceb23d7601a1b7da8f42d84542cee30669cc95addb6a"
40+
"sha512=fa656c7311371344f0c6ebf08c666afc33296558ccc678ed87baf2f9ba54035cd4c5caca4257212416296fcdbdfc1687c46cc2ebea3548c792ea72602b85b832"
41+
]
42+
}
43+
x-commit-hash: "861d497ea5eb906484de8a67705efefdeb59b091"

0 commit comments

Comments
 (0)