File tree Expand file tree Collapse file tree 8 files changed +8
-24
lines changed Expand file tree Collapse file tree 8 files changed +8
-24
lines changed Original file line number Diff line number Diff line change 1- (lang dune 3 .7 )
1+ (lang dune 3 .9 )
22(name eio)
33( formatting disabled)
44( generate_opam_files true )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ homepage: "https://github.com/ocaml-multicore/eio"
99doc: "https://ocaml-multicore.github.io/eio/"
1010bug-reports: "https://github.com/ocaml-multicore/eio/issues"
1111depends: [
12- "dune" {>= "3.7 "}
12+ "dune" {>= "3.9 "}
1313 "ocaml" {>= "5.0.0"}
1414 "bigstringaf" {>= "0.9.0"}
1515 "cstruct" {>= "6.0.1"}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ homepage: "https://github.com/ocaml-multicore/eio"
99doc: "https://ocaml-multicore.github.io/eio/"
1010bug-reports: "https://github.com/ocaml-multicore/eio/issues"
1111depends: [
12- "dune" {>= "3.7 "}
12+ "dune" {>= "3.9 "}
1313 "alcotest" {>= "1.4.0" & with-test}
1414 "eio" {= version}
1515 "mdx" {>= "2.2.0" & with-test}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ homepage: "https://github.com/ocaml-multicore/eio"
99doc: "https://ocaml-multicore.github.io/eio/"
1010bug-reports: "https://github.com/ocaml-multicore/eio/issues"
1111depends: [
12- "dune" {>= "3.7 "}
12+ "dune" {>= "3.9 "}
1313 "mdx" {>= "2.2.0" & with-test}
1414 "kcas" {>= "0.3.0" & with-test}
1515 "yojson" {>= "2.0.2" & with-test}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ homepage: "https://github.com/ocaml-multicore/eio"
99doc: "https://ocaml-multicore.github.io/eio/"
1010bug-reports: "https://github.com/ocaml-multicore/eio/issues"
1111depends: [
12- "dune" {>= "3.7 "}
12+ "dune" {>= "3.9 "}
1313 "eio" {= version}
1414 "iomux" {>= "0.2"}
1515 "mdx" {>= "2.2.0" & with-test}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ homepage: "https://github.com/ocaml-multicore/eio"
99doc: "https://ocaml-multicore.github.io/eio/"
1010bug-reports: "https://github.com/ocaml-multicore/eio/issues"
1111depends: [
12- "dune" {>= "3.7 "}
12+ "dune" {>= "3.9 "}
1313 "eio" {= version}
1414 "kcas" {>= "0.3.0" & with-test}
1515 "alcotest" {>= "1.4.0" & with-test}
Original file line number Diff line number Diff line change 1- (* -*- tuareg -*- *)
2-
3- let linux = List.mem ("system", "linux") Jbuild_plugin.V1.ocamlc_config
4-
5- let () = Jbuild_plugin.V1.send @@ if not linux then "" else {|
6-
71(library
82 (name eurcp_lib)
93 (enabled_if (= %{system} "linux"))
@@ -31,13 +25,11 @@ let () = Jbuild_plugin.V1.send @@ if not linux then "" else {|
3125(test
3226 (name test)
3327 (package eio_linux)
34- (enabled_if (= %{system} "linux"))
28+ (build_if (= %{system} "linux"))
3529 (modules test)
3630 (libraries alcotest eio_linux))
3731
3832(mdx
3933 (package eio_linux)
4034 (enabled_if (= %{system} "linux"))
4135 (deps (package eio_linux)))
42-
43- |}
Original file line number Diff line number Diff line change 1- (* -*- tuareg -*- *)
2-
3- let win32 = List.mem ("os_type", "Win32") Jbuild_plugin.V1.ocamlc_config
4-
5- let () = Jbuild_plugin.V1.send @@ if not win32 then "" else {|
6-
71(test
82 (name test)
93 (package eio_windows)
10- (enabled_if (= %{os_type} "Win32"))
4+ (build_if (= %{os_type} "Win32"))
115 (libraries alcotest kcas eio.mock eio_windows))
12-
13- |}
You can’t perform that action at this time.
0 commit comments