From f3ac9a4776f0b88801a824484486c9eff2f56007 Mon Sep 17 00:00:00 2001 From: Ryan Zoeller Date: Mon, 16 May 2022 00:01:47 -0500 Subject: [PATCH] Upgrade nix to 0.24, limit features This reduces compile time and removes memoffset as an indirect dependency. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 149f25cc8..833f9401d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ async-tokio = ["futures", "tokio", "mio-evented"] [dependencies] futures = { version = "0.3", optional = true } -nix = "0.23" +nix = { version = "0.24", default-features = false, features = ["event"] } mio = { version = "0.8", optional = true, features = ["os-ext"]} tokio = { version = "1", optional = true, features = ["net"] }