From 5dea671585b1b99263da8524028da86e9e6fb88f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 01:58:35 +0000 Subject: [PATCH] build(deps): bump the deps group with 2 updates (#1633) Bumps the deps group with 2 updates: [windows](https://github.com/microsoft/windows-rs) and [default-net](https://github.com/shellrow/default-net). Updates `windows` from 0.52.0 to 0.53.0 - [Release notes](https://github.com/microsoft/windows-rs/releases) - [Commits](https://github.com/microsoft/windows-rs/compare/0.52.0...0.53.0) Updates `default-net` from 0.21.0 to 0.22.0 - [Release notes](https://github.com/shellrow/default-net/releases) - [Commits](https://github.com/shellrow/default-net/compare/v0.21.0...v0.22.0) --- updated-dependencies: - dependency-name: windows 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 ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 37 ++++++++++++++++++++++++--- crates/atomic-file-install/Cargo.toml | 2 +- crates/binstalk-downloader/Cargo.toml | 2 +- 3 files changed, 35 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5579258b..e67a9dc5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -160,7 +160,7 @@ dependencies = [ "reflink-copy", "tempfile", "tracing", - "windows 0.52.0", + "windows 0.53.0", ] [[package]] @@ -802,9 +802,9 @@ checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" [[package]] name = "default-net" -version = "0.21.0" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85dc7576d8346d3c86ad64dc64d26d0f6c970ba4795b850f15ee94467d8e53eb" +checksum = "0c5a6569a908354d49b10db3c516d69aca1eccd97562fd31c98b13f00b73ca66" dependencies = [ "dlopen2", "libc", @@ -4309,7 +4309,17 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" dependencies = [ - "windows-core", + "windows-core 0.52.0", + "windows-targets 0.52.3", +] + +[[package]] +name = "windows" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "efc5cf48f83140dcaab716eeaea345f9e93d0018fb81162753a3f76c3397b538" +dependencies = [ + "windows-core 0.53.0", "windows-targets 0.52.3", ] @@ -4322,6 +4332,16 @@ dependencies = [ "windows-targets 0.52.3", ] +[[package]] +name = "windows-core" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9dcc5b895a6377f1ab9fa55acedab1fd5ac0db66ad1e6c7f47e28a22e446a5dd" +dependencies = [ + "windows-result", + "windows-targets 0.52.3", +] + [[package]] name = "windows-dll" version = "0.4.1" @@ -4346,6 +4366,15 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "windows-result" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd19df78e5168dfb0aedc343d1d1b8d422ab2db6756d2dc3fef75035402a3f64" +dependencies = [ + "windows-targets 0.52.3", +] + [[package]] name = "windows-sys" version = "0.48.0" diff --git a/crates/atomic-file-install/Cargo.toml b/crates/atomic-file-install/Cargo.toml index baad0d24..f2715770 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.52.0", features = ["Win32_Storage_FileSystem", "Win32_Foundation"] } +windows = { version = "0.53.0", features = ["Win32_Storage_FileSystem", "Win32_Foundation"] } diff --git a/crates/binstalk-downloader/Cargo.toml b/crates/binstalk-downloader/Cargo.toml index a4bae9d8..9b403a5a 100644 --- a/crates/binstalk-downloader/Cargo.toml +++ b/crates/binstalk-downloader/Cargo.toml @@ -100,7 +100,7 @@ gh-api-client = ["json"] json = ["serde", "serde_json"] [target."cfg(windows)".dependencies] -default-net = { version = "0.21.0", optional = true } +default-net = { version = "0.22.0", optional = true } ipconfig = { version = "0.3.2", optional = true, default-features = false } [package.metadata.docs.rs]