From a62f22050b4816fd3b1a474d52825a3526fe5ffc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 18 Nov 2023 03:04:12 +0000 Subject: [PATCH] build(deps): bump the deps group with 4 updates (#1502) Bumps the deps group with 4 updates: [windows](https://github.com/microsoft/windows-rs), [itertools](https://github.com/rust-itertools/itertools), [default-net](https://github.com/shellrow/default-net) and [windows-sys](https://github.com/microsoft/windows-rs). Updates `windows` from 0.51.1 to 0.52.0 - [Release notes](https://github.com/microsoft/windows-rs/releases) - [Commits](https://github.com/microsoft/windows-rs/compare/0.51.1...0.52.0) Updates `itertools` from 0.11.0 to 0.12.0 - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.11.0...v0.12.0) Updates `default-net` from 0.20.0 to 0.21.0 - [Release notes](https://github.com/shellrow/default-net/releases) - [Commits](https://github.com/shellrow/default-net/compare/v0.20.0...v0.21.0) Updates `windows-sys` from 0.48.0 to 0.52.0 - [Release notes](https://github.com/microsoft/windows-rs/releases) - [Commits](https://github.com/microsoft/windows-rs/compare/0.48.0...0.52.0) --- updated-dependencies: - dependency-name: windows dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: itertools dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: default-net dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: windows-sys dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 33 ++++++--------------------- crates/atomic-file-install/Cargo.toml | 2 +- crates/binstalk-downloader/Cargo.toml | 2 +- crates/binstalk-fetchers/Cargo.toml | 2 +- crates/binstalk/Cargo.toml | 2 +- crates/detect-targets/Cargo.toml | 2 +- 6 files changed, 12 insertions(+), 31 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8e27f130..e3118985 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -167,7 +167,7 @@ dependencies = [ "reflink-copy", "tempfile", "tracing", - "windows 0.51.1", + "windows 0.52.0", ] [[package]] @@ -788,9 +788,9 @@ checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" [[package]] name = "default-net" -version = "0.20.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ba429d84a27fa854c66fd2e29eb1cdf6d38bbfd4495bd9f522f12a7f21e05bf" +checksum = "85dc7576d8346d3c86ad64dc64d26d0f6c970ba4795b850f15ee94467d8e53eb" dependencies = [ "dlopen2", "libc", @@ -833,7 +833,7 @@ dependencies = [ "tracing", "tracing-subscriber", "windows-dll", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -2257,9 +2257,9 @@ checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb" [[package]] name = "itertools" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" +checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" dependencies = [ "either", ] @@ -4236,35 +4236,16 @@ dependencies = [ "windows-targets 0.48.5", ] -[[package]] -name = "windows" -version = "0.51.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" -dependencies = [ - "windows-core 0.51.1", - "windows-targets 0.48.5", -] - [[package]] name = "windows" version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" dependencies = [ - "windows-core 0.52.0", + "windows-core", "windows-targets 0.52.0", ] -[[package]] -name = "windows-core" -version = "0.51.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" -dependencies = [ - "windows-targets 0.48.5", -] - [[package]] name = "windows-core" version = "0.52.0" diff --git a/crates/atomic-file-install/Cargo.toml b/crates/atomic-file-install/Cargo.toml index 74f9d7fe..98cdf302 100644 --- a/crates/atomic-file-install/Cargo.toml +++ b/crates/atomic-file-install/Cargo.toml @@ -15,4 +15,4 @@ tempfile = "3.5.0" tracing = "0.1.39" [target.'cfg(windows)'.dependencies] -windows = { version = "0.51.0", features = ["Win32_Storage_FileSystem", "Win32_Foundation"] } +windows = { version = "0.52.0", features = ["Win32_Storage_FileSystem", "Win32_Foundation"] } diff --git a/crates/binstalk-downloader/Cargo.toml b/crates/binstalk-downloader/Cargo.toml index 388b1251..77907297 100644 --- a/crates/binstalk-downloader/Cargo.toml +++ b/crates/binstalk-downloader/Cargo.toml @@ -97,7 +97,7 @@ gh-api-client = ["json"] json = ["serde", "serde_json"] [target."cfg(windows)".dependencies] -default-net = { version = "0.20.0", optional = true } +default-net = { version = "0.21.0", optional = true } ipconfig = { version = "0.3.2", optional = true, default-features = false } [package.metadata.docs.rs] diff --git a/crates/binstalk-fetchers/Cargo.toml b/crates/binstalk-fetchers/Cargo.toml index 7e26c28a..f099c388 100644 --- a/crates/binstalk-fetchers/Cargo.toml +++ b/crates/binstalk-fetchers/Cargo.toml @@ -17,7 +17,7 @@ binstalk-types = { version = "0.6.1", path = "../binstalk-types" } bytes = "1.4.0" compact_str = { version = "0.7.0" } either = "1.8.1" -itertools = "0.11.0" +itertools = "0.12.0" leon = { version = "2.0.1", path = "../leon" } leon-macros = { version = "1.0.0", path = "../leon-macros" } miette = "5.9.0" diff --git a/crates/binstalk/Cargo.toml b/crates/binstalk/Cargo.toml index a251ade1..50d663d5 100644 --- a/crates/binstalk/Cargo.toml +++ b/crates/binstalk/Cargo.toml @@ -20,7 +20,7 @@ command-group = { version = "4.1.0", features = ["with-tokio"] } compact_str = { version = "0.7.0", features = ["serde"] } detect-targets = { version = "0.1.13", path = "../detect-targets", features = ["tracing"] } either = "1.8.1" -itertools = "0.11.0" +itertools = "0.12.0" jobslot = { version = "0.2.11", features = ["tokio"] } leon = { version = "2.0.1", path = "../leon" } maybe-owned = "0.3.4" diff --git a/crates/detect-targets/Cargo.toml b/crates/detect-targets/Cargo.toml index 3b1bee63..799a96e3 100644 --- a/crates/detect-targets/Cargo.toml +++ b/crates/detect-targets/Cargo.toml @@ -21,7 +21,7 @@ tracing = ["dep:tracing"] cli-logging = ["tracing", "dep:tracing-subscriber"] [target.'cfg(target_os = "windows")'.dependencies] -windows-sys = { version = "0.48.0", features = ["Win32_System_Threading", "Win32_System_SystemInformation", "Win32_Foundation"] } +windows-sys = { version = "0.52.0", features = ["Win32_System_Threading", "Win32_System_SystemInformation", "Win32_Foundation"] } windows-dll = { version = "0.4.1", features = ["windows"], default-features = false } [dev-dependencies]