From 0fe327edc45371430ff1984803257c8b57b43e70 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 10:17:05 +0000 Subject: [PATCH] build(deps): bump ratatui from 0.26.3 to 0.27.0 Bumps [ratatui](https://github.com/ratatui-org/ratatui) from 0.26.3 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.3...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 | 16 ++++------------ apps/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5ebe95c..2ca81ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -736,15 +736,6 @@ dependencies = [ "either", ] -[[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" @@ -1020,19 +1011,20 @@ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" [[package]] name = "ratatui" -version = "0.26.3" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f44c9e68fd46eda15c646fbb85e1040b657a58cdc8c98db1d97a55930d991eef" +checksum = "d16546c5b5962abf8ce6e2881e722b4e0ae3b6f1a08a26ae3573c55853ca68d3" dependencies = [ "bitflags", "cassowary", "compact_str", "crossterm", - "itertools 0.12.1", + "itertools 0.13.0", "lru", "paste", "stability", "strum", + "strum_macros", "unicode-segmentation", "unicode-truncate", "unicode-width", diff --git a/apps/Cargo.toml b/apps/Cargo.toml index 94acc76..2a57fba 100644 --- a/apps/Cargo.toml +++ b/apps/Cargo.toml @@ -19,7 +19,7 @@ rsadsb_common = { path = "../rsadsb_common" } hex = "0.4.0" crossterm = "0.27.0" clap = { version = "4.4.7", features = ["color", "derive", "wrap_help"] } -ratatui = "0.26.1" +ratatui = "0.27.0" gpsd_proto = "1.0.0" tracing = "0.1.40" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }