Skip to content

Commit

Permalink
Update to Dune 3
Browse files Browse the repository at this point in the history
Signed-off-by: Sora Morimoto <[email protected]>
  • Loading branch information
smorimoto committed Dec 17, 2024
1 parent 4519ef6 commit a9544e0
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 12 deletions.
10 changes: 3 additions & 7 deletions dune-project
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
(lang dune 2.7)
(lang dune 3.17)

(name lwt)

(generate_opam_files true)

(maintainers
"Raphaël Proust <[email protected]>"
"Anton Bachin <[email protected]>")
(maintainers "Raphaël Proust <[email protected]>" "Anton Bachin <[email protected]>")
(authors "Jérôme Vouillon" "Jérémie Dimino")
(license MIT)
(source (github ocsigen/lwt))
Expand All @@ -16,9 +14,7 @@
(name lwt_retry)
(synopsis "Utilities for retrying Lwt computations")
(authors "Shon Feder")
(maintainers
"Raphaël Proust <[email protected]>"
"Shon Feder <[email protected]>")
(maintainers "Raphaël Proust <[email protected]>" "Shon Feder <[email protected]>")
(depends
(ocaml (>= 4.08))
(lwt (>= 5.3.0))
Expand Down
2 changes: 1 addition & 1 deletion lwt.opam
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ homepage: "https://github.com/ocsigen/lwt"
doc: "https://ocsigen.org/lwt"
bug-reports: "https://github.com/ocsigen/lwt/issues"
depends: [
"dune" {>= "2.7"}
"dune" {>= "3.17"}
"ocaml" {>= "4.08"}
"cppo" {build & >= "1.1.0"}
"ocamlfind" {dev & >= "1.7.3-1"}
Expand Down
2 changes: 1 addition & 1 deletion lwt_ppx.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ homepage: "https://github.com/ocsigen/lwt"
doc: "https://ocsigen.org/lwt"
bug-reports: "https://github.com/ocsigen/lwt/issues"
depends: [
"dune" {>= "2.7"}
"dune" {>= "3.17"}
"ocaml" {>= "4.08"}
"ppxlib" {>= "0.16.0"}
"ppx_let" {with-test}
Expand Down
2 changes: 1 addition & 1 deletion lwt_react.opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage: "https://github.com/ocsigen/lwt"
doc: "https://ocsigen.org/lwt"
bug-reports: "https://github.com/ocsigen/lwt/issues"
depends: [
"dune" {>= "2.7"}
"dune" {>= "3.17"}
"ocaml" {>= "4.08"}
"cppo" {build & >= "1.1.0"}
"lwt" {>= "3.0.0"}
Expand Down
2 changes: 1 addition & 1 deletion lwt_retry.opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage: "https://github.com/ocsigen/lwt"
doc: "https://ocsigen.org/lwt"
bug-reports: "https://github.com/ocsigen/lwt/issues"
depends: [
"dune" {>= "2.7"}
"dune" {>= "3.17"}
"ocaml" {>= "4.08"}
"lwt" {>= "5.3.0"}
"bisect_ppx" {with-test}
Expand Down
2 changes: 1 addition & 1 deletion src/unix/lwt_io.ml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ and 'mode channel = {
channel : 'mode _channel;
(* The real channel *)

mutable queued : unit Lwt.u Lwt_sequence.t;
mutable queued : unit Lwt.u Lwt_sequence.t [@ocaml.warning "-69"];
(* Queued operations *)
}

Expand Down

0 comments on commit a9544e0

Please sign in to comment.