From 69ebcdace05b09db7f98f61a38703b71b1eabfeb Mon Sep 17 00:00:00 2001 From: Viresh Kumar Date: Mon, 18 Jul 2022 14:36:25 +0530 Subject: [PATCH] rng: Switch to common vmm-sys-util version Both GPIO and I2C crates use a different version of vmm-sys-util (=0.9.0), switch to that instead of the latest. Signed-off-by: Viresh Kumar --- rng/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rng/Cargo.toml b/rng/Cargo.toml index 862e264..84873c2 100644 --- a/rng/Cargo.toml +++ b/rng/Cargo.toml @@ -23,7 +23,7 @@ vhost-user-backend = "0.5" virtio-bindings = ">=0.1" virtio-queue = "0.4" vm-memory = ">=0.8" -vmm-sys-util = ">=0.9.0" +vmm-sys-util = "=0.9.0" [dev-dependencies] virtio-queue = { version = "0.4", features = ["test-utils"] }