From 6bdd37fe6f1fa679800400391d3854f845ec6f18 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Wed, 8 Jan 2025 17:20:15 -0500 Subject: [PATCH] build: allow `windows-core` 0.59, `windows-targets` 0.53 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 181022839..5192896cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,10 +16,10 @@ rust-version = "1.56.0" edition = "2015" [target.'cfg(windows)'.dependencies.windows-targets] -version = ">=0.48, <0.53" +version = ">=0.48, <0.54" [target.'cfg(windows)'.dev-dependencies.windows-sys] -version = ">=0.52,<0.59" +version = ">=0.52,<0.60" features = ["Win32_Foundation"] [target.'cfg(unix)'.dependencies.cfg-if]