diff --git a/crates/vhost-user-backend/Cargo.toml b/crates/vhost-user-backend/Cargo.toml index d349a36..dedbfca 100644 --- a/crates/vhost-user-backend/Cargo.toml +++ b/crates/vhost-user-backend/Cargo.toml @@ -12,13 +12,13 @@ license = "Apache-2.0" libc = "0.2.39" log = "0.4.17" vhost = { path = "../vhost", version = "0.6", features = ["vhost-user-slave"] } -virtio-bindings = "0.1.0" -virtio-queue = "0.7.0" -vm-memory = { version = "0.10.0", features = ["backend-mmap", "backend-atomic"] } +virtio-bindings = "0.2.0" +virtio-queue = "0.8.0" +vm-memory = { version = "0.11.0", features = ["backend-mmap", "backend-atomic"] } vmm-sys-util = "0.11.0" [dev-dependencies] nix = "0.26" vhost = { path = "../vhost", version = "0.6", features = ["vhost-user-master", "vhost-user-slave"] } -vm-memory = { version = "0.10.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } +vm-memory = { version = "0.11.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } tempfile = "3.2.0" diff --git a/crates/vhost/Cargo.toml b/crates/vhost/Cargo.toml index b822b10..77f904d 100644 --- a/crates/vhost/Cargo.toml +++ b/crates/vhost/Cargo.toml @@ -28,9 +28,9 @@ bitflags = "1.0" libc = "0.2.39" vmm-sys-util = "0.11.0" -vm-memory = "0.10.0" +vm-memory = "0.11.0" [dev-dependencies] tempfile = "3.2.0" -vm-memory = { version = "0.10.0", features=["backend-mmap"] } +vm-memory = { version = "0.11.0", features=["backend-mmap"] } serial_test = "0.5"