From 829ebd7f2f52feee093f4a7ede1b9c9f0d074774 Mon Sep 17 00:00:00 2001 From: Hanna Kruppe Date: Thu, 13 Nov 2025 14:16:05 +0100 Subject: [PATCH] chore(deps): Allow windows-sys 0.61 --- crates/anstyle-query/Cargo.toml | 2 +- crates/anstyle-wincon/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/anstyle-query/Cargo.toml b/crates/anstyle-query/Cargo.toml index 586a9589..c717516b 100644 --- a/crates/anstyle-query/Cargo.toml +++ b/crates/anstyle-query/Cargo.toml @@ -24,7 +24,7 @@ pre-release-replacements = [ ] [target.'cfg(windows)'.dependencies] -windows-sys = { version = "0.60.2", features = ["Win32_System_Console", "Win32_Foundation"] } +windows-sys = { version = ">=0.60.2, <0.62", features = ["Win32_System_Console", "Win32_Foundation"] } [lints] workspace = true diff --git a/crates/anstyle-wincon/Cargo.toml b/crates/anstyle-wincon/Cargo.toml index de2dcd6e..b6be0910 100644 --- a/crates/anstyle-wincon/Cargo.toml +++ b/crates/anstyle-wincon/Cargo.toml @@ -31,7 +31,7 @@ anstyle = { version = "1.0.0", path = "../anstyle" } lexopt = "0.3.1" [target.'cfg(windows)'.dependencies] -windows-sys = { version = "0.60.2", features = ["Win32_System_Console", "Win32_Foundation"] } +windows-sys = { version = ">=0.60.2, <0.62", features = ["Win32_System_Console", "Win32_Foundation"] } once_cell_polyfill = "1.56.1" [lints]