diff --git a/Cargo.lock b/Cargo.lock index 8ca7cfd60..715809e9d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1691,7 +1691,7 @@ dependencies = [ "metrics", "metrics-exporter-prometheus", "metrics-util", - "mshv-bindings", + "mshv-bindings 0.6.9", "mshv-ioctls", "oci-spec", "opentelemetry", @@ -2388,14 +2388,26 @@ 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" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1db4449ac7012237b133da366f5b32ce4af1f8caf770486e5a9d54f7f6b73c4c" +checksum = "c30d1b5b76a709e30b46248f52bbb44dde04a659d6d58255c7f06c88d528d210" dependencies = [ "libc", - "mshv-bindings", + "mshv-bindings 0.7.1", "thiserror", "vmm-sys-util", ] diff --git a/src/hyperlight_host/Cargo.toml b/src/hyperlight_host/Cargo.toml index 3735febc0..a6af784f7 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"] }