From 34668f135ad358f325e8efd81503c1e933bf1c06 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Dec 2023 15:39:32 +0000 Subject: [PATCH] cargo: bump the cargo-dependencies group with 2 updates Bumps the cargo-dependencies group with 2 updates: [anyhow](https://github.com/dtolnay/anyhow) and [crossterm](https://github.com/crossterm-rs/crossterm). Updates `anyhow` from 1.0.76 to 1.0.77 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.76...1.0.77) Updates `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: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-dependencies - dependency-name: crossterm dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-dependencies ... Signed-off-by: dependabot[bot] --- Cargo.lock | 26 +++++--------------------- Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 398230950..ebbca40ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -97,9 +97,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.76" +version = "1.0.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59d2a3357dde987206219e78ecfbbb6e8dad06cbb65292758d3270e6254f7355" +checksum = "c9d19de80eff169429ac1e9f48fffb163916b448a44e8e046186232046d9e1f9" [[package]] name = "arc-swap" @@ -582,22 +582,6 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "crossterm" -version = "0.26.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a84cda67535339806297f1b331d6dd6320470d2a0fe65381e79ee9e156dd3d13" -dependencies = [ - "bitflags 1.3.2", - "crossterm_winapi", - "libc", - "mio", - "parking_lot", - "signal-hook", - "signal-hook-mio", - "winapi", -] - [[package]] name = "crossterm" version = "0.27.0" @@ -1609,7 +1593,7 @@ dependencies = [ "clap_mangen", "config", "criterion", - "crossterm 0.26.1", + "crossterm", "dirs", "esl01-renderdag", "futures 0.3.30", @@ -2334,7 +2318,7 @@ checksum = "2e2e4cd95294a85c3b4446e63ef054eea43e0205b1fd60120c16b74ff7ff96ad" dependencies = [ "bitflags 2.4.0", "cassowary", - "crossterm 0.27.0", + "crossterm", "indoc", "itertools 0.11.0", "paste", @@ -2545,7 +2529,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e45342a3f095f3b895b4958332c25e7cc2e0ad20caca84c0f22df8f39d279a24" dependencies = [ "cassowary", - "crossterm 0.27.0", + "crossterm", "num-traits", "ratatui", "serde", diff --git a/Cargo.toml b/Cargo.toml index 9c7961ebf..cfd9fa5c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ categories = ["version-control", "development-tools"] keywords = ["VCS", "DVCS", "SCM", "Git", "Mercurial"] [workspace.dependencies] -anyhow = "1.0.76" +anyhow = "1.0.77" assert_cmd = "2.0.8" assert_matches = "1.5.0" async-trait = "0.1.75" @@ -34,7 +34,7 @@ chrono = { version = "0.4.31", default-features = false, features = [ ] } config = { version = "0.13.4", default-features = false, features = ["toml"] } criterion = "0.5.1" -crossterm = { version = "0.26", default-features = false } +crossterm = { version = "0.27", default-features = false } digest = "0.10.7" dirs = "5.0.1" either = "1.9.0"