From d56d385e0f8d452cb75ea9b384e02cec0fdeefcc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 May 2024 16:06:46 +0000 Subject: [PATCH] Bump ratatui from 0.26.2 to 0.26.3 Bumps [ratatui](https://github.com/ratatui-org/ratatui) from 0.26.2 to 0.26.3. - [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.26.3) --- updated-dependencies: - dependency-name: ratatui dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 +++++++++++++--------- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8ac5f720..df354359 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1067,12 +1067,6 @@ dependencies = [ "hashbrown 0.14.3", ] -[[package]] -name = "indoc" -version = "2.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8" - [[package]] name = "inout" version = "0.1.3" @@ -1613,15 +1607,14 @@ dependencies = [ [[package]] name = "ratatui" -version = "0.26.2" +version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a564a852040e82671dc50a37d88f3aa83bbc690dfc6844cfe7a2591620206a80" +checksum = "f44c9e68fd46eda15c646fbb85e1040b657a58cdc8c98db1d97a55930d991eef" dependencies = [ "bitflags 2.4.2", "cassowary", "compact_str", "crossterm", - "indoc", "itertools", "lru", "paste", @@ -1629,6 +1622,7 @@ dependencies = [ "stability", "strum", "unicode-segmentation", + "unicode-truncate", "unicode-width", ] @@ -2538,6 +2532,16 @@ version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" +[[package]] +name = "unicode-truncate" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a5fbabedabe362c618c714dbefda9927b5afc8e2a8102f47f081089a9019226" +dependencies = [ + "itertools", + "unicode-width", +] + [[package]] name = "unicode-width" version = "0.1.12" diff --git a/Cargo.toml b/Cargo.toml index 46ffd398..d3b48bbc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ lazy_static = "1.4.0" libc = "0.2.154" log = "0.4.21" nostr-sdk = "0.27" -ratatui = { version = "0.26.2", features = ["serde", "macros"] } +ratatui = { version = "0.26.3", features = ["serde", "macros"] } regex = "1.10.4" serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.117"