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:
parent
e9aa09bfd4
commit
269af39082
1 changed files with 1 additions and 1 deletions
|
@ -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"] }
|
||||
|
|
Loading…
Reference in a new issue