From 98c242c9b516aac5290ddcec9d33498553b0b15f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 04:19:31 +0000 Subject: [PATCH] chore(deps): Bump hyperlight-host in /src/code-validator/guest Bumps [hyperlight-host](https://github.com/hyperlight-dev/hyperlight) from 0.16.0 to 0.17.0. - [Release notes](https://github.com/hyperlight-dev/hyperlight/releases) - [Changelog](https://github.com/hyperlight-dev/hyperlight/blob/main/CHANGELOG.md) - [Commits](https://github.com/hyperlight-dev/hyperlight/compare/v0.16.0...v0.17.0) --- updated-dependencies: - dependency-name: hyperlight-host dependency-version: 0.17.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/code-validator/guest/Cargo.lock | 43 ++++++++++++++++++++++++++--- src/code-validator/guest/Cargo.toml | 2 +- 2 files changed, 40 insertions(+), 5 deletions(-) diff --git a/src/code-validator/guest/Cargo.lock b/src/code-validator/guest/Cargo.lock index 9e0b007..d671042 100644 --- a/src/code-validator/guest/Cargo.lock +++ b/src/code-validator/guest/Cargo.lock @@ -866,7 +866,6 @@ dependencies = [ "smallvec", "spin 0.12.3", "thiserror", - "tracing", "tracing-core", ] @@ -886,6 +885,7 @@ dependencies = [ "smallvec", "spin 0.12.3", "thiserror", + "tracing", "tracing-core", ] @@ -947,21 +947,23 @@ dependencies = [ [[package]] name = "hyperlight-host" -version = "0.16.0" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef3edc7875e70a3b5cc291a17f78cfc352e24c9a665a5a1bbdbc46ada3df43b5" +checksum = "d85dcf5ae7a578e1b09bdeb76cc3b3ca8e6e57d6395d2f57204aec45c1bbbde9" dependencies = [ "anyhow", + "bindgen", "bitflags 2.13.0", "blake3", "bytemuck", + "cc", "cfg-if", "cfg_aliases", "crossbeam-channel", "flatbuffers", "goblin", "hex", - "hyperlight-common 0.16.0", + "hyperlight-common 0.17.0", "kvm-bindings", "kvm-ioctls", "lazy_static", @@ -972,6 +974,7 @@ dependencies = [ "mshv-ioctls", "oci-spec", "page_size", + "parking_lot", "rand", "rust-embed", "serde", @@ -1382,6 +1385,29 @@ dependencies = [ "winapi", ] +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-link", +] + [[package]] name = "pin-project-lite" version = "0.2.17" @@ -1469,6 +1495,15 @@ dependencies = [ "rustversion", ] +[[package]] +name = "redox_syscall" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags 2.13.0", +] + [[package]] name = "redox_users" version = "0.5.2" diff --git a/src/code-validator/guest/Cargo.toml b/src/code-validator/guest/Cargo.toml index 4d64075..129c01a 100644 --- a/src/code-validator/guest/Cargo.toml +++ b/src/code-validator/guest/Cargo.toml @@ -22,7 +22,7 @@ repository = "https://github.com/anthropics/hyperagent" hyperlight-common = { version = "0.17.0", default-features = false } hyperlight-guest-bin = { version = "0.16.0" } hyperlight-guest = { version = "0.16.0" } -hyperlight-host = { version = "0.16.0", default-features = false, features = ["executable_heap", "kvm", "mshv3"] } +hyperlight-host = { version = "0.17.0", default-features = false, features = ["executable_heap", "kvm", "mshv3"] } [profile.dev] panic = "abort"