From 95ff6ec3bbe6c7d65237316a79a24fdccdc43179 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Aug 2026 23:58:14 +0000 Subject: [PATCH] chore(deps): bump mshv-ioctls from 0.6.9 to 0.7.0 Bumps [mshv-ioctls](https://github.com/rust-vmm/mshv) from 0.6.9 to 0.7.0. - [Release notes](https://github.com/rust-vmm/mshv/releases) - [Commits](https://github.com/rust-vmm/mshv/compare/mshv-ioctls-v0.6.9...mshv-ioctls-v0.7.0) --- updated-dependencies: - dependency-name: mshv-ioctls dependency-version: 0.7.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 ++++++++++++++++---- src/hyperlight_host/Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d5cfeac6c4..f6ff3a8a56 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1699,7 +1699,7 @@ dependencies = [ "metrics", "metrics-exporter-prometheus", "metrics-util", - "mshv-bindings", + "mshv-bindings 0.6.9", "mshv-ioctls", "oci-spec", "opentelemetry", @@ -2384,14 +2384,26 @@ dependencies = [ "zerocopy", ] +[[package]] +name = "mshv-bindings" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edab7a942dd5a9976cb30d316948ede2c3d0117ee4addf3404b48cb6a8666046" +dependencies = [ + "libc", + "num_enum", + "vmm-sys-util", + "zerocopy", +] + [[package]] name = "mshv-ioctls" -version = "0.6.9" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1db4449ac7012237b133da366f5b32ce4af1f8caf770486e5a9d54f7f6b73c4c" +checksum = "5b7d71f039b096bdbb772f2181b0a62c28b9d9a0682ceec1839537b1375c1cd6" dependencies = [ "libc", - "mshv-bindings", + "mshv-bindings 0.7.0", "thiserror", "vmm-sys-util", ] diff --git a/src/hyperlight_host/Cargo.toml b/src/hyperlight_host/Cargo.toml index 3735febc00..a6af784f7f 100644 --- a/src/hyperlight_host/Cargo.toml +++ b/src/hyperlight_host/Cargo.toml @@ -83,7 +83,7 @@ lazy_static = "1.4.0" 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-ioctls = { version = "0.6", optional = true} +mshv-ioctls = { version = "0.7", optional = true} [dev-dependencies] uuid = { version = "1.23.3", features = ["v4"] }