Skip to content

Commit

Permalink
fix: Add missing processenv winapi feature to deno_io (denoland#18485)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
cd-work committed Mar 28, 2023
1 parent ceab7a8 commit 4577a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

0 comments on commit 4577a69

Please sign in to comment.