1
0
Fork 0
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:
Bartek Iwańczuk 2024-10-25 11:53:34 +01:00 committed by GitHub
parent 0060e74779
commit cead8af104
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,7 +31,7 @@ serde.workspace = true
thiserror.workspace = true
[target.'cfg(unix)'.dependencies]
nix = { workspace = true, features = ["user"] }
nix = { workspace = true, features = ["fs", "user"] }
[target.'cfg(windows)'.dependencies]
winapi = { workspace = true, features = ["winbase"] }