From 449b8f58e8fd5e5e8243b69d28d684e09d306b83 Mon Sep 17 00:00:00 2001 From: Stefano Garzarella Date: Thu, 8 Jan 2026 12:04:56 +0100 Subject: [PATCH] Pin vm-memory to 0.17.1 As reported in https://github.com/rust-vmm/vm-memory/pull/369, vm-memory 0.17.2: breaks the vhost-user-backend crate, whose vring types require some type `M: GuestAddressSpace` with the expectation that `M::memory()` will return something that derefs to an `0.17::GuestMemory`" So let's pin vm-memory to 0.17.1 for now while waiting for 0.17.3 release that will include that fix. Signed-off-by: Stefano Garzarella --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5dba6e6..4dd5893 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,5 +9,5 @@ members = [ [workspace.dependencies] virtio-bindings = "0.2.6" virtio-queue = "0.17.0" -vm-memory = "0.17.1" +vm-memory = "=0.17.1" vmm-sys-util = "0.15.0"