From 0559cded71a8b8538f59c5cd358e955f4aea9cb7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Aug 2023 04:31:26 +0000 Subject: [PATCH] chore(deps): Bump crossterm from 0.26.1 to 0.27.0 Bumps [crossterm](https://github.com/crossterm-rs/crossterm) from 0.26.1 to 0.27.0. - [Release notes](https://github.com/crossterm-rs/crossterm/releases) - [Changelog](https://github.com/crossterm-rs/crossterm/blob/master/CHANGELOG.md) - [Commits](https://github.com/crossterm-rs/crossterm/compare/0.26.1...0.27.0) --- updated-dependencies: - dependency-name: crossterm dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 ++++++-------- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fc7f30468a3f7..37d64a5755aa4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2464,19 +2464,17 @@ dependencies = [ [[package]] name = "crossterm" -version = "0.26.1" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a84cda67535339806297f1b331d6dd6320470d2a0fe65381e79ee9e156dd3d13" +checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" dependencies = [ - "bitflags 1.3.2", - "crossterm_winapi", + "bitflags 2.3.2", "futures-core", "libc", "mio", "parking_lot", "signal-hook", "signal-hook-mio", - "winapi", ] [[package]] @@ -7910,9 +7908,9 @@ dependencies = [ [[package]] name = "signal-hook" -version = "0.3.14" +version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d" +checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" dependencies = [ "libc", "signal-hook-registry", @@ -9526,7 +9524,7 @@ dependencies = [ "colored", "console-subscriber", "criterion", - "crossterm 0.26.1", + "crossterm 0.27.0", "csv", "derivative", "dirs-next", diff --git a/Cargo.toml b/Cargo.toml index ae72cfa7c25ac..5c0278d789a83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -226,7 +226,7 @@ async-graphql-warp = { version = "6.0.0", default-features = false, optional = t itertools = { version = "0.11.0", default-features = false, optional = true } # API client -crossterm = { version = "0.26.1", default-features = false, features = ["event-stream"], optional = true } +crossterm = { version = "0.27.0", default-features = false, features = ["event-stream"], optional = true } num-format = { version = "0.4.4", default-features = false, features = ["with-num-bigint"], optional = true } number_prefix = { version = "0.4.0", default-features = false, features = ["std"], optional = true } tui = { version = "0.19.0", optional = true, default-features = false, features = ["crossterm"] }