From ca1d73d6752ebbb451b2c65bf3ccfb5e9b1a6ea2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 09:57:50 +0000 Subject: [PATCH] build(deps): Bump kvm-bindings in the rust-vmm group Bumps the rust-vmm group with 1 update: [kvm-bindings](https://github.com/rust-vmm/kvm-bindings). Updates `kvm-bindings` from 0.9.1 to 0.10.0 - [Release notes](https://github.com/rust-vmm/kvm-bindings/releases) - [Changelog](https://github.com/rust-vmm/kvm-bindings/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-vmm/kvm-bindings/compare/v0.9.1...v0.10.0) --- updated-dependencies: - dependency-name: kvm-bindings dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-vmm ... Signed-off-by: dependabot[bot] --- Cargo.lock | 10 ++++++++-- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 58b42ad7..9eabaeed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -709,6 +709,12 @@ dependencies = [ "vmm-sys-util", ] +[[package]] +name = "kvm-bindings" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa4933174d0cc4b77b958578cd45784071cc5ae212c2d78fbd755aaaa6dfa71a" + [[package]] name = "kvm-ioctls" version = "0.18.0" @@ -716,7 +722,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "92c2176b91f68903b54ac8c6185bada7d607ca6110998976ff15c032f88a7d39" dependencies = [ "bitflags 2.6.0", - "kvm-bindings", + "kvm-bindings 0.9.1", "libc", "vmm-sys-util", ] @@ -1451,7 +1457,7 @@ dependencies = [ "gdbstub", "gdbstub_arch", "hermit-entry", - "kvm-bindings", + "kvm-bindings 0.10.0", "kvm-ioctls", "libc", "log", diff --git a/Cargo.toml b/Cargo.toml index ef1a01e7..d45d7f94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,7 +64,7 @@ sysinfo = { version = "0.32.0", default-features = false, features = ["system"] vm-fdt = "0.3" [target.'cfg(target_os = "linux")'.dependencies] -kvm-bindings = "0.9" +kvm-bindings = "0.10" kvm-ioctls = "0.18" vmm-sys-util = "0.12"