build: Relax vm-memory dependency

By relaxing the dependency to ">=0.6" this crate can be used in projects
using newer vm-memory without pulling in duplicates of the crate.

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford 2021-10-21 14:31:04 +01:00 committed by Jiang Liu
parent 64577a3c6c
commit fca9e51956

View file

@ -24,9 +24,9 @@ bitflags = ">=1.0.1"
libc = ">=0.2.39"
vmm-sys-util = ">=0.3.1"
vm-memory = "0.6"
vm-memory = ">=0.6"
[dev-dependencies]
tempfile = ">=3.2.0"
vm-memory = { version = "0.6", features=["backend-mmap"] }
vm-memory = { version = ">=0.6", features=["backend-mmap"] }
serial_test = "0.5"