Skip to content

Commit

Permalink
Add fs feature to nix dependency (#12702)
Browse files Browse the repository at this point in the history
# Description
Caught a compilation error using `cargo hack` -- `nu-utils` will not
compile without the `fs` feature enabled for `nix`.
  • Loading branch information
IanManske committed Apr 29, 2024
1 parent 6484864 commit e83123d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/nu-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

0 comments on commit e83123d

Please sign in to comment.