1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-05 13:59:01 -05:00

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.
This commit is contained in:
Christian Dürr 2023-03-28 23:29:10 +00:00 committed by Matt Mastracci
parent e9aa09bfd4
commit 269af39082

View file

@ -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"] }