diff options
author | Christian Dürr <102963075+cd-work@users.noreply.github.com> | 2023-03-28 23:29:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-29 01:29:10 +0200 |
commit | 4577a6966febc8a2cd58500ccedd8f3130bd500f (patch) | |
tree | f5f79e8766684d3d1ca3f155ac4b57a752989a43 | |
parent | ceab7a8d2378eca85b87e5a1fa2882b328467bfc (diff) |
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.
-rw-r--r-- | ext/io/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
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"] } |