From 59ea8d9351fb8822c339d3f2b216145bf2835747 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 06:37:52 +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 af297941..fc6389ca 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 1469ad6d..6b1ae18f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,7 +64,7 @@ sysinfo = { version = "0.31.4", 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"