diff --git a/Cargo.lock b/Cargo.lock index 266ed837..922ae3cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -51,7 +51,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "00c4af0bef1b514c9b6a32a773caf604c1390fa7913f4eaa23bfe76f251d6a42" dependencies = [ "nom", - "ratatui", + "ratatui 0.28.1", "simdutf8", "smallvec", "thiserror", @@ -422,6 +422,12 @@ dependencies = [ "hashbrown", ] +[[package]] +name = "indoc" +version = "2.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5" + [[package]] name = "instability" version = "0.3.2" @@ -509,7 +515,7 @@ dependencies = [ "oneshot", "portable-pty", "rand", - "ratatui", + "ratatui 0.29.0", "temp-dir", "tree-sitter-bash", "tree-sitter-highlight", @@ -750,7 +756,6 @@ dependencies = [ "bitflags 2.6.0", "cassowary", "compact_str", - "crossterm", "instability", "itertools", "lru", @@ -762,6 +767,27 @@ dependencies = [ "unicode-width 0.1.14", ] +[[package]] +name = "ratatui" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b" +dependencies = [ + "bitflags 2.6.0", + "cassowary", + "compact_str", + "crossterm", + "indoc", + "instability", + "itertools", + "lru", + "paste", + "strum", + "unicode-segmentation", + "unicode-truncate", + "unicode-width 0.2.0", +] + [[package]] name = "redox_syscall" version = "0.5.4" @@ -1134,7 +1160,7 @@ version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d07f0233f0d4795d2dc6663cfc3ce56b87bebcee66d6bcc088aa6aff5c072361" dependencies = [ - "ratatui", + "ratatui 0.28.1", "vt100", ] diff --git a/tui/Cargo.toml b/tui/Cargo.toml index 40d3c357..f86c43f1 100644 --- a/tui/Cargo.toml +++ b/tui/Cargo.toml @@ -20,7 +20,7 @@ crossterm = "0.28.1" ego-tree = { workspace = true } oneshot = "0.1.8" portable-pty = "0.8.1" -ratatui = "0.28.1" +ratatui = "0.29.0" tui-term = "0.1.12" temp-dir = "0.1.14" unicode-width = "0.2.0"