diff --git a/dune-project b/dune-project index 0d75654..8e2fb50 100644 --- a/dune-project +++ b/dune-project @@ -19,7 +19,7 @@ (name nottui) (synopsis "UI toolkit for the terminal built on top of Notty and Lwd") (documentation "https://let-def.github.io/lwd/doc") - (depends (lwd (>= 0.2)) notty)) + (depends (lwd (>= 0.2)) (notty (>= 0.2)))) (package (name tyxml-lwd) @@ -37,10 +37,10 @@ (name nottui-pretty) (synopsis "A pretty-printer based on PPrint rendering UIs") (documentation "https://let-def.github.io/lwd/doc") - (depends notty (nottui (>= 0.2)))) + (depends (nottui (>= 0.2)) (notty (>= 0.2)))) (package (name nottui-lwt) (synopsis "Run Nottui UIs in Lwt") (documentation "https://let-def.github.io/lwd/doc") - (depends notty lwt (nottui (>= 0.2)))) + (depends lwt (nottui (>= 0.2)) (notty (>= 0.2)))) diff --git a/nottui-lwt.opam b/nottui-lwt.opam index c94cbc4..004bf42 100644 --- a/nottui-lwt.opam +++ b/nottui-lwt.opam @@ -9,9 +9,9 @@ doc: "https://let-def.github.io/lwd/doc" bug-reports: "https://github.com/let-def/lwd/issues" depends: [ "dune" {>= "2.7"} - "notty" "lwt" "nottui" {>= "0.2"} + "notty" {>= "0.2"} "odoc" {with-doc} ] build: [ diff --git a/nottui-pretty.opam b/nottui-pretty.opam index 3978bf8..27e4329 100644 --- a/nottui-pretty.opam +++ b/nottui-pretty.opam @@ -9,8 +9,8 @@ doc: "https://let-def.github.io/lwd/doc" bug-reports: "https://github.com/let-def/lwd/issues" depends: [ "dune" {>= "2.7"} - "notty" "nottui" {>= "0.2"} + "notty" {>= "0.2"} "odoc" {with-doc} ] build: [ diff --git a/nottui.opam b/nottui.opam index 327b46f..c8b1597 100644 --- a/nottui.opam +++ b/nottui.opam @@ -10,7 +10,7 @@ bug-reports: "https://github.com/let-def/lwd/issues" depends: [ "dune" {>= "2.7"} "lwd" {>= "0.2"} - "notty" + "notty" {>= "0.2"} "odoc" {with-doc} ] build: [