From fca9e5195645efe48cdd8a0159966a13951cc70d Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Thu, 21 Oct 2021 14:31:04 +0100 Subject: [PATCH] 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 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c7d4f90..c0b8efd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"