build(deps): bump vhost from 0.2.0 to 0.3.0

Bumps [vhost](https://github.com/rust-vmm/vhost) from 0.2.0 to 0.3.0.
- [Release notes](https://github.com/rust-vmm/vhost/releases)
- [Changelog](https://github.com/rust-vmm/vhost/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rust-vmm/vhost/compare/v0.2.0...v0.3.0)

---
updated-dependencies:
- dependency-name: vhost
  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] 2022-01-04 21:37:23 +00:00 committed by Viresh Kumar
parent faae8d3569
commit 50312eadfc
2 changed files with 15 additions and 3 deletions

16
Cargo.lock generated
View File

@ -276,6 +276,18 @@ dependencies = [
"vmm-sys-util",
]
[[package]]
name = "vhost"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b56bf8f178fc500fe14505fca8b00dec76fc38f2304f461c8d9d7547982311d"
dependencies = [
"bitflags",
"libc",
"vm-memory 0.7.0",
"vmm-sys-util",
]
[[package]]
name = "vhost-device-i2c"
version = "0.1.0"
@ -284,7 +296,7 @@ dependencies = [
"libc",
"log",
"thiserror",
"vhost",
"vhost 0.3.0",
"vhost-user-backend",
"virtio-bindings",
"virtio-queue",
@ -299,7 +311,7 @@ source = "git+https://github.com/rust-vmm/vhost-user-backend?rev=4047c697470cc6c
dependencies = [
"libc",
"log",
"vhost",
"vhost 0.2.0",
"virtio-bindings",
"virtio-queue",
"vm-memory 0.7.0",

View File

@ -16,7 +16,7 @@ clap = { version = "=3.0.0-beta.2", features = ["yaml"] }
libc = ">=0.2.95"
log = ">=0.4.6"
thiserror = "1.0"
vhost = { version = "0.2", features = ["vhost-user-slave"] }
vhost = { version = "0.3", features = ["vhost-user-slave"] }
vhost-user-backend = { git = "https://github.com/rust-vmm/vhost-user-backend", rev = "4047c697470cc6c37e8e1835025b091d2b59c2f7" }
virtio-bindings = ">=0.1"
virtio-queue = { git = "https://github.com/rust-vmm/vm-virtio", rev = "66cda80" }