diff --git a/Cargo.lock b/Cargo.lock index 607102f..15dc86f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,7 +156,7 @@ dependencies = [ "bitflags 1.3.2", "strsim 0.8.0", "textwrap", - "unicode-width", + "unicode-width 0.1.14", "vec_map", ] @@ -1167,23 +1167,23 @@ dependencies = [ [[package]] name = "ratatui" -version = "0.28.1" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdef7f9be5c0122f890d58bdf4d964349ba6a6161f705907526d891efabba57d" +checksum = "eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b" dependencies = [ "bitflags 2.6.0", "cassowary", "compact_str", "crossterm", + "indoc", "instability", "itertools", "lru", "paste", "strum", - "strum_macros", "unicode-segmentation", "unicode-truncate", - "unicode-width", + "unicode-width 0.2.0", ] [[package]] @@ -1674,7 +1674,7 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" dependencies = [ - "unicode-width", + "unicode-width 0.1.14", ] [[package]] @@ -1831,12 +1831,12 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "tui-input" -version = "0.10.1" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd137780d743c103a391e06fe952487f914b299a4fe2c3626677f6a6339a7c6b" +checksum = "e5d1733c47f1a217b7deff18730ff7ca4ecafc5771368f715ab072d679a36114" dependencies = [ "ratatui", - "unicode-width", + "unicode-width 0.2.0", ] [[package]] @@ -1879,7 +1879,7 @@ checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf" dependencies = [ "itertools", "unicode-segmentation", - "unicode-width", + "unicode-width 0.1.14", ] [[package]] @@ -1888,6 +1888,12 @@ version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" +[[package]] +name = "unicode-width" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" + [[package]] name = "untrusted" version = "0.9.0" diff --git a/Cargo.toml b/Cargo.toml index 8f2ab9b..78cadbe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,14 +11,14 @@ crossterm = { version = "0.28.1", optional = true} once_cell = { version = "1.20.2" } openssh = { version = "0.11.4", features = ["native-mux"], default-features = false, optional = true} paste = { version = "1.0.15", optional = true } -ratatui = { version = "0.28.1", optional = true} +ratatui = { version = "0.29.0", optional = true} reqwest = { version = "0.12.12", features = ["blocking", "json"], optional = true } serde = { version = "1.0.217", features = ["derive"], optional = true } serde_json = { version = "1.0.134", optional = true} structopt = { version = "0.3.26", optional = true} tokio = { version = "1.42.0", features = ["rt"], optional = true} # ratatui/crossterm dependency version must match with musichhoard's ratatui/crossterm -tui-input = { version = "0.10.1", optional = true } +tui-input = { version = "0.11.1", optional = true } url = { version = "2.5.4" } uuid = { version = "1.11.0" }