From fb5ceb156f878fedfec701092fe7bdf9c6c7ab55 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 31 Aug 2024 02:00:18 +0000 Subject: [PATCH] build(deps): bump the deps group with 2 updates Bumps the deps group with 2 updates: [tokio](https://github.com/tokio-rs/tokio) and [minisign-verify](https://github.com/jedisct1/rust-minisign-verify). Updates `tokio` from 1.39.3 to 1.40.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.39.3...tokio-1.40.0) Updates `minisign-verify` from 0.2.1 to 0.2.2 - [Commits](https://github.com/jedisct1/rust-minisign-verify/compare/0.2.1...0.2.2) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: minisign-verify dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- crates/bin/Cargo.toml | 2 +- crates/binstalk-downloader/Cargo.toml | 2 +- crates/binstalk-fetchers/Cargo.toml | 4 ++-- 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, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 70999804..027d3cc2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2654,9 +2654,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "minisign-verify" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "933dca44d65cdd53b355d0b73d380a2ff5da71f87f036053188bf1eab6a19881" +checksum = "a05b5d0594e0cb1ad8cee3373018d2b84e25905dc75b2468114cc9a8e86cfc20" [[package]] name = "miniz_oxide" @@ -3815,9 +3815,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.39.3" +version = "1.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5" +checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" dependencies = [ "backtrace", "bytes", diff --git a/crates/bin/Cargo.toml b/crates/bin/Cargo.toml index 667868d0..715a1944 100644 --- a/crates/bin/Cargo.toml +++ b/crates/bin/Cargo.toml @@ -38,7 +38,7 @@ strum = "0.26.1" strum_macros = "0.26.1" supports-color = "3.0.0" tempfile = "3.5.0" -tokio = { version = "1.35.0", features = ["rt-multi-thread", "signal"], default-features = false } +tokio = { version = "1.40.0", features = ["rt-multi-thread", "signal"], default-features = false } tracing-core = "0.1.32" tracing = { version = "0.1.39", default-features = false } tracing-log = { version = "0.2.0", default-features = false } diff --git a/crates/binstalk-downloader/Cargo.toml b/crates/binstalk-downloader/Cargo.toml index 05a8e52d..51116717 100644 --- a/crates/binstalk-downloader/Cargo.toml +++ b/crates/binstalk-downloader/Cargo.toml @@ -52,7 +52,7 @@ serde_json = { version = "1.0.107", optional = true } tar = { package = "binstall-tar", version = "0.4.39" } tempfile = "3.5.0" thiserror = "1.0.61" -tokio = { version = "1.35.0", features = [ +tokio = { version = "1.40.0", features = [ "macros", "rt-multi-thread", "sync", diff --git a/crates/binstalk-fetchers/Cargo.toml b/crates/binstalk-fetchers/Cargo.toml index 75d9b98b..8ca332c9 100644 --- a/crates/binstalk-fetchers/Cargo.toml +++ b/crates/binstalk-fetchers/Cargo.toml @@ -22,11 +22,11 @@ itertools = "0.13.0" leon = "3.0.0" leon-macros = "1.0.1" miette = "7.0.0" -minisign-verify = "0.2.1" +minisign-verify = "0.2.2" once_cell = "1.18.0" strum = "0.26.1" thiserror = "1.0.61" -tokio = { version = "1.35.0", features = [ +tokio = { version = "1.40.0", 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 0237cea2..d7f03a1d 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 = "1.0.52" -tokio = { version = "1.35.0", features = ["sync"], default-features = false } +tokio = { version = "1.40.0", features = ["sync"], default-features = false } tracing = "0.1.39" url = "2.3.1" zeroize = "1.8.1" diff --git a/crates/binstalk-registry/Cargo.toml b/crates/binstalk-registry/Cargo.toml index a0415643..394ee017 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 = "1.0.61" -tokio = { version = "1.35.0", features = [ +tokio = { version = "1.40.0", features = [ "rt", "sync", ], default-features = false } diff --git a/crates/binstalk/Cargo.toml b/crates/binstalk/Cargo.toml index 24749ec5..d74424ce 100644 --- a/crates/binstalk/Cargo.toml +++ b/crates/binstalk/Cargo.toml @@ -36,7 +36,7 @@ strum = "0.26.1" target-lexicon = { version = "0.12.11", features = ["std"] } tempfile = "3.5.0" thiserror = "1.0.61" -tokio = { version = "1.35.0", features = [ +tokio = { version = "1.40.0", features = [ "rt", "process", "sync", diff --git a/crates/detect-targets/Cargo.toml b/crates/detect-targets/Cargo.toml index fbce9484..af3e7f95 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.35.0", features = [ +tokio = { version = "1.40.0", features = [ "rt", "process", "sync", @@ -35,7 +35,7 @@ windows-sys = { version = "0.59.0", features = [ ] } [dev-dependencies] -tokio = { version = "1.35.0", features = ["macros"], default-features = false } +tokio = { version = "1.40.0", features = ["macros"], default-features = false } [package.metadata.binstall] pkg-url = "{ repo }/releases/download/v{ version }/cargo-binstall-{ target }.full.{ archive-format }"