From 63d8bc7021136cc479d3cc99a93a91c2a2a0c77f Mon Sep 17 00:00:00 2001 From: Systemcluster Date: Fri, 26 Apr 2024 16:55:45 +0200 Subject: [PATCH] Add required winapi features --- 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]