From 867016757e3c3e46a8617de42173184e4a12a4c3 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Tue, 13 Jul 2021 16:44:59 +0000 Subject: [PATCH] fuzz: patch versionize_derive in Cargo.toml Just like how it is done in the top-level Cargo.toml. This fixes a warning [0] when building the fuzzer binaries. [0] https://github.com/rust-lang/rust/issues/82523 Signed-off-by: Wei Liu --- fuzz/Cargo.lock | 3 +-- fuzz/Cargo.toml | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index b6047b673..7a3f4b81b 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -625,8 +625,7 @@ dependencies = [ [[package]] name = "versionize_derive" version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "140aa9fd298f667ea50fa1cb0d8530076924079285c623b18b8f8a1c28386b4a" +source = "git+https://github.com/cloud-hypervisor/versionize_derive?branch=ch#ae35ef7a3ddabd3371ab8ac0193a383aff6e4b1b" dependencies = [ "proc-macro2", "quote", diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index cb14af88a..18b8b4ae3 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -25,6 +25,7 @@ path = ".." [patch.crates-io] kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.4.0", features = ["with-serde", "fam-wrappers"] } vm-memory = { git = "https://github.com/rust-vmm/vm-memory", rev = "5bd7138758183a73ac0da27ce40c004d95f1a7e9"} +versionize_derive = { git = "https://github.com/cloud-hypervisor/versionize_derive", branch = "ch" } # Prevent this from interfering with workspaces [workspace]