From cead8af104af693558db07675a423761f174d260 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 25 Oct 2024 11:53:34 +0100 Subject: [PATCH] build: use 'fs' feature of 'nix' crate in ext/fs (#26533) Hot-fix to unblock `v2.0.3` release --- ext/fs/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/fs/Cargo.toml b/ext/fs/Cargo.toml index ab0bf22fd3..f5daa1bcdc 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"] }