From d8d8602a54fa940531168c3a5c94c8d8417acb1d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jan 2025 01:21:59 +0000 Subject: [PATCH] Bump kvm-bindings from 0.10.0 to 0.11.0 Bumps [kvm-bindings](https://github.com/rust-vmm/kvm) from 0.10.0 to 0.11.0. - [Release notes](https://github.com/rust-vmm/kvm/releases) - [Changelog](https://github.com/rust-vmm/kvm/blob/v0.11.0/CHANGELOG.md) - [Commits](https://github.com/rust-vmm/kvm/compare/v0.10.0...v0.11.0) --- updated-dependencies: - dependency-name: kvm-bindings dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 13 +++++++++++-- src/hyperlight_host/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b8a0c21f3..643c436ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1097,7 +1097,7 @@ dependencies = [ "goblin", "hyperlight-common", "hyperlight-testing", - "kvm-bindings", + "kvm-bindings 0.11.0", "kvm-ioctls", "lazy_static", "libc", @@ -1430,6 +1430,15 @@ dependencies = [ "vmm-sys-util", ] +[[package]] +name = "kvm-bindings" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "501bc0717c6a9fc409f29047ebeb6040a4d304344698abb268c4c6a440e6a09a" +dependencies = [ + "vmm-sys-util", +] + [[package]] name = "kvm-ioctls" version = "0.19.1" @@ -1437,7 +1446,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e013ae7fcd2c6a8f384104d16afe7ea02969301ea2bb2a56e44b011ebc907cab" dependencies = [ "bitflags 2.8.0", - "kvm-bindings", + "kvm-bindings 0.10.0", "libc", "vmm-sys-util", ] diff --git a/src/hyperlight_host/Cargo.toml b/src/hyperlight_host/Cargo.toml index 9cf699cf7..c5041796d 100644 --- a/src/hyperlight_host/Cargo.toml +++ b/src/hyperlight_host/Cargo.toml @@ -71,7 +71,7 @@ windows-version = "0.1" [target.'cfg(unix)'.dependencies] seccompiler = { version = "0.4.0", optional = true } -kvm-bindings = { version = "0.10.0", features = ["fam-wrappers"], optional = true } +kvm-bindings = { version = "0.11.0", features = ["fam-wrappers"], optional = true } kvm-ioctls = { version = "0.19.1", optional = true } mshv-bindings2 = { package="mshv-bindings", version = "=0.2.1", optional = true } mshv-ioctls2 = { package="mshv-ioctls", version = "=0.2.1", optional = true}