From 2bbca965ac3eb98c13a4d7caf40fa55d77dd889b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 10 Apr 2025 14:43:12 +0000 Subject: [PATCH] build(deps): bump the cargo group with 2 updates Bumps the cargo group with 2 updates: [tokio](https://github.com/tokio-rs/tokio) and [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam). Updates `tokio` from 1.44.1 to 1.44.2 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.44.1...tokio-1.44.2) Updates `crossbeam-channel` from 0.5.14 to 0.5.15 - [Release notes](https://github.com/crossbeam-rs/crossbeam/releases) - [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md) - [Commits](https://github.com/crossbeam-rs/crossbeam/compare/crossbeam-channel-0.5.14...crossbeam-channel-0.5.15) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.44.2 dependency-type: direct:production dependency-group: cargo - dependency-name: crossbeam-channel dependency-version: 0.5.15 dependency-type: indirect dependency-group: cargo ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- crates/bin/Cargo.toml | 2 +- crates/binstalk-downloader/Cargo.toml | 2 +- crates/binstalk-fetchers/Cargo.toml | 2 +- crates/binstalk-git-repo-api/Cargo.toml | 2 +- crates/binstalk-registry/Cargo.toml | 2 +- crates/binstalk/Cargo.toml | 2 +- crates/detect-targets/Cargo.toml | 4 ++-- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b241aea8..b6750753 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -842,9 +842,9 @@ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" [[package]] name = "crossbeam-channel" -version = "0.5.14" +version = "0.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" dependencies = [ "crossbeam-utils", ] @@ -4393,9 +4393,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.44.1" +version = "1.44.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a" +checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48" dependencies = [ "backtrace", "bytes", diff --git a/crates/bin/Cargo.toml b/crates/bin/Cargo.toml index fd5c42b3..db6adeae 100644 --- a/crates/bin/Cargo.toml +++ b/crates/bin/Cargo.toml @@ -40,7 +40,7 @@ strum = "0.27.0" strum_macros = "0.27.0" supports-color = "3.0.0" tempfile = "3.5.0" -tokio = { version = "1.44.0", features = ["rt-multi-thread", "signal"], default-features = false } +tokio = { version = "1.44.2", features = ["rt-multi-thread", "signal"], default-features = false } tracing = { version = "0.1.39", default-features = false } tracing-core = "0.1.32" tracing-log = { version = "0.2.0", default-features = false } diff --git a/crates/binstalk-downloader/Cargo.toml b/crates/binstalk-downloader/Cargo.toml index c89c539e..b9029c54 100644 --- a/crates/binstalk-downloader/Cargo.toml +++ b/crates/binstalk-downloader/Cargo.toml @@ -53,7 +53,7 @@ serde_json = { version = "1.0.107", optional = true } tar = { package = "binstall-tar", version = "0.4.39" } tempfile = "3.5.0" thiserror = "2.0.11" -tokio = { version = "1.44.0", features = [ +tokio = { version = "1.44.2", features = [ "macros", "rt-multi-thread", "sync", diff --git a/crates/binstalk-fetchers/Cargo.toml b/crates/binstalk-fetchers/Cargo.toml index 4d525049..22fa0c8c 100644 --- a/crates/binstalk-fetchers/Cargo.toml +++ b/crates/binstalk-fetchers/Cargo.toml @@ -26,7 +26,7 @@ minisign-verify = "0.2.1" once_cell = "1.18.0" strum = "0.27.0" thiserror = "2.0.11" -tokio = { version = "1.44.0", features = [ +tokio = { version = "1.44.2", features = [ "rt", "sync", ], default-features = false } diff --git a/crates/binstalk-git-repo-api/Cargo.toml b/crates/binstalk-git-repo-api/Cargo.toml index 1ce83fb4..eb98d142 100644 --- a/crates/binstalk-git-repo-api/Cargo.toml +++ b/crates/binstalk-git-repo-api/Cargo.toml @@ -19,7 +19,7 @@ serde = { version = "1.0.163", features = ["derive"] } serde-tuple-vec-map = "1.0.1" serde_json = { version = "1.0.107" } thiserror = "2.0.11" -tokio = { version = "1.44.0", features = ["sync"], default-features = false } +tokio = { version = "1.44.2", features = ["sync"], default-features = false } tracing = "0.1.39" url = "2.5.4" zeroize = "1.8.1" diff --git a/crates/binstalk-registry/Cargo.toml b/crates/binstalk-registry/Cargo.toml index 4c6b879d..2c3e67b5 100644 --- a/crates/binstalk-registry/Cargo.toml +++ b/crates/binstalk-registry/Cargo.toml @@ -30,7 +30,7 @@ sha2 = "0.10.7" simple-git = { version = "0.2.4", optional = true } tempfile = "3.5.0" thiserror = "2.0.11" -tokio = { version = "1.44.0", features = [ +tokio = { version = "1.44.2", features = [ "rt", "sync", ], default-features = false } diff --git a/crates/binstalk/Cargo.toml b/crates/binstalk/Cargo.toml index 3c26c8a7..0e17e0f8 100644 --- a/crates/binstalk/Cargo.toml +++ b/crates/binstalk/Cargo.toml @@ -36,7 +36,7 @@ strum = "0.27.0" target-lexicon = { version = "0.13.0", features = ["std"] } tempfile = "3.5.0" thiserror = "2.0.11" -tokio = { version = "1.44.0", features = [ +tokio = { version = "1.44.2", features = [ "rt", "process", "sync", diff --git a/crates/detect-targets/Cargo.toml b/crates/detect-targets/Cargo.toml index cfc01aaa..bd10f567 100644 --- a/crates/detect-targets/Cargo.toml +++ b/crates/detect-targets/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" license = "Apache-2.0 OR MIT" [dependencies] -tokio = { version = "1.44.0", features = [ +tokio = { version = "1.44.2", features = [ "rt", "process", "sync", @@ -35,7 +35,7 @@ windows-sys = { version = "0.59.0", features = [ ] } [dev-dependencies] -tokio = { version = "1.44.0", features = ["macros"], default-features = false } +tokio = { version = "1.44.2", features = ["macros"], default-features = false } [package.metadata.binstall] pkg-url = "{ repo }/releases/download/v{ version }/cargo-binstall-{ target }.full.{ archive-format }"