From 7f4d237e7ac9acf57623e766aaf477672067d52a Mon Sep 17 00:00:00 2001 From: Hanna Kruppe Date: Sun, 9 Nov 2025 12:07:40 +0100 Subject: [PATCH] Update to windows-sys 0.61 Tokio and mio already updated to windows-sys 0.61, so socket2 requiring 0.60 makes it hard to avoid multiple copies of windows-sys. Since no code changes are needed, I relaxed the version requirement (still allowing 0.60) to avoid increasing socket2's MSRV. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9b6195ea..cf80637f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,7 @@ features = ["all"] libc = "0.2.172" [target.'cfg(windows)'.dependencies.windows-sys] -version = "0.60" +version = ">=0.60, <0.62" features = [ "Win32_Foundation", "Win32_Networking_WinSock",