From 589f93da92b12da300e166cfcab8eeca72d2426a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 May 2021 07:45:53 +0000 Subject: [PATCH] build: Bump kvm-ioctls from 0.8.0 to 0.9.0 Bumps [kvm-ioctls](https://github.com/rust-vmm/kvm-ioctls) from 0.8.0 to 0.9.0. - [Release notes](https://github.com/rust-vmm/kvm-ioctls/releases) - [Changelog](https://github.com/rust-vmm/kvm-ioctls/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-vmm/kvm-ioctls/compare/v0.8.0...v0.9.0) Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- hypervisor/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 01e097161..c04e21cde 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -455,9 +455,9 @@ dependencies = [ [[package]] name = "kvm-ioctls" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74058b16912c6723db02d4ca3ec919b73cd41512ccd3b6202cf91ae8d6c9dce5" +checksum = "f2924454e22895c738e43331ae310459c74a11ded9c97dc250129ee10d2f9ca2" dependencies = [ "kvm-bindings", "libc", diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 4dede0c21..dd2a2d45f 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -16,7 +16,7 @@ epoll = ">=4.0.1" thiserror = "1.0" libc = "0.2.94" log = "0.4.14" -kvm-ioctls = { version = "0.8.0", optional = true } +kvm-ioctls = { version = "0.9.0", optional = true } kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.4.0", features = ["with-serde", "fam-wrappers"], optional = true } mshv-bindings = {git = "https://github.com/cloud-hypervisor/mshv", branch = "master", features = ["with-serde", "fam-wrappers"], optional = true } mshv-ioctls = { git = "https://github.com/cloud-hypervisor/mshv", branch = "master", optional = true}