0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-09 21:57:40 -04: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:
Bartek Iwańczuk 2024-10-25 11:53:34 +01:00
parent 997bd47fc2
commit 571751b00d
No known key found for this signature in database
GPG key ID: 0C6BCDDC3B3AD750

View file

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