From e3c6ff185445725eb2fd9d07979cac49db75c089 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Thu, 2 Nov 2023 02:52:14 +0100 Subject: [PATCH] Set patch to latest for `windows-targets` `windows-targets` apparently has breaking changes in patch versions as show in #40, so this just sets the version to the latest that compiles correctly. If they make further breaking chnanges we might need to pin it, but hopefully that won't happen. Another option is just to remove the dependency altogether since it's not really doing anything to be honest. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 27d0acd..218c9e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ features = ["blocking", "gzip"] libc = "0.2" [target.'cfg(windows)'.dependencies] -windows-targets = "0.48" +windows-targets = "0.48.5" [dev-dependencies] cargo_metadata = "0.18"