From e8ec0c402fa0dd771a9098c1f186091043e62956 Mon Sep 17 00:00:00 2001 From: Peng Tao Date: Wed, 28 Sep 2022 10:36:16 +0800 Subject: [PATCH] stable-2.5: fix cargo vendor Looks like cargo vendor searches for all needed dependencies and we have left over nix 0.24.2 Fixes: #5261 Signed-off-by: Peng Tao --- src/agent/Cargo.lock | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/agent/Cargo.lock b/src/agent/Cargo.lock index c970a3c693..0f4cf6b9db 100644 --- a/src/agent/Cargo.lock +++ b/src/agent/Cargo.lock @@ -822,6 +822,17 @@ dependencies = [ "memoffset", ] +[[package]] +name = "nix" +version = "0.24.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc" +dependencies = [ + "bitflags", + "cfg-if 1.0.0", + "libc", +] + [[package]] name = "ntapi" version = "0.3.7"