From 269af39082db8f6cd2746994bccf1df0d94f9c73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20D=C3=BCrr?= <102963075+cd-work@users.noreply.github.com> Date: Tue, 28 Mar 2023 23:29:10 +0000 Subject: [PATCH] fix: Add missing `processenv` winapi feature to deno_io (#18485) Currently the `processenv` feature is not explicitly requested by `deno_io`, however it is using the `processenv` module. This will prevent downstream users from building on Windows. I'd assume that this doesn't popup in Deno itself since another crate is enabling this feature. --- ext/io/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/io/Cargo.toml b/ext/io/Cargo.toml index 7b9d196926..7570c7aa25 100644 --- a/ext/io/Cargo.toml +++ b/ext/io/Cargo.toml @@ -22,4 +22,4 @@ tokio.workspace = true nix.workspace = true [target.'cfg(windows)'.dependencies] -winapi = { workspace = true, features = ["winbase"] } +winapi = { workspace = true, features = ["winbase", "processenv"] }