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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2024-02-24 01:58:35 +00:00 committed by GitHub
parent fbb49b4eb6
commit 5dea671585
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 35 additions and 6 deletions

37
Cargo.lock generated
View file

@ -160,7 +160,7 @@ dependencies = [
"reflink-copy", "reflink-copy",
"tempfile", "tempfile",
"tracing", "tracing",
"windows 0.52.0", "windows 0.53.0",
] ]
[[package]] [[package]]
@ -802,9 +802,9 @@ checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5"
[[package]] [[package]]
name = "default-net" name = "default-net"
version = "0.21.0" version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85dc7576d8346d3c86ad64dc64d26d0f6c970ba4795b850f15ee94467d8e53eb" checksum = "0c5a6569a908354d49b10db3c516d69aca1eccd97562fd31c98b13f00b73ca66"
dependencies = [ dependencies = [
"dlopen2", "dlopen2",
"libc", "libc",
@ -4309,7 +4309,17 @@ version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
dependencies = [ 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", "windows-targets 0.52.3",
] ]
@ -4322,6 +4332,16 @@ dependencies = [
"windows-targets 0.52.3", "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]] [[package]]
name = "windows-dll" name = "windows-dll"
version = "0.4.1" version = "0.4.1"
@ -4346,6 +4366,15 @@ dependencies = [
"syn 1.0.109", "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]] [[package]]
name = "windows-sys" name = "windows-sys"
version = "0.48.0" version = "0.48.0"

View file

@ -15,4 +15,4 @@ tempfile = "3.5.0"
tracing = "0.1.39" tracing = "0.1.39"
[target.'cfg(windows)'.dependencies] [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"] }

View file

@ -100,7 +100,7 @@ gh-api-client = ["json"]
json = ["serde", "serde_json"] json = ["serde", "serde_json"]
[target."cfg(windows)".dependencies] [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 } ipconfig = { version = "0.3.2", optional = true, default-features = false }
[package.metadata.docs.rs] [package.metadata.docs.rs]