From b92870d619e539b4c9775130f04fb5447c18bb33 Mon Sep 17 00:00:00 2001 From: Liu Bo Date: Thu, 22 Oct 2020 11:19:49 -0700 Subject: [PATCH] Update vm-memory vm-memory 0.3.0+ has removed integer-atomics as distinct feature. Sameo suggested vm-memory 0.4.0 as it has fixed a performance issue. Signed-off-by: Liu Bo --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 42bce702..7e744b3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,9 +13,9 @@ edition = "2018" byteorder = "=1.2.1" libc = ">=0.2.39" log = "=0.4.6" -vm-memory = {version = ">=0.2.0", features = ["integer-atomics"] } +vm-memory = { version = ">=0.4.0" } vmm-sys-util = ">=0.4.0" [dev-dependencies.vm-memory] -version = ">=0.2.0" -features = ["backend-mmap", "integer-atomics"] +version = ">=0.4.0" +features = ["backend-mmap"]