Skip to content

Commit 1ab32b8

Browse files
authored
chore: fix dune-rpc-lwt bounds (#10373)
The problem is fixed by updating lwt. Signed-off-by: Etienne Millon <[email protected]>
1 parent 2a4a5bf commit 1ab32b8

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

dune-project

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,9 @@ understood by dune language."))
154154
(depends
155155
(dune-rpc (= :version))
156156
(csexp (>= 1.5.0))
157-
(lwt (>= 5.3.0))
157+
(lwt (>= 5.6.0))
158158
base-unix)
159-
(description "Specialization of dune-rpc to Lwt")
160-
(conflicts
161-
(result (< 1.5))))
159+
(description "Specialization of dune-rpc to Lwt"))
162160

163161
(package
164162
(name dyn)

dune-rpc-lwt.opam

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,10 @@ depends: [
1212
"dune" {>= "3.12"}
1313
"dune-rpc" {= version}
1414
"csexp" {>= "1.5.0"}
15-
"lwt" {>= "5.3.0"}
15+
"lwt" {>= "5.6.0"}
1616
"base-unix"
1717
"odoc" {with-doc}
1818
]
19-
conflicts: [
20-
"result" {< "1.5"}
21-
]
2219
dev-repo: "git+https://github.com/ocaml/dune.git"
2320
build: [
2421
["dune" "subst"] {dev}

0 commit comments

Comments
 (0)