From 435e4fd2bd5e729e40ee08bb5b93fc73e7b70ad2 Mon Sep 17 00:00:00 2001 From: Vaibhav Nagarnaik Date: Tue, 31 May 2022 20:09:02 +0000 Subject: [PATCH] hypervisor: Constrain `fnv` version The ebuild update for `fnv` includes versions up to `1.*`. Add constraints for the dependency to be the same so that a newer `fnv` version does not break the crosvm build. ref: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3630701/comments/af4c79c5_35e4dee4 BUG=b:213151459 TEST=Compiled Change-Id: I4d67b223eb858c3c46f87cbc9ae275c3859a3e46 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3681278 Commit-Queue: Daniel Verkamp Reviewed-by: Daniel Verkamp Tested-by: kokoro --- hypervisor/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index e1fd57f257..6423ea460b 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -10,7 +10,7 @@ bitflags = "1" data_model = { path = "../common/data_model" } downcast-rs = "1.2.0" enumn = "0.1.0" -fnv = "*" +fnv = "1" kvm = { path = "../kvm" } kvm_sys = { path = "../kvm_sys" } libc = "*"