mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
build: use 'fs' feature of 'nix' crate in ext/fs (#26533)
Hot-fix to unblock `v2.0.3` release
This commit is contained in:
parent
0060e74779
commit
cead8af104
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ serde.workspace = true
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
nix = { workspace = true, features = ["user"] }
|
nix = { workspace = true, features = ["fs", "user"] }
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
winapi = { workspace = true, features = ["winbase"] }
|
winapi = { workspace = true, features = ["winbase"] }
|
||||||
|
|
Loading…
Reference in a new issue