From e0bf36ae236f93ea94b2b4992f7f74c9947f81bd Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Fri, 26 Nov 2021 11:17:58 +0000 Subject: [PATCH] cargo: Update nix to latest version Update the `nix` crate to version `0.23.0` to resolve a dependency issue related to making `cargo audit` run cleanly for the Kata Containers agent. See: https://github.com/kata-containers/kata-containers/pull/3125 Fixes: #66. Signed-off-by: James O. D. Hunt --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b0e7e5d..cf83578 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ readme = "README.md" [dependencies] log = "0.4" regex = "1.1" -nix = "0.20.2" +nix = "0.23.0" libc = "0.2" serde = { version = "1.0", features = ["derive"], optional = true }