From e83123dcca82b7aa73ef4257a6cf9a9519b22678 Mon Sep 17 00:00:00 2001 From: Ian Manske Date: Mon, 29 Apr 2024 22:50:39 +0000 Subject: [PATCH] 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`. --- crates/nu-utils/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-utils/Cargo.toml b/crates/nu-utils/Cargo.toml index e659fd6d47..67df459882 100644 --- a/crates/nu-utils/Cargo.toml +++ b/crates/nu-utils/Cargo.toml @@ -29,4 +29,4 @@ unicase = "2.7.0" crossterm_winapi = "0.9" [target.'cfg(unix)'.dependencies] -nix = { workspace = true, default-features = false, features = ["user"] } \ No newline at end of file +nix = { workspace = true, default-features = false, features = ["user", "fs"] }