build: Bump vm-memory from 0.11.0 to 0.12.0 in /fuzz

Bumps [vm-memory](https://github.com/rust-vmm/vm-memory) from 0.11.0 to 0.12.0.
- [Release notes](https://github.com/rust-vmm/vm-memory/releases)
- [Changelog](https://github.com/rust-vmm/vm-memory/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rust-vmm/vm-memory/commits)

---
updated-dependencies:
- dependency-name: vm-memory
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2023-06-30 23:50:34 +00:00 committed by Rob Bradford
parent 0ff6cdf5eb
commit efb579b224
2 changed files with 31 additions and 20 deletions

49
fuzz/Cargo.lock generated
View File

@ -52,7 +52,7 @@ dependencies = [
"versionize",
"versionize_derive",
"vm-fdt",
"vm-memory",
"vm-memory 0.11.0",
"vm-migration",
"vmm-sys-util",
]
@ -121,7 +121,7 @@ dependencies = [
"vhdx",
"virtio-bindings",
"virtio-queue",
"vm-memory",
"vm-memory 0.11.0",
"vm-virtio",
"vmm-sys-util",
]
@ -166,7 +166,7 @@ dependencies = [
"thiserror",
"tpm",
"tracer",
"vm-memory",
"vm-memory 0.11.0",
"vmm",
"vmm-sys-util",
]
@ -191,7 +191,7 @@ dependencies = [
"virtio-devices",
"virtio-queue",
"vm-device",
"vm-memory",
"vm-memory 0.12.0",
"vm-virtio",
"vmm",
"vmm-sys-util",
@ -264,7 +264,7 @@ dependencies = [
"versionize",
"versionize_derive",
"vm-device",
"vm-memory",
"vm-memory 0.11.0",
"vm-migration",
"vmm-sys-util",
]
@ -326,7 +326,7 @@ dependencies = [
"serde_with",
"thiserror",
"vfio-ioctls",
"vm-memory",
"vm-memory 0.11.0",
"vmm-sys-util",
]
@ -420,7 +420,7 @@ version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d3adb7b28e189741eca3b1a4a27de0bf15e0907c9d4b0c74bd2d7d84ef72e08"
dependencies = [
"vm-memory",
"vm-memory 0.11.0",
]
[[package]]
@ -461,7 +461,7 @@ dependencies = [
"versionize_derive",
"virtio-bindings",
"virtio-queue",
"vm-memory",
"vm-memory 0.11.0",
"vm-virtio",
"vmm-sys-util",
]
@ -494,7 +494,7 @@ dependencies = [
"vfio_user",
"vm-allocator",
"vm-device",
"vm-memory",
"vm-memory 0.11.0",
"vm-migration",
"vmm-sys-util",
]
@ -794,7 +794,7 @@ dependencies = [
"log",
"thiserror",
"vfio-bindings",
"vm-memory",
"vm-memory 0.11.0",
"vmm-sys-util",
]
@ -811,7 +811,7 @@ dependencies = [
"serde_json",
"thiserror",
"vfio-bindings",
"vm-memory",
"vm-memory 0.11.0",
"vmm-sys-util",
]
@ -836,7 +836,7 @@ checksum = "84f81f436bca4541f4d33172e1202882c9d437db34ed17fc6d84c8ff2bde21f5"
dependencies = [
"bitflags 1.3.2",
"libc",
"vm-memory",
"vm-memory 0.11.0",
"vmm-sys-util",
]
@ -875,7 +875,7 @@ dependencies = [
"virtio-queue",
"vm-allocator",
"vm-device",
"vm-memory",
"vm-memory 0.11.0",
"vm-migration",
"vm-virtio",
"vmm-sys-util",
@ -889,7 +889,7 @@ checksum = "91aebb1df33db33cbf04d4c2445e4f78d0b0c8e65acfd16a4ee95ef63ca252f8"
dependencies = [
"log",
"virtio-bindings",
"vm-memory",
"vm-memory 0.11.0",
"vmm-sys-util",
]
@ -899,7 +899,7 @@ version = "0.1.0"
dependencies = [
"arch",
"libc",
"vm-memory",
"vm-memory 0.11.0",
]
[[package]]
@ -911,7 +911,7 @@ dependencies = [
"serde",
"thiserror",
"vfio-ioctls",
"vm-memory",
"vm-memory 0.11.0",
"vmm-sys-util",
]
@ -931,6 +931,17 @@ dependencies = [
"winapi",
]
[[package]]
name = "vm-memory"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a77c7a0891cbac53618f5f6eec650ed1dc4f7e506bbe14877aff49d94b8408b0"
dependencies = [
"libc",
"thiserror",
"winapi",
]
[[package]]
name = "vm-migration"
version = "0.1.0"
@ -941,7 +952,7 @@ dependencies = [
"thiserror",
"versionize",
"versionize_derive",
"vm-memory",
"vm-memory 0.11.0",
]
[[package]]
@ -950,7 +961,7 @@ version = "0.1.0"
dependencies = [
"log",
"virtio-queue",
"vm-memory",
"vm-memory 0.11.0",
]
[[package]]
@ -993,7 +1004,7 @@ dependencies = [
"virtio-queue",
"vm-allocator",
"vm-device",
"vm-memory",
"vm-memory 0.11.0",
"vm-migration",
"vm-virtio",
"vmm-sys-util",

View File

@ -25,7 +25,7 @@ virtio-devices = { path = "../virtio-devices" }
virtio-queue = "0.8.0"
vmm = { path = "../vmm" }
vmm-sys-util = "0.11.1"
vm-memory = "0.11.0"
vm-memory = "0.12.0"
vm-device = { path = "../vm-device" }
vm-virtio = { path = "../vm-virtio" }