From d0814e906cf64c12eead3e2649bb325a1a65fc65 Mon Sep 17 00:00:00 2001 From: Patrick Roy Date: Fri, 11 Nov 2022 13:26:53 +0000 Subject: [PATCH] Update vm-memory and vmm-sys-util in virtio-queue vm-memory 0.9.0 -> 0.10.0 vm-sys-util 0.10.0 -> 0.11.0 Also specify the dev-dependency memoffset using a caret requirement instead of a tilde requirement Signed-off-by: Patrick Roy --- crates/virtio-queue/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/virtio-queue/Cargo.toml b/crates/virtio-queue/Cargo.toml index aec94b28..c631bed7 100644 --- a/crates/virtio-queue/Cargo.toml +++ b/crates/virtio-queue/Cargo.toml @@ -13,15 +13,15 @@ edition = "2021" test-utils = [] [dependencies] -vm-memory = "0.9.0" -vmm-sys-util = "0.10.0" +vm-memory = "0.10.0" +vmm-sys-util = "0.11.0" log = "0.4.17" virtio-bindings = { path="../virtio-bindings", version = "0.1.0" } [dev-dependencies] criterion = "0.3.0" -vm-memory = { version = "0.9.0", features = ["backend-mmap", "backend-atomic"] } -memoffset = "~0" +vm-memory = { version = "0.10.0", features = ["backend-mmap", "backend-atomic"] } +memoffset = "0.7.1" [[bench]] name = "main"