build: bump vmm-sys-util from 0.9.0 to 0.10.0

This patch requires the vhost-user-backend crate to be bumped from 0.5.0
to 0.5.1.

Bumps [vmm-sys-util](https://github.com/rust-vmm/vmm-sys-util) from 0.9.0 to 0.10.0.
- [Release notes](https://github.com/rust-vmm/vmm-sys-util/releases)
- [Changelog](https://github.com/rust-vmm/vmm-sys-util/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rust-vmm/vmm-sys-util/compare/v0.9.0...v0.10.0)

---
updated-dependencies:
- dependency-name: vmm-sys-util
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
This commit is contained in:
dependabot[bot] 2022-07-15 23:12:46 +00:00
parent f21fc1dcb6
commit b440cb7d23
20 changed files with 25 additions and 25 deletions

8
Cargo.lock generated
View File

@ -1200,9 +1200,9 @@ dependencies = [
[[package]]
name = "vhost-user-backend"
version = "0.5.0"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3eeb6723bbee20dbc2db95c575941922fb96e77eb41786ecd1c8c03348709c4c"
checksum = "ded8a9f15b09e61bb8a501d0a7a38056f4c1bd7f51cedcd41081c0e4233d5aa6"
dependencies = [
"libc",
"log",
@ -1412,9 +1412,9 @@ dependencies = [
[[package]]
name = "vmm-sys-util"
version = "0.9.0"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "733537bded03aaa93543f785ae997727b30d1d9f4a03b7861d23290474242e11"
checksum = "08604d7be03eb26e33b3cee3ed4aef2bf550b305d1cca60e84da5d28d3790b62"
dependencies = [
"bitflags",
"libc",

View File

@ -30,7 +30,7 @@ serde_json = "1.0.82"
signal-hook = "0.3.14"
thiserror = "1.0.31"
vmm = { path = "vmm" }
vmm-sys-util = "0.9.0"
vmm-sys-util = "0.10.0"
vm-memory = "0.8.0"
[build-dependencies]

View File

@ -5,4 +5,4 @@ authors = ["The Cloud Hypervisor Authors"]
edition = "2021"
[dependencies]
vmm-sys-util = "0.9.0"
vmm-sys-util = "0.10.0"

View File

@ -22,7 +22,7 @@ versionize = "0.1.6"
versionize_derive = "0.1.4"
vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-bitmap"] }
vm-migration = { path = "../vm-migration" }
vmm-sys-util = { version = "0.9.0", features = ["with-serde"] }
vmm-sys-util = { version = "0.10.0", features = ["with-serde"] }
[target.'cfg(target_arch = "aarch64")'.dependencies]
fdt_parser = { version = "0.1.3", package = 'fdt'}

View File

@ -20,5 +20,5 @@ virtio-bindings = { version = "0.1.0", features = ["virtio-v5_0_0"] }
virtio-queue = "0.4.0"
vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
vm-virtio = { path = "../vm-virtio" }
vmm-sys-util = "0.9.0"
vmm-sys-util = "0.10.0"

View File

@ -8,7 +8,7 @@ use std::fs::File;
use std::os::unix::io::AsRawFd;
use thiserror::Error;
use vmm_sys_util::eventfd::EventFd;
use vmm_sys_util::{ioctl_expr, ioctl_io_nr, ioctl_ioc_nr};
use vmm_sys_util::{ioctl_io_nr, ioctl_ioc_nr};
#[derive(Error, Debug)]
pub enum DiskFileError {

View File

@ -19,7 +19,7 @@ versionize_derive = "0.1.4"
vm-device = { path = "../vm-device" }
vm-memory = "0.8.0"
vm-migration = { path = "../vm-migration" }
vmm-sys-util = "0.9.0"
vmm-sys-util = "0.10.0"
[features]
default = []

View File

@ -24,7 +24,7 @@ mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", branch = "main", optio
serde = { version = "1.0.139", features = ["rc", "derive"] }
serde_json = "1.0.82"
vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic"] }
vmm-sys-util = { version = "0.9.0", features = ["with-serde"] }
vmm-sys-util = { version = "0.10.0", features = ["with-serde"] }
[target.'cfg(target_arch = "x86_64")'.dependencies.iced-x86]
version = "1.17.0"

View File

@ -89,7 +89,7 @@ pub use kvm_ioctls::{Cap, Kvm};
use std::mem;
use thiserror::Error;
#[cfg(feature = "tdx")]
use vmm_sys_util::{ioctl::ioctl_with_val, ioctl_expr, ioctl_ioc_nr, ioctl_iowr_nr};
use vmm_sys_util::{ioctl::ioctl_with_val, ioctl_ioc_nr, ioctl_iowr_nr};
///
/// Export generically-named wrappers of kvm-bindings for Unix-based platforms
///

View File

@ -5,4 +5,4 @@ authors = ["The Chromium OS Authors"]
edition = "2021"
[dependencies]
vmm-sys-util = "0.9.0"
vmm-sys-util = "0.10.0"

View File

@ -18,7 +18,7 @@ virtio-bindings = "0.1.0"
virtio-queue = "0.4.0"
vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
vm-virtio = { path = "../vm-virtio" }
vmm-sys-util = "0.9.0"
vmm-sys-util = "0.10.0"
[dev-dependencies]
once_cell = "1.13.0"

View File

@ -15,7 +15,7 @@ byteorder = "1.4.3"
hypervisor = { path = "../hypervisor" }
vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false }
vfio_user = { path = "../vfio_user" }
vmm-sys-util = "0.9.0"
vmm-sys-util = "0.10.0"
libc = "0.2.126"
log = "0.4.17"
serde = { version="1.0.139", features=["derive"] }

View File

@ -13,4 +13,4 @@ byteorder = "1.4.3"
libc = "0.2.126"
log = "0.4.17"
remain = "0.2.3"
vmm-sys-util = "0.9.0"
vmm-sys-util = "0.10.0"

View File

@ -6,4 +6,4 @@ edition = "2021"
[dependencies]
libc = "0.2.126"
log = "0.4.17"
vmm-sys-util = "0.9.0"
vmm-sys-util = "0.10.0"

View File

@ -10,5 +10,5 @@ epoll = "4.3.1"
libc = "0.2.126"
once_cell = "1.13.0"
ssh2 = { version = "0.9.1", features = ["vendored-openssl"]}
vmm-sys-util = "0.9.0"
vmm-sys-util = "0.10.0"
wait-timeout = "0.2.0"

View File

@ -14,10 +14,10 @@ log = "0.4.17"
option_parser = { path = "../option_parser" }
qcow = { path = "../qcow" }
vhost = { version = "0.4.0", features = ["vhost-user-slave"] }
vhost-user-backend = "0.5.0"
vhost-user-backend = "0.5.1"
virtio-bindings = "0.1.0"
vm-memory = "0.8.0"
vmm-sys-util = "0.9.0"
vmm-sys-util = "0.10.0"
[build-dependencies]
clap = { version = "3.2.12", features = ["cargo"] }

View File

@ -13,10 +13,10 @@ log = "0.4.17"
net_util = { path = "../net_util" }
option_parser = { path = "../option_parser" }
vhost = { version = "0.4.0", features = ["vhost-user-slave"] }
vhost-user-backend = "0.5.0"
vhost-user-backend = "0.5.1"
virtio-bindings = "0.1.0"
vm-memory = "0.8.0"
vmm-sys-util = "0.9.0"
vmm-sys-util = "0.10.0"
[build-dependencies]
clap = { version = "3.2.12", features = ["cargo"] }

View File

@ -36,4 +36,4 @@ vm-device = { path = "../vm-device" }
vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
vm-migration = { path = "../vm-migration" }
vm-virtio = { path = "../vm-virtio" }
vmm-sys-util = "0.9.0"
vmm-sys-util = "0.10.0"

View File

@ -17,5 +17,5 @@ serde = { version = "1.0.139", features = ["rc", "derive"] }
serde_json = "1.0.82"
vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false }
vm-memory = { version = "0.8.0", features = ["backend-mmap"] }
vmm-sys-util = "0.9.0"
vmm-sys-util = "0.10.0"

View File

@ -56,4 +56,4 @@ vm-device = { path = "../vm-device" }
vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
vm-migration = { path = "../vm-migration" }
vm-virtio = { path = "../vm-virtio" }
vmm-sys-util = { version = "0.9.0", features = ["with-serde"] }
vmm-sys-util = { version = "0.10.0", features = ["with-serde"] }