build: Bump vm-memory from 0.16.0 to 0.16.1

Bump vm-memory from 0.16.0 to 0.16.1 to include the implementations of
ReadVolatile and WriteVolatile for TcpStream.

Signed-off-by: Jinrong Liang <cloudliang@tencent.com>
This commit is contained in:
Jinrong Liang 2024-11-14 10:39:23 +08:00 committed by Rob Bradford
parent 3d7661664d
commit 4f18476cca
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -2423,9 +2423,9 @@ source = "git+https://github.com/rust-vmm/vm-fdt?branch=main#ef5bd734f5f66fb0772
[[package]] [[package]]
name = "vm-memory" name = "vm-memory"
version = "0.16.0" version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2919f87420b6998a131eb7c78843890295e91a3f8f786ccc925c8d387b75121" checksum = "f1720e7240cdc739f935456eb77f370d7e9b2a3909204da1e2b47bef1137a013"
dependencies = [ dependencies = [
"arc-swap", "arc-swap",
"libc", "libc",

View File

@ -117,5 +117,5 @@ vhost-user-backend = { git = "https://github.com/rust-vmm/vhost", rev = "d983ae0
virtio-bindings = "0.2.4" virtio-bindings = "0.2.4"
virtio-queue = "0.14.0" virtio-queue = "0.14.0"
vm-fdt = { git = "https://github.com/rust-vmm/vm-fdt", branch = "main" } vm-fdt = { git = "https://github.com/rust-vmm/vm-fdt", branch = "main" }
vm-memory = "0.16.0" vm-memory = "0.16.1"
vmm-sys-util = "0.12.1" vmm-sys-util = "0.12.1"