From d7c24c93b8dd229ea86903517254265f51c3ee72 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 14 Sep 2023 10:02:00 -0400 Subject: [PATCH] lib: Bump to newer nix We only have this for the ioctl code which we copied from coreos-installer...would be good to port to rustix at some point. But for now let's update to a newer nix. Signed-off-by: Colin Walters --- lib/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 08d61484..8ed350d3 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -25,7 +25,8 @@ libc = "^0.2" liboverdrop = "0.1.0" once_cell = "1.9" openssl = "^0.10" -nix = ">= 0.24, < 0.26" +# TODO drop this in favor of rustix +nix = { version = "0.27", features = ["ioctl"] } regex = "1.7.1" rustix = { "version" = "0.38", features = ["thread", "fs", "system", "process"] } schemars = "0.8.6"