From 476219ab93298b0e44fbbd87e6fb7020de0ad679 Mon Sep 17 00:00:00 2001 From: Ryan Zoeller Date: Sun, 24 Apr 2022 16:00:00 -0500 Subject: [PATCH] Upgrade nix to 0.24, limit features This removes memoffset as an indirect dependency, and should decrease build times slightly. Signed-off-by: Ryan Zoeller --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 79fb09b..59b7945 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ readme = "README.md" [dependencies] log = "0.4" regex = "1.1" -nix = "0.23.0" +nix = { version = "0.24", default-features = false, features = ["event", "fs", "process"] } libc = "0.2" serde = { version = "1.0", features = ["derive"], optional = true }