build: Relax vm-memory dependency

This allows the use of newer versions of the vm-memory crate when
combined with other dependencies.

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford 2022-04-11 09:33:24 +01:00 committed by Sergio Lopez
parent 7545d23e24
commit 12b37dcb07

View file

@ -13,11 +13,11 @@ log = ">=0.4.6"
vhost = { version = "0.4", features = ["vhost-user-slave"] }
virtio-bindings = "0.1"
virtio-queue = "0.2"
vm-memory = {version = "0.7", features = ["backend-mmap", "backend-atomic"]}
vm-memory = {version = ">=0.7", features = ["backend-mmap", "backend-atomic"]}
vmm-sys-util = "0.9"
[dev-dependencies]
nix = "0.24"
vhost = { version = "0.4", features = ["vhost-user-master", "vhost-user-slave"] }
vm-memory = {version = "0.7", features = ["backend-mmap", "backend-atomic", "backend-bitmap"]}
vm-memory = {version = ">=0.7", features = ["backend-mmap", "backend-atomic", "backend-bitmap"]}
tempfile = "3.2.0"