From 887ae9086146d1cfdbdd0a3bc568c77c80ac3a08 Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 27 Apr 2024 10:55:58 +0200 Subject: [PATCH] Add required winapi features (#2160) --- Cargo.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c36064936..561169bcc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -141,7 +141,14 @@ optional = true version = "0.1.15" [target.'cfg(windows)'.dependencies.winapi] -features = ["fileapi", "handleapi", "stringapiset", "winnls"] +features = [ + "fileapi", + "handleapi", + "stringapiset", + "winnls", + "processenv", + "std", +] version = "0.3" [features]