From 1f0bc8b7aa0cda00f8e46b936eb903fed2e5330f Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 27 Jul 2023 22:13:24 +0000 Subject: [PATCH] fix(deps): update rust crate ratatui to 0.22.0 --- Cargo.lock | 14 +++++++++++--- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ec103423..00d7e781 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1541,6 +1541,12 @@ dependencies = [ "windows-targets", ] +[[package]] +name = "paste" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" + [[package]] name = "pem" version = "1.1.1" @@ -1667,13 +1673,15 @@ dependencies = [ [[package]] name = "ratatui" -version = "0.21.0" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce841e0486e7c2412c3740168ede33adeba8e154a15107b879d8162d77c7174e" +checksum = "8285baa38bdc9f879d92c0e37cb562ef38aa3aeefca22b3200186bc39242d3d5" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.3.3", "cassowary", "crossterm", + "indoc", + "paste", "unicode-segmentation", "unicode-width", ] diff --git a/Cargo.toml b/Cargo.toml index 5c0858f5..af0aeb17 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ crossterm = "0.26.1" derivative = "2.2" enum_dispatch = "0.3" fuzzy-matcher = "0.3" -ratatui = "0.21.0" +ratatui = "0.22.0" rayon = "1.7" unicode-segmentation = "1.10" unicode-width = "0.1"