From 1e2be35e3b878d7c5010c3a25a70d351dec70811 Mon Sep 17 00:00:00 2001 From: PThorpe92 Date: Tue, 29 Apr 2025 23:07:28 -0400 Subject: [PATCH] Add fs feature to rustix dependency --- core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index de2ae29cc..61c0249c8 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -34,7 +34,7 @@ io-uring = { version = "0.7.5", optional = true } [target.'cfg(target_family = "unix")'.dependencies] polling = "3.7.4" -rustix = "1.0.5" +rustix = { version = "1.0.5", features = ["fs"]} [target.'cfg(not(target_family = "wasm"))'.dependencies] mimalloc = { version = "0.1.46", default-features = false }