From 7a606d2d94d9c43d7dfcf797a1a0609b5660bb9d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 11:21:33 +0000 Subject: [PATCH 1/2] Update windows requirement from 0.61.3 to 0.62.2 --- updated-dependencies: - dependency-name: windows dependency-version: 0.62.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7baad18..3d0bee8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ pkcs1 = { version = "0.7.5", features = ["std"] } pkcs8 = "0.10.2" rustls = { version = "0.23.20", default-features = false, features = ["std"] } sec1 = "0.7.3" -windows = { version = "0.61.3", features = [ +windows = { version = "0.62.2", features = [ "Win32_Security_Cryptography", "Win32_System_WinRT", ] } From 3981b867b91d74b1f6940d21f2951d899489b027 Mon Sep 17 00:00:00 2001 From: Tom Fay Date: Sat, 13 Dec 2025 18:50:15 +0000 Subject: [PATCH 2/2] remove parens --- src/kx.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kx.rs b/src/kx.rs index 6d1fba2..63b6853 100644 --- a/src/kx.rs +++ b/src/kx.rs @@ -79,7 +79,7 @@ pub const SECP256R1: &dyn SupportedKxGroup = &KxGroup::SECP256R1; pub const SECP384R1: &dyn SupportedKxGroup = &KxGroup::SECP384R1; impl SupportedKxGroup for KxGroup { - fn start(&self) -> Result, Error> { + fn start(&self) -> Result, Error> { let mut key_handle = Owned::default(); unsafe {