From a2f3dc451436c577fd1638206eaaf8b0575809d6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 08:41:48 +0000 Subject: [PATCH] chore: Bump crossterm from 0.26.1 to 0.27.0 (#212) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps crossterm from 0.26.1 to 0.27.0. Release notes Sourced from crossterm's releases. 0.27.0 Version 0.27 Added ⭐ Add NO_COLOR support (https://no-color.org/) Add option to force overwrite NO_COLOR (#802) Add support for scroll left/right events on windows and unix systems (#788). Add window_size function to fetch pixel width/height of screen for more sophisticated rendering in terminals. Add support for deserializing hex color strings to `Color`` e.g #fffff. Changes Make the events module an optional feature events (to make crossterm more lightweight) (#776) Breaking ⚠️ Set minimum rustc version to 1.58 (#798) Change all error types to std::io::Result (#765) @​Gronis, @​kevin-vigor, @​Wilfred, @​benjajaja, @​blt-r, @​Piturnah, @​kdheepak, @​DeathVenom54, @​senekor, @​joseluis, @​gibbz00, @​lesleyrs, @​jhartzell42 Changelog Sourced from crossterm's changelog. Version 0.27 Added ⭐ Add NO_COLOR support (https://no-color.org/) Add option to force overwrite NO_COLOR (#802) Add support for scroll left/right events on windows and unix systems (#788). Add window_size function to fetch pixel width/height of screen for more sophisticated rendering in terminals. Add support for deserializing hex color strings to `Color`` e.g #fffff. Changes Make the events module an optional feature events (to make crossterm more lightweight) (#776) Breaking ⚠️ Set minimum rustc version to 1.58 (#798) Change all error types to std::io::Result (#765) Commits 9a6d740 0.27.0 9fb2e0d Update dependencies (#809) 8e25400 Fix format (#808) e4ffda6 Update CHANGELOG.md f3c0754 Add style::force_color_output() API to override NO_COLOR. (#802) 00f7d06 [testing] serial testing perserving terminal (#791) 55739aa Add support for scrolling left and right. (#788) db443b0 Specify and document MSRV for 0.26 (#798) 10c54b0 Add window_size() for unix (#790) ff01914 Parse hex colour codes in serde::de::Deserialize (#801) Additional commits viewable in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot merge will merge this PR after your CI passes on it @dependabot squash and merge will squash and merge this PR after your CI passes on it @dependabot cancel merge will cancel a previously requested merge and block automerging @dependabot reopen will reopen this PR if it is closed @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually @dependabot show ignore conditions will show all of the ignore conditions of the specified dependency @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) --- Cargo.lock | 14 +++++++------- fatigue/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2f8a0e5..366e95c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -321,11 +321,11 @@ 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", + "bitflags 2.4.1", "crossterm_winapi", "libc", "mio", @@ -337,9 +337,9 @@ dependencies = [ [[package]] name = "crossterm_winapi" -version = "0.9.0" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c" +checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" dependencies = [ "winapi", ] @@ -1887,9 +1887,9 @@ dependencies = [ [[package]] name = "signal-hook" -version = "0.3.13" +version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "647c97df271007dcea485bb74ffdb57f2e683f1306c854f468a0c244badabf2d" +checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" dependencies = [ "libc", "signal-hook-registry", diff --git a/fatigue/Cargo.toml b/fatigue/Cargo.toml index 81b4441..998789d 100644 --- a/fatigue/Cargo.toml +++ b/fatigue/Cargo.toml @@ -13,7 +13,7 @@ license = "Apache-2.0" [dependencies] clap = { version = "4.1.9", features = ["derive"] } console = "0.15.7" -crossterm = "0.26.1" +crossterm = "0.27.0" figment = { version = "0.10.12", features = ["env", "yaml"] } humantime = "2.1.0" itertools = "0.11.0"