From 66f745d2ae5f75b351d60ef6263d58475285c0ab Mon Sep 17 00:00:00 2001 From: Ryan Zoeller Date: Mon, 30 May 2022 16:51:17 -0500 Subject: [PATCH] Update nix to 0.24.1, limit features This removes memoffset as an indirect dependency, and decreases build times slightly. --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 85600a9..591015d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,9 @@ thiserror = "1.0.24" which = "4.1.0" [target.'cfg(unix)'.dependencies.nix] -version = "0.22.0" +version = "0.24.1" +default-features = false +features = ["fs", "term"] [target.'cfg(windows)'.dependencies.winapi] version = "0.3.9"