From 42f2086761ced3711eed069a1cfde6e508cb3876 Mon Sep 17 00:00:00 2001 From: Sergio Lopez Date: Tue, 6 Oct 2020 13:52:19 +0200 Subject: [PATCH] Clamp vm-memory to version 0.2.2 Clamp vm-memory to version 0.2.2. Otherwise, using this crate may bring both version 0.2.2 and 0.3.0, causing a trait conflict. Signed-off-by: Sergio Lopez --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 52bec93..120dbce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ epoll = ">=4.0.1" libc = ">=0.2.39" log = ">=0.4.6" virtio-bindings = "0.1.0" -vm-memory = {version = ">=0.2.0", features = ["backend-mmap", "backend-atomic"]} +vm-memory = { version = "0.2.2", features = ["backend-mmap", "backend-atomic"] } vm-virtio = { git = "https://github.com/rust-vmm/vm-virtio" } vmm-sys-util = ">=0.3.1" vhost_rs = { git = "https://github.com/rust-vmm/vhost", package = "vhost", features = ["vhost-user-slave"] }