From 4577a6966febc8a2cd58500ccedd8f3130bd500f 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: 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(-) (limited to 'ext') diff --git a/ext/io/Cargo.toml b/ext/io/Cargo.toml index 7b9d19692..7570c7aa2 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"] } -- cgit v1.2.3