From d311b61ce6f89611d8ce9e6ae2dba30b284e10ac Mon Sep 17 00:00:00 2001 From: Ross Kendall Thwaites Axe Date: Tue, 9 Sep 2025 23:44:23 +0100 Subject: [PATCH] chore(deps): Update Rust crate windows-sys to 0.60.1 or earlier windows-sys is a frequent source of duplicate dependencies. Widening the range of allowed versions gives downstream crates a fighting chance of being able to select one unique version of it. --- crates/snapbox/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/snapbox/Cargo.toml b/crates/snapbox/Cargo.toml index 0887abb..28ca030 100644 --- a/crates/snapbox/Cargo.toml +++ b/crates/snapbox/Cargo.toml @@ -93,7 +93,7 @@ serde = { version = "1.0.198", optional = true } regex = { version = "1.10.4", optional = true, default-features = false, features = ["std"] } [target.'cfg(windows)'.dependencies] -windows-sys = { version = "0.60.0", features = ["Win32_Foundation"], optional = true } +windows-sys = { version = ">=0.28, <=0.61", features = ["Win32_Foundation"], optional = true } [target.'cfg(unix)'.dependencies] libc = { version = "0.2.137", optional = true }