summaryrefslogtreecommitdiff
path: root/ext/fs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-10-25 11:53:34 +0100
committerGitHub <noreply@github.com>2024-10-25 12:53:34 +0200
commitcead8af104af693558db07675a423761f174d260 (patch)
treef8c66445c584a6a3c6442f776622d8e6c67e5e79 /ext/fs
parent0060e74779e25eba4544ca540066f07a1c46d17b (diff)
build: use 'fs' feature of 'nix' crate in ext/fs (#26533)
Hot-fix to unblock `v2.0.3` release
Diffstat (limited to 'ext/fs')
-rw-r--r--ext/fs/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fs/Cargo.toml b/ext/fs/Cargo.toml
index ab0bf22fd..f5daa1bcd 100644
--- a/ext/fs/Cargo.toml
+++ b/ext/fs/Cargo.toml
@@ -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"] }