From e61cf387562a62b208a1d5f80e7e0077f1ec5927 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Fri, 25 Aug 2023 21:45:26 +0200 Subject: [PATCH] Workaround again cargo dependencies --- Cargo.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 53450396..df9af8b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,6 +46,20 @@ itertools = "0.11" # pin a cargo dependency that sadly broke semver strip-ansi-escapes = "=0.1.1" +# workaround cargo +[target.'cfg(windows)'.dependencies.windows-sys] +version = "0.48" +features = [ + "Win32_Foundation", + "Win32_Storage_FileSystem", + "Win32_System_IO", + "Win32_System_Console", + "Win32_System_Threading", + "Win32_System_JobObjects", + "Win32_Security", + "Win32_System_SystemServices" +] + [features] default = [] vendored-openssl = ["cargo/vendored-openssl"]