From f1c0f180b5ba4a2a27440fec76e1c153ff047f13 Mon Sep 17 00:00:00 2001 From: Simon Davies Date: Wed, 9 Sep 2026 10:34:36 +0100 Subject: [PATCH] chore(deps): keep mshv crates on matching versions Use mshv-bindings and mshv-ioctls 0.7.1 together to keep their shared types compatible. Group mshv-* Dependabot updates. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Signed-off-by: Simon Davies --- .github/dependabot.yml | 3 +++ Cargo.lock | 8 ++++---- src/hyperlight_host/Cargo.toml | 4 ++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 15cd5df8c4..e3b759e973 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,6 +16,9 @@ updates: - "kind/dependencies" open-pull-requests-limit: 20 groups: + mshv: + patterns: + - "mshv-*" wasm-tools: patterns: - "wasmparser" diff --git a/Cargo.lock b/Cargo.lock index 752e44d6d0..78f10d4c48 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2378,9 +2378,9 @@ dependencies = [ [[package]] name = "mshv-bindings" -version = "0.6.9" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83303108160c2b7a7bdd25000ee679384e19471386d23e501ed832574c9229ef" +checksum = "9b4b2414499597c6e31b1cd25239f19e8e8c55023b3bf8fcfa44d927cff6a123" dependencies = [ "libc", "num_enum", @@ -2390,9 +2390,9 @@ dependencies = [ [[package]] name = "mshv-ioctls" -version = "0.6.9" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1db4449ac7012237b133da366f5b32ce4af1f8caf770486e5a9d54f7f6b73c4c" +checksum = "c30d1b5b76a709e30b46248f52bbb44dde04a659d6d58255c7f06c88d528d210" dependencies = [ "libc", "mshv-bindings", diff --git a/src/hyperlight_host/Cargo.toml b/src/hyperlight_host/Cargo.toml index f85c358b65..fa4a524ecd 100644 --- a/src/hyperlight_host/Cargo.toml +++ b/src/hyperlight_host/Cargo.toml @@ -88,8 +88,8 @@ 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-ioctls = { version = "0.6", optional = true} +mshv-bindings = { version = "0.7", optional = true } +mshv-ioctls = { version = "0.7", optional = true} [dev-dependencies] uuid = { version = "1.23.3", features = ["v4"] }