From 784f8c73443d7ca52fe92e2201111c4aa20580e7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Jul 2024 22:16:31 +0000 Subject: [PATCH] Bump ratatui from 0.26.2 to 0.27.0 Bumps [ratatui](https://github.com/ratatui-org/ratatui) from 0.26.2 to 0.27.0. - [Release notes](https://github.com/ratatui-org/ratatui/releases) - [Changelog](https://github.com/ratatui-org/ratatui/blob/main/CHANGELOG.md) - [Commits](https://github.com/ratatui-org/ratatui/compare/v0.26.2...v0.27.0) --- updated-dependencies: - dependency-name: ratatui dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 44 +++++--------------------------------------- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 40 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 15077e45..ee458eec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -249,12 +249,6 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" -[[package]] -name = "indoc" -version = "2.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5" - [[package]] name = "ioctl-rs" version = "0.1.6" @@ -270,15 +264,6 @@ version = "1.70.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" -[[package]] -name = "itertools" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" -dependencies = [ - "either", -] - [[package]] name = "itertools" version = "0.13.0" @@ -452,26 +437,6 @@ dependencies = [ "proc-macro2", ] -[[package]] -name = "ratatui" -version = "0.26.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a564a852040e82671dc50a37d88f3aa83bbc690dfc6844cfe7a2591620206a80" -dependencies = [ - "bitflags 2.5.0", - "cassowary", - "compact_str", - "crossterm", - "indoc", - "itertools 0.12.1", - "lru", - "paste", - "stability", - "strum", - "unicode-segmentation", - "unicode-width", -] - [[package]] name = "ratatui" version = "0.27.0" @@ -481,7 +446,8 @@ dependencies = [ "bitflags 2.5.0", "cassowary", "compact_str", - "itertools 0.13.0", + "crossterm", + "itertools", "lru", "paste", "stability", @@ -706,7 +672,7 @@ dependencies = [ "ego-tree", "oneshot", "portable-pty", - "ratatui 0.26.2", + "ratatui", "tui-term", ] @@ -716,7 +682,7 @@ version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fac7538a3b9d5e92739253323e169ed25f005669c0e7f9d98f50f697fcada4e8" dependencies = [ - "ratatui 0.27.0", + "ratatui", "vt100", ] @@ -738,7 +704,7 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf" dependencies = [ - "itertools 0.13.0", + "itertools", "unicode-segmentation", "unicode-width", ] diff --git a/Cargo.toml b/Cargo.toml index d5a18c33..77c8976c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,5 +9,5 @@ crossterm = "0.27.0" ego-tree = "0.6.2" oneshot = "0.1.8" portable-pty = "0.8.1" -ratatui = "0.26.2" +ratatui = "0.27.0" tui-term = "0.1.12"