From ec5f4469f02b1bea127d26fdcb036fdf768e2a26 Mon Sep 17 00:00:00 2001 From: Bin Liu Date: Mon, 13 Dec 2021 23:15:47 +0800 Subject: [PATCH] Update nix package 0.23.0 fixed an issue https://github.com/nix-rust/nix/pull/1545, that `cargo deny check advisories` will fail if using the old version of nix package. Signed-off-by: bin liu --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 80c596e..b31bd8b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ exclude = ["test_fixture"] [dependencies] libc = "0.2.79" -nix = "0.22.1" +nix = "0.23.0" [dev-dependencies] rand = "0.8.3"