File tree Expand file tree Collapse file tree 7 files changed +229
-2
lines changed
eio_windows/eio_windows.0.11 Expand file tree Collapse file tree 7 files changed +229
-2
lines changed Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Effect-based direct-style IO API for OCaml"
3+ description: "An effect-based IO API for multicore OCaml with fibers."
4+ 5+ authors: ["Anil Madhavapeddy" "Thomas Leonard"]
6+ license: "ISC"
7+ homepage: "https://github.com/ocaml-multicore/eio"
8+ doc: "https://ocaml-multicore.github.io/eio/"
9+ bug-reports: "https://github.com/ocaml-multicore/eio/issues"
10+ depends: [
11+ "dune" {>= "3.9"}
12+ "ocaml" {>= "5.0.0"}
13+ "bigstringaf" {>= "0.9.0"}
14+ "cstruct" {>= "6.0.1"}
15+ "lwt-dllist"
16+ "optint" {>= "0.1.0"}
17+ "psq" {>= "0.2.0"}
18+ "fmt" {>= "0.8.9"}
19+ "hmap" {>= "0.8.1"}
20+ "domain-local-await" {>= "0.1.0"}
21+ "crowbar" {>= "0.2" & with-test}
22+ "mtime" {>= "2.0.0"}
23+ "mdx" {>= "2.2.0" & with-test}
24+ "alcotest" {>= "1.4.0" & with-test}
25+ "dscheck" {>= "0.1.0" & with-test}
26+ "odoc" {with-doc}
27+ ]
28+ conflicts: [
29+ "ocaml-base-compiler" {< "5.0.0~beta1"}
30+ "ocaml-variants" {< "5.0.0~beta1"}
31+ "ocaml-system" {< "5.0.0~beta1"}
32+ "seq" {< "0.3"}
33+ ]
34+ build: [
35+ ["dune" "subst"] {dev}
36+ [
37+ "dune"
38+ "build"
39+ "-p"
40+ name
41+ "-j"
42+ jobs
43+ "@install"
44+ "@runtest" {with-test}
45+ "@doc" {with-doc}
46+ ]
47+ ]
48+ dev-repo: "git+https://github.com/ocaml-multicore/eio.git"
49+ url {
50+ src:
51+ "https://github.com/ocaml-multicore/eio/releases/download/v0.11/eio-0.11.tbz"
52+ checksum: [
53+ "sha256=0c33742074562631677886f4fe4a02f9672cec94297ff85c2ed854db5baa71aa"
54+ "sha512=590843cb5fb3906fd5ab9911d29206172d164a53c48e635871a23c95d4cdce8ae0999480471187fdddee8c9c523148911ca140feabde6a826c317671a3b33090"
55+ ]
56+ }
57+ x-commit-hash: "3fe575538d162fa7df209085b693ddf1b8e3842f"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Eio implementation for Linux using io-uring"
3+ description: "An Eio implementation for Linux using io-uring."
4+ 5+ authors: ["Anil Madhavapeddy" "Thomas Leonard"]
6+ license: "ISC"
7+ homepage: "https://github.com/ocaml-multicore/eio"
8+ doc: "https://ocaml-multicore.github.io/eio/"
9+ bug-reports: "https://github.com/ocaml-multicore/eio/issues"
10+ depends: [
11+ "dune" {>= "3.9"}
12+ "alcotest" {>= "1.4.0" & with-test}
13+ "eio" {= version}
14+ "mdx" {>= "2.2.0" & with-test}
15+ "logs" {>= "0.7.0"}
16+ "fmt" {>= "0.8.9"}
17+ "cmdliner" {>= "1.1.0" & with-test}
18+ "uring" {>= "0.5"}
19+ "odoc" {with-doc}
20+ ]
21+ build: [
22+ ["dune" "subst"] {dev}
23+ [
24+ "dune"
25+ "build"
26+ "-p"
27+ name
28+ "-j"
29+ jobs
30+ "@install"
31+ "@runtest" {with-test}
32+ "@doc" {with-doc}
33+ ]
34+ ]
35+ dev-repo: "git+https://github.com/ocaml-multicore/eio.git"
36+ url {
37+ src:
38+ "https://github.com/ocaml-multicore/eio/releases/download/v0.11/eio-0.11.tbz"
39+ checksum: [
40+ "sha256=0c33742074562631677886f4fe4a02f9672cec94297ff85c2ed854db5baa71aa"
41+ "sha512=590843cb5fb3906fd5ab9911d29206172d164a53c48e635871a23c95d4cdce8ae0999480471187fdddee8c9c523148911ca140feabde6a826c317671a3b33090"
42+ ]
43+ }
44+ x-commit-hash: "3fe575538d162fa7df209085b693ddf1b8e3842f"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Effect-based direct-style IO mainloop for OCaml"
3+ description: "Selects an appropriate Eio backend for the current platform."
4+ 5+ authors: ["Anil Madhavapeddy" "Thomas Leonard"]
6+ license: "ISC"
7+ homepage: "https://github.com/ocaml-multicore/eio"
8+ doc: "https://ocaml-multicore.github.io/eio/"
9+ bug-reports: "https://github.com/ocaml-multicore/eio/issues"
10+ depends: [
11+ "dune" {>= "3.9"}
12+ "mdx" {>= "2.2.0" & with-test}
13+ "kcas" {>= "0.3.0" & with-test}
14+ "yojson" {>= "2.0.2" & with-test}
15+ "eio_linux" {= version & os = "linux"}
16+ "eio_posix" {= version & os != "win32"}
17+ "eio_windows" {= version & os = "win32"}
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/ocaml-multicore/eio.git"
35+ url {
36+ src:
37+ "https://github.com/ocaml-multicore/eio/releases/download/v0.11/eio-0.11.tbz"
38+ checksum: [
39+ "sha256=0c33742074562631677886f4fe4a02f9672cec94297ff85c2ed854db5baa71aa"
40+ "sha512=590843cb5fb3906fd5ab9911d29206172d164a53c48e635871a23c95d4cdce8ae0999480471187fdddee8c9c523148911ca140feabde6a826c317671a3b33090"
41+ ]
42+ }
43+ x-commit-hash: "3fe575538d162fa7df209085b693ddf1b8e3842f"
44+ x-ci-accept-failures: ["macos-homebrew"]
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Eio implementation for POSIX systems"
3+ description: "An Eio implementation for most Unix-like platforms"
4+ 5+ authors: ["Anil Madhavapeddy" "Thomas Leonard"]
6+ license: "ISC"
7+ homepage: "https://github.com/ocaml-multicore/eio"
8+ doc: "https://ocaml-multicore.github.io/eio/"
9+ bug-reports: "https://github.com/ocaml-multicore/eio/issues"
10+ depends: [
11+ "dune" {>= "3.9"}
12+ "eio" {= version}
13+ "iomux" {>= "0.2"}
14+ "mdx" {>= "2.2.0" & with-test}
15+ "fmt" {>= "0.8.9"}
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/ocaml-multicore/eio.git"
33+ url {
34+ src:
35+ "https://github.com/ocaml-multicore/eio/releases/download/v0.11/eio-0.11.tbz"
36+ checksum: [
37+ "sha256=0c33742074562631677886f4fe4a02f9672cec94297ff85c2ed854db5baa71aa"
38+ "sha512=590843cb5fb3906fd5ab9911d29206172d164a53c48e635871a23c95d4cdce8ae0999480471187fdddee8c9c523148911ca140feabde6a826c317671a3b33090"
39+ ]
40+ }
41+ x-commit-hash: "3fe575538d162fa7df209085b693ddf1b8e3842f"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Eio implementation for Windows"
3+ description: "An Eio implementation using OCaml's Unix.select"
4+ 5+ authors: ["Anil Madhavapeddy" "Thomas Leonard"]
6+ license: "ISC"
7+ homepage: "https://github.com/ocaml-multicore/eio"
8+ doc: "https://ocaml-multicore.github.io/eio/"
9+ bug-reports: "https://github.com/ocaml-multicore/eio/issues"
10+ depends: [
11+ "dune" {>= "3.9"}
12+ "eio" {= version}
13+ "kcas" {>= "0.3.0" & with-test}
14+ "alcotest" {>= "1.4.0" & 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/ocaml-multicore/eio.git"
32+ url {
33+ src:
34+ "https://github.com/ocaml-multicore/eio/releases/download/v0.11/eio-0.11.tbz"
35+ checksum: [
36+ "sha256=0c33742074562631677886f4fe4a02f9672cec94297ff85c2ed854db5baa71aa"
37+ "sha512=590843cb5fb3906fd5ab9911d29206172d164a53c48e635871a23c95d4cdce8ae0999480471187fdddee8c9c523148911ca140feabde6a826c317671a3b33090"
38+ ]
39+ }
40+ x-commit-hash: "3fe575538d162fa7df209085b693ddf1b8e3842f"
41+ available: [os = "win32"]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ doc: "https://ocaml-multicore.github.io/lwt_eio"
1010bug-reports: "https://github.com/ocaml-multicore/lwt_eio/issues"
1111depends: [
1212 "dune" {>= "2.9"}
13- "eio" {>= "0.2"}
13+ "eio" {>= "0.2" & < "0.11" }
1414 "lwt"
1515 "mdx" {>= "1.10.0" & with-test}
1616 "eio_main" {with-test}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ doc: "https://ocaml-multicore.github.io/lwt_eio"
1010bug-reports: "https://github.com/ocaml-multicore/lwt_eio/issues"
1111depends: [
1212 "dune" {>= "2.9"}
13- "eio" {>= "0.7"}
13+ "eio" {>= "0.7" & < "0.11" }
1414 "lwt"
1515 "mdx" {>= "1.10.0" & with-test}
1616 "eio_main" {with-test}
You can’t perform that action at this time.
0 commit comments