From 5e65b1eb8d697d215ae625c926f5df65986c422a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Jun 2024 07:48:28 +0000 Subject: [PATCH] chore(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 | 38 ++++++++++++++++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 35 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ffe5a03..f8699ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -544,7 +544,7 @@ dependencies = [ "clap_mangen", "crossterm", "nvd_cve", - "ratatui", + "ratatui 0.27.0", "textwrap 0.16.1", "thiserror", "tui-input", @@ -906,6 +906,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.11" @@ -1280,11 +1289,32 @@ 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.5.0", + "cassowary", + "compact_str", + "crossterm", + "itertools 0.13.0", "lru", "paste", "stability", "strum", + "strum_macros", "unicode-segmentation", "unicode-truncate", "unicode-width", @@ -1935,7 +1965,7 @@ checksum = "0c6a4e5f11ae9d1561ca853c1da787948d03054cc03ca72dca0462496d2b5f7c" dependencies = [ "derive-getters", "derive_setters", - "ratatui", + "ratatui 0.26.3", ] [[package]] @@ -1977,7 +2007,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 e183823..69e2fc7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ path = "src/bin/mangen.rs" [dependencies] nvd_cve = "0.2.0" -ratatui = "0.26.3" +ratatui = "0.27.0" crossterm = "0.27.0" thiserror = "1.0.60" textwrap = "0.16.1"