Add fs feature to nix dependency (#12702)

# Description
Caught a compilation error using `cargo hack` -- `nu-utils` will not
compile without the `fs` feature enabled for `nix`.
This commit is contained in:
Ian Manske 2024-04-29 22:50:39 +00:00 committed by GitHub
parent 648486400c
commit e83123dcca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,4 +29,4 @@ unicase = "2.7.0"
crossterm_winapi = "0.9"
[target.'cfg(unix)'.dependencies]
nix = { workspace = true, default-features = false, features = ["user"] }
nix = { workspace = true, default-features = false, features = ["user", "fs"] }