File tree Expand file tree Collapse file tree 5 files changed +227
-0
lines changed
eio_windows/eio_windows.0.10 Expand file tree Collapse file tree 5 files changed +227
-0
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
+ maintainer: ["anil@recoil.org"]
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.7"}
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.10/eio-0.10.tbz"
52
+ checksum: [
53
+ "sha256=390f7814507b8133d6c25e3a67a742d731c7ca66252b287b1fb0e3ad4d10eecc"
54
+ "sha512=9c0c9088b178df9799aaae9deb803a802228f1329cbe452479c90e80a13985d9c364ea86ee14e4e759133940f9f6065c7e8ece509d176fb1e347c5320f00a494"
55
+ ]
56
+ }
57
+ x-commit-hash: "687ebf99a6ab10ce5d85f4a3335d8e2e94c2b875"
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
+ maintainer: ["anil@recoil.org"]
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.7"}
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.10/eio-0.10.tbz"
39
+ checksum: [
40
+ "sha256=390f7814507b8133d6c25e3a67a742d731c7ca66252b287b1fb0e3ad4d10eecc"
41
+ "sha512=9c0c9088b178df9799aaae9deb803a802228f1329cbe452479c90e80a13985d9c364ea86ee14e4e759133940f9f6065c7e8ece509d176fb1e347c5320f00a494"
42
+ ]
43
+ }
44
+ x-commit-hash: "687ebf99a6ab10ce5d85f4a3335d8e2e94c2b875"
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
+ maintainer: ["anil@recoil.org"]
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.7"}
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-family != "windows"}
17
+ "eio_windows" {= version & os-family = "windows"}
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.10/eio-0.10.tbz"
38
+ checksum: [
39
+ "sha256=390f7814507b8133d6c25e3a67a742d731c7ca66252b287b1fb0e3ad4d10eecc"
40
+ "sha512=9c0c9088b178df9799aaae9deb803a802228f1329cbe452479c90e80a13985d9c364ea86ee14e4e759133940f9f6065c7e8ece509d176fb1e347c5320f00a494"
41
+ ]
42
+ }
43
+ x-commit-hash: "687ebf99a6ab10ce5d85f4a3335d8e2e94c2b875"
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
+ maintainer: ["anil@recoil.org"]
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.7"}
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.10/eio-0.10.tbz"
36
+ checksum: [
37
+ "sha256=390f7814507b8133d6c25e3a67a742d731c7ca66252b287b1fb0e3ad4d10eecc"
38
+ "sha512=9c0c9088b178df9799aaae9deb803a802228f1329cbe452479c90e80a13985d9c364ea86ee14e4e759133940f9f6065c7e8ece509d176fb1e347c5320f00a494"
39
+ ]
40
+ }
41
+ x-commit-hash: "687ebf99a6ab10ce5d85f4a3335d8e2e94c2b875"
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
+ maintainer: ["anil@recoil.org"]
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.7"}
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.10/eio-0.10.tbz"
35
+ checksum: [
36
+ "sha256=390f7814507b8133d6c25e3a67a742d731c7ca66252b287b1fb0e3ad4d10eecc"
37
+ "sha512=9c0c9088b178df9799aaae9deb803a802228f1329cbe452479c90e80a13985d9c364ea86ee14e4e759133940f9f6065c7e8ece509d176fb1e347c5320f00a494"
38
+ ]
39
+ }
40
+ x-commit-hash: "687ebf99a6ab10ce5d85f4a3335d8e2e94c2b875"
41
+ available: [os-family = "windows"]
You can’t perform that action at this time.
0 commit comments