diff --git a/Cargo.lock b/Cargo.lock index de1daf662b5..399b6086318 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4028,6 +4028,15 @@ dependencies = [ "zerocopy 0.6.4", ] +[[package]] +name = "lru" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efa59af2ddfad1854ae27d75009d538d0998b4b2fd47083e743ac1a10e46c60" +dependencies = [ + "hashbrown 0.14.2", +] + [[package]] name = "lru-cache" version = "0.1.2" @@ -6950,12 +6959,29 @@ name = "ratatui" version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2e2e4cd95294a85c3b4446e63ef054eea43e0205b1fd60120c16b74ff7ff96ad" +dependencies = [ + "bitflags 2.4.0", + "cassowary", + "indoc 2.0.3", + "itertools 0.11.0", + "paste", + "strum", + "unicode-segmentation", + "unicode-width", +] + +[[package]] +name = "ratatui" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ebc917cfb527a566c37ecb94c7e3fd098353516fb4eb6bea17015ade0182425" dependencies = [ "bitflags 2.4.0", "cassowary", "crossterm", "indoc 2.0.3", "itertools 0.11.0", + "lru", "paste", "strum", "unicode-segmentation", @@ -9515,7 +9541,7 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f01f9172fb8f4f925fb1e259c2f411be14af031ab8b35d517fd05cb78c0784d5" dependencies = [ - "ratatui", + "ratatui 0.23.0", "unicode-width", ] @@ -9563,7 +9589,7 @@ version = "1.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ - "cfg-if 0.1.10", + "cfg-if 1.0.0", "rand 0.8.5", "static_assertions", ] @@ -10112,7 +10138,7 @@ dependencies = [ "once_cell", "owo-colors", "proptest", - "ratatui", + "ratatui 0.24.0", "reqwest", "rpassword", "serde", diff --git a/Cargo.toml b/Cargo.toml index 0e139465339..12a27461b0e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -295,7 +295,7 @@ propolis-server = { git = "https://github.com/oxidecomputer/propolis", rev = "40 proptest = "1.3.1" quote = "1.0" rand = "0.8.5" -ratatui = "0.23.0" +ratatui = "0.24.0" rayon = "1.8" rcgen = "0.11.3" ref-cast = "1.0"