From 6892333ce0ecb52ebe6cbfa7d0f51384761e47d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 4 Sep 2026 11:49:25 +0000 Subject: [PATCH] chore(deps): bump mshv-bindings from 0.6.9 to 0.7.1 Bumps [mshv-bindings](https://github.com/rust-vmm/mshv) from 0.6.9 to 0.7.1. - [Release notes](https://github.com/rust-vmm/mshv/releases) - [Commits](https://github.com/rust-vmm/mshv/compare/mshv-bindings-v0.6.9...mshv-bindings-v0.7.1) --- updated-dependencies: - dependency-name: mshv-bindings dependency-version: 0.7.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++++++++-- src/hyperlight_host/Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8ca7cfd60..4af089ad3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1691,7 +1691,7 @@ dependencies = [ "metrics", "metrics-exporter-prometheus", "metrics-util", - "mshv-bindings", + "mshv-bindings 0.7.1", "mshv-ioctls", "oci-spec", "opentelemetry", @@ -2388,6 +2388,18 @@ dependencies = [ "zerocopy", ] +[[package]] +name = "mshv-bindings" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4b2414499597c6e31b1cd25239f19e8e8c55023b3bf8fcfa44d927cff6a123" +dependencies = [ + "libc", + "num_enum", + "vmm-sys-util", + "zerocopy", +] + [[package]] name = "mshv-ioctls" version = "0.6.9" @@ -2395,7 +2407,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1db4449ac7012237b133da366f5b32ce4af1f8caf770486e5a9d54f7f6b73c4c" dependencies = [ "libc", - "mshv-bindings", + "mshv-bindings 0.6.9", "thiserror", "vmm-sys-util", ] diff --git a/src/hyperlight_host/Cargo.toml b/src/hyperlight_host/Cargo.toml index f85c358b6..05cd13f12 100644 --- a/src/hyperlight_host/Cargo.toml +++ b/src/hyperlight_host/Cargo.toml @@ -88,7 +88,7 @@ lazy_static = "1.4.0" [target.'cfg(target_os = "linux")'.dependencies] kvm-bindings = { version = "0.14", features = ["fam-wrappers"], optional = true } kvm-ioctls = { version = "0.25", optional = true } -mshv-bindings = { version = "0.6", optional = true } +mshv-bindings = { version = "0.7", optional = true } mshv-ioctls = { version = "0.6", optional = true} [dev-dependencies]