From 41ad0a0d071b45806e7ed816a2bc3cd26c6dd16f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 17:32:53 +0000 Subject: [PATCH] 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 | 40 +++++++++++++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 36 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f88ef84..dacbe6c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1159,6 +1159,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.10" @@ -1444,7 +1453,7 @@ dependencies = [ "log", "nostr-sdk", "pretty_assertions", - "ratatui", + "ratatui 0.27.0", "regex", "rstest", "serde", @@ -1790,12 +1799,33 @@ dependencies = [ "cassowary", "compact_str", "crossterm", - "itertools", + "itertools 0.12.1", + "lru", + "paste", + "stability", + "strum", + "unicode-segmentation", + "unicode-truncate", + "unicode-width", +] + +[[package]] +name = "ratatui" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d16546c5b5962abf8ce6e2881e722b4e0ae3b6f1a08a26ae3573c55853ca68d3" +dependencies = [ + "bitflags 2.4.2", + "cassowary", + "compact_str", + "crossterm", + "itertools 0.13.0", "lru", "paste", "serde", "stability", "strum", + "strum_macros", "unicode-segmentation", "unicode-truncate", "unicode-width", @@ -2708,7 +2738,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3e38ced1f941a9cfc923fbf2fe6858443c42cc5220bfd35bdd3648371e7bd8e" dependencies = [ "crossterm", - "ratatui", + "ratatui 0.27.0", "unicode-width", ] @@ -2718,7 +2748,7 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a872e33bd14ffe44e0332bab251ce58846e3a9a9d6e4a6929ce8f7f7d7d137d6" dependencies = [ - "ratatui", + "ratatui 0.26.3", ] [[package]] @@ -2796,7 +2826,7 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a5fbabedabe362c618c714dbefda9927b5afc8e2a8102f47f081089a9019226" dependencies = [ - "itertools", + "itertools 0.12.1", "unicode-width", ] diff --git a/Cargo.toml b/Cargo.toml index dbc71bf..d8cb5e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ lazy_static = "1.5.0" libc = "0.2.155" log = "0.4.21" nostr-sdk = "0.29.0" -ratatui = { version = "0.26.3", features = ["serde", "macros"] } +ratatui = { version = "0.27.0", features = ["serde", "macros"] } regex = "1.10.5" serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.117"