From 890e277166b3538025ba796504608642a31a65bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 01:35:31 +0000 Subject: [PATCH] build(deps): bump the deps group with 2 updates Bumps the deps group with 2 updates: [itertools](https://github.com/rust-itertools/itertools) and [async-trait](https://github.com/dtolnay/async-trait). Updates `itertools` from 0.13.0 to 0.14.0 - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.13.0...v0.14.0) Updates `async-trait` from 0.1.83 to 0.1.84 - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](https://github.com/dtolnay/async-trait/compare/0.1.83...0.1.84) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: async-trait dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- crates/binstalk-downloader/Cargo.toml | 2 +- crates/binstalk-fetchers/Cargo.toml | 4 ++-- crates/binstalk-registry/Cargo.toml | 2 +- crates/binstalk/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 30b84d95..7dc62afd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -178,9 +178,9 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.83" +version = "0.1.84" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" +checksum = "1b1244b10dcd56c92219da4e14caa97e312079e185f04ba3eea25061561dc0a0" dependencies = [ "proc-macro2", "quote", @@ -2597,9 +2597,9 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] name = "itertools" -version = "0.13.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" dependencies = [ "either", ] diff --git a/crates/binstalk-downloader/Cargo.toml b/crates/binstalk-downloader/Cargo.toml index 35e3bb63..108f7f9b 100644 --- a/crates/binstalk-downloader/Cargo.toml +++ b/crates/binstalk-downloader/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" license = "Apache-2.0 OR MIT" [dependencies] -async-trait = "0.1.68" +async-trait = "0.1.84" async-compression = { version = "0.4.4", features = [ "gzip", "zstd", diff --git a/crates/binstalk-fetchers/Cargo.toml b/crates/binstalk-fetchers/Cargo.toml index c49320b1..6fd118d8 100644 --- a/crates/binstalk-fetchers/Cargo.toml +++ b/crates/binstalk-fetchers/Cargo.toml @@ -11,14 +11,14 @@ authors = ["Jiahao XU "] license = "GPL-3.0-only" [dependencies] -async-trait = "0.1.68" +async-trait = "0.1.84" binstalk-downloader = { version = "0.13.6", path = "../binstalk-downloader", default-features = false } binstalk-git-repo-api = { version = "0.5.8", path = "../binstalk-git-repo-api" } binstalk-types = { version = "0.9.2", path = "../binstalk-types" } bytes = "1.4.0" compact_str = { version = "0.8.0" } either = "1.11.0" -itertools = "0.13.0" +itertools = "0.14.0" leon = "3.0.0" leon-macros = "1.0.1" miette = "7.0.0" diff --git a/crates/binstalk-registry/Cargo.toml b/crates/binstalk-registry/Cargo.toml index c93f0e82..2b29ab20 100644 --- a/crates/binstalk-registry/Cargo.toml +++ b/crates/binstalk-registry/Cargo.toml @@ -11,7 +11,7 @@ authors = ["Jiahao_XU@outlook "] license = "Apache-2.0 OR MIT" [dependencies] -async-trait = "0.1.68" +async-trait = "0.1.84" base16 = "0.2.1" binstalk-downloader = { version = "0.13.6", path = "../binstalk-downloader", default-features = false, features = [ "json", diff --git a/crates/binstalk/Cargo.toml b/crates/binstalk/Cargo.toml index 7377e6ce..55ec009c 100644 --- a/crates/binstalk/Cargo.toml +++ b/crates/binstalk/Cargo.toml @@ -25,7 +25,7 @@ detect-targets = { version = "0.1.34", path = "../detect-targets", features = [ "tracing", ] } either = "1.11.0" -itertools = "0.13.0" +itertools = "0.14.0" jobslot = { version = "0.2.11", features = ["tokio"] } leon = "3.0.0" maybe-owned = "0.3.4"