diff --git a/Cargo.lock b/Cargo.lock index 9768edd3..92e31170 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2407,7 +2407,7 @@ dependencies = [ "uuid", "whoami", "windows", - "windows-sys 0.52.0", + "windows-sys 0.59.0", "winreg 0.52.0", "winscard", "zeroize", @@ -2428,7 +2428,7 @@ dependencies = [ "tracing-subscriber", "uuid", "whoami", - "windows-sys 0.52.0", + "windows-sys 0.59.0", "winscard", ] @@ -3069,6 +3069,15 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + [[package]] name = "windows-targets" version = "0.48.5" diff --git a/Cargo.toml b/Cargo.toml index 3755445d..74838b6f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -93,7 +93,7 @@ winscard = { version = "0.2", optional = true, path = "./crates/winscard" } [target.'cfg(windows)'.dependencies] winreg = "0.52" windows = { version = "0.58", features = [ "Win32_Foundation", "Win32_NetworkManagement_Dns"] } -windows-sys = { version = "0.52", features = ["Win32_Security_Cryptography", "Win32_Foundation"] } +windows-sys = { version = "0.59", features = ["Win32_Security_Cryptography", "Win32_Foundation"] } [target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies] async-dnssd = "0.5" diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 3342d203..e4d1cff4 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -36,7 +36,7 @@ tracing-subscriber = { version = "0.3", features = ["std", "fmt", "local-time", [target.'cfg(windows)'.dependencies] symbol-rename-macro = { path = "./symbol-rename-macro" } -windows-sys = { version = "0.52", features = ["Win32_Security_Cryptography", "Win32_Security_Authentication_Identity", "Win32_Security_Credentials", "Win32_Foundation", "Win32_Graphics_Gdi", "Win32_System_LibraryLoader", "Win32_Security", "Win32_System_Threading"] } +windows-sys = { version = "0.59", features = ["Win32_Security_Cryptography", "Win32_Security_Authentication_Identity", "Win32_Security_Credentials", "Win32_Foundation", "Win32_Graphics_Gdi", "Win32_System_LibraryLoader", "Win32_Security", "Win32_System_Threading"] } [dev-dependencies] sspi = { path = "..", features = ["network_client", "dns_resolver", "__test-data"] }