build(deps): bump vm-memory from 0.6.0 to 0.7.0

Bumps [vm-memory](https://github.com/rust-vmm/vm-memory) from 0.6.0 to 0.7.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/compare/v0.6.0...v0.7.0)

---
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] 2021-10-27 08:05:40 +00:00 committed by Viresh Kumar
parent 078f2f0bde
commit fab448bc99
2 changed files with 15 additions and 5 deletions

18
Cargo.lock generated
View File

@ -282,7 +282,7 @@ checksum = "2d23ddeb452fb4f837526c6298cc8a2f4948e5595b0328a3d61b5eebe51874d7"
dependencies = [
"bitflags",
"libc",
"vm-memory",
"vm-memory 0.6.0",
"vmm-sys-util",
]
@ -298,7 +298,7 @@ dependencies = [
"vhost",
"vhost-user-backend",
"virtio-bindings",
"vm-memory",
"vm-memory 0.7.0",
"vmm-sys-util",
]
@ -313,7 +313,7 @@ dependencies = [
"vhost",
"virtio-bindings",
"virtio-queue",
"vm-memory",
"vm-memory 0.6.0",
"vmm-sys-util",
]
@ -329,7 +329,7 @@ version = "0.1.0"
source = "git+https://github.com/rust-vmm/vm-virtio?rev=6013dd9#6013dd91b2e6eb77ea10c6bdeda8f5eb18de6dda"
dependencies = [
"log",
"vm-memory",
"vm-memory 0.6.0",
"vmm-sys-util",
]
@ -344,6 +344,16 @@ dependencies = [
"winapi",
]
[[package]]
name = "vm-memory"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "339d4349c126fdcd87e034631d7274370cf19eb0e87b33166bcd956589fc72c5"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "vmm-sys-util"
version = "0.9.0"

View File

@ -20,5 +20,5 @@ thiserror = "1.0"
vhost = { version = "0.2", features = ["vhost-user-slave"] }
vhost-user-backend = { git = "https://github.com/rust-vmm/vhost-user-backend", rev = "bd6b53348f06055abcb2b7254168d716b742f383" }
virtio-bindings = ">=0.1"
vm-memory = "0.6"
vm-memory = "0.7"
vmm-sys-util = "=0.9.0"