From 99a7d04b7658699ecb8c5aca37255c3a13d1056e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 04:19:33 +0000 Subject: [PATCH] chore(deps): Bump hyperlight-guest in /src/code-validator/guest Bumps [hyperlight-guest](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-guest 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 | 17 +++++++++++++++-- src/code-validator/guest/Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/src/code-validator/guest/Cargo.lock b/src/code-validator/guest/Cargo.lock index 9e0b007..998930d 100644 --- a/src/code-validator/guest/Cargo.lock +++ b/src/code-validator/guest/Cargo.lock @@ -839,7 +839,7 @@ dependencies = [ "clap", "hashbrown", "hyperlight-common 0.17.0", - "hyperlight-guest", + "hyperlight-guest 0.17.0", "hyperlight-guest-bin", "nom 8.0.0", "regex-automata", @@ -902,6 +902,19 @@ dependencies = [ "tracing", ] +[[package]] +name = "hyperlight-guest" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "816f673f3f8ef6d5703796bf92927b85177ad1baac6f391551a88451a9e46a7e" +dependencies = [ + "anyhow", + "flatbuffers", + "hyperlight-common 0.17.0", + "serde_json", + "tracing", +] + [[package]] name = "hyperlight-guest-bin" version = "0.16.0" @@ -911,7 +924,7 @@ dependencies = [ "buddy_system_allocator", "flatbuffers", "hyperlight-common 0.16.0", - "hyperlight-guest", + "hyperlight-guest 0.16.0", "hyperlight-guest-macro", "hyperlight-guest-tracing", "hyperlight-libc", diff --git a/src/code-validator/guest/Cargo.toml b/src/code-validator/guest/Cargo.toml index 4d64075..43c41ea 100644 --- a/src/code-validator/guest/Cargo.toml +++ b/src/code-validator/guest/Cargo.toml @@ -21,7 +21,7 @@ repository = "https://github.com/anthropics/hyperagent" # hyperlight-js 0.3.x builds against. hyperlight-common = { version = "0.17.0", default-features = false } hyperlight-guest-bin = { version = "0.16.0" } -hyperlight-guest = { version = "0.16.0" } +hyperlight-guest = { version = "0.17.0" } hyperlight-host = { version = "0.16.0", default-features = false, features = ["executable_heap", "kvm", "mshv3"] } [profile.dev]