From 95fac636ee9230263b0bc685c09382384c466fd5 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 16 Nov 2022 10:03:25 +0000 Subject: [PATCH] {vhost, vhost-user-backend}: Bulk update rust-vmm dependencies Update dependencies to use recommended versions and version syntax. See: rust-vmm/community#136 Signed-off-by: Rob Bradford --- crates/vhost-user-backend/Cargo.toml | 10 +++++----- crates/vhost/Cargo.toml | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/crates/vhost-user-backend/Cargo.toml b/crates/vhost-user-backend/Cargo.toml index 6f717cb7..42fb687b 100644 --- a/crates/vhost-user-backend/Cargo.toml +++ b/crates/vhost-user-backend/Cargo.toml @@ -11,13 +11,13 @@ license = "Apache-2.0" libc = "0.2.39" log = "0.4.17" vhost = { path = "../vhost", version = "0.5", features = ["vhost-user-slave"] } -virtio-bindings = "0.1" -virtio-queue = "0.6" -vm-memory = { version = "0.9", features = ["backend-mmap", "backend-atomic"] } -vmm-sys-util = "0.10" +virtio-bindings = "0.1.0" +virtio-queue = "0.7.0" +vm-memory = { version = "0.10.0", features = ["backend-mmap", "backend-atomic"] } +vmm-sys-util = "0.11.0" [dev-dependencies] nix = "0.25" vhost = { path = "../vhost", version = "0.5", features = ["vhost-user-master", "vhost-user-slave"] } -vm-memory = { version = "0.9", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } +vm-memory = { version = "0.10.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 af6bd3b7..9749f698 100644 --- a/crates/vhost/Cargo.toml +++ b/crates/vhost/Cargo.toml @@ -27,10 +27,10 @@ vhost-user-slave = ["vhost-user"] bitflags = "1.0" libc = "0.2.39" -vmm-sys-util = "0.10.0" -vm-memory = "0.9.0" +vmm-sys-util = "0.11.0" +vm-memory = "0.10.0" [dev-dependencies] tempfile = "3.2.0" -vm-memory = { version = "0.9.0", features=["backend-mmap"] } +vm-memory = { version = "0.10.0", features=["backend-mmap"] } serial_test = "0.5"