From a475daf72e5a29da1e6363c43e05e26a5f7023a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 26 May 2024 21:02:21 +0300 Subject: [PATCH] chore: Bump termion from 3.0.0 to 4.0.0 (#149) Bumps termion from 3.0.0 to 4.0.0. --- updated-dependencies: - dependency-name: termion dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 16 ++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b08c639..8f6106c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -339,7 +339,7 @@ dependencies = [ "copypasta-ext", "enum-iterator", "ratatui", - "termion", + "termion 4.0.0", "unicode-width", ] @@ -527,7 +527,7 @@ dependencies = [ "paste", "stability", "strum", - "termion", + "termion 3.0.0", "unicode-segmentation", "unicode-truncate", "unicode-width", @@ -686,6 +686,18 @@ dependencies = [ "redox_termios", ] +[[package]] +name = "termion" +version = "4.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7af3fa9183465b9af93355585a6b1e24cc2ff25938b52aa6956f647b6490257a" +dependencies = [ + "libc", + "libredox", + "numtoa", + "redox_termios", +] + [[package]] name = "unicode-ident" version = "1.0.12" diff --git a/Cargo.toml b/Cargo.toml index 39dee15..6dd35ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ edition = "2021" ratatui = { version = "0.26.3", default-features = false, features = [ "termion", ] } -termion = "3.0.0" +termion = "4.0.0" bytesize = "1.3.0" unicode-width = "0.1.11" colorsys = "0.6.7"