From a66bd0d69cbef9c56db13f0dccdd36a8edd265d4 Mon Sep 17 00:00:00 2001 From: Sergio Lopez Date: Wed, 17 May 2023 12:12:55 +0200 Subject: [PATCH] Bulk update dependencies across workspace vhost: - vm-memory 0.10.0 -> 0.11.0 vhost-user-backend: - virtio-bindings 0.1.0 -> 0.2.0 - virtio-queue 0.7.0 -> 0.8.0 - vm-memory 0.10.0 -> 0.11.0 Signed-off-by: Sergio Lopez --- crates/vhost-user-backend/Cargo.toml | 8 ++++---- crates/vhost/Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) 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"