Skip to content

Commit c372afd

Browse files
committed
bump to dune 3.15 to fix format
1 parent 1b59d8a commit c372afd

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(lang dune 3.0)
1+
(lang dune 3.15)
22

33
(using mdx 0.2)
44

moonpool-lwt.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license: "MIT"
88
homepage: "https://github.com/c-cube/moonpool"
99
bug-reports: "https://github.com/c-cube/moonpool/issues"
1010
depends: [
11-
"dune" {>= "3.0"}
11+
"dune" {>= "3.15"}
1212
"moonpool" {= version}
1313
"ocaml" {>= "5.0"}
1414
"qcheck-core" {with-test & >= "0.21"}

moonpool.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage: "https://github.com/c-cube/moonpool"
1010
bug-reports: "https://github.com/c-cube/moonpool/issues"
1111
depends: [
1212
"ocaml" {>= "5.0"}
13-
"dune" {>= "3.0"}
13+
"dune" {>= "3.15"}
1414
"either" {>= "1.0"}
1515
"trace" {>= "0.11" & with-test}
1616
"trace-tef" {>= "0.11" & with-test}

src/lwt/dune

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
(library
22
(name moonpool_lwt)
33
(public_name moonpool-lwt)
4-
(optional)
54
(enabled_if
6-
(>= %{ocaml_version} 5.0))
5+
(and
6+
(>= %{ocaml_version} 5.0)
7+
%{lib-available:lwt}))
78
(modules moonpool_lwt types_)
89
(libraries
910
(re_export moonpool)

0 commit comments

Comments
 (0)