From e15dd0133933e6d6970ae8d276de34d573dba941 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 03:09:43 +0000 Subject: [PATCH] chore(deps): Bump hyperlight-common in /src/code-validator/guest Bumps [hyperlight-common](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-common 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 | 29 ++++++++++++++++++++++++----- src/code-validator/guest/Cargo.toml | 2 +- 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/src/code-validator/guest/Cargo.lock b/src/code-validator/guest/Cargo.lock index bc54c4c0..9e0b007b 100644 --- a/src/code-validator/guest/Cargo.lock +++ b/src/code-validator/guest/Cargo.lock @@ -838,7 +838,7 @@ dependencies = [ "bindgen", "clap", "hashbrown", - "hyperlight-common", + "hyperlight-common 0.17.0", "hyperlight-guest", "hyperlight-guest-bin", "nom 8.0.0", @@ -870,6 +870,25 @@ dependencies = [ "tracing-core", ] +[[package]] +name = "hyperlight-common" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ad5576d6ef947dc2822c2f5038ddff8325c158ddef4cbabf9d0b125294cdb0f" +dependencies = [ + "anyhow", + "bitflags 2.13.0", + "bytemuck", + "bytes", + "fixedbitset", + "flatbuffers", + "log", + "smallvec", + "spin 0.12.3", + "thiserror", + "tracing-core", +] + [[package]] name = "hyperlight-guest" version = "0.16.0" @@ -878,7 +897,7 @@ checksum = "4cb2e6548e2b837400a7b27a5ed6a6570c28801253e6ec80959700dd63925c40" dependencies = [ "anyhow", "flatbuffers", - "hyperlight-common", + "hyperlight-common 0.16.0", "serde_json", "tracing", ] @@ -891,7 +910,7 @@ checksum = "cdeccde6490e76aefe2e8ca17e1a225d2da3338f020f17533b8ee0cee7cf9a11" dependencies = [ "buddy_system_allocator", "flatbuffers", - "hyperlight-common", + "hyperlight-common 0.16.0", "hyperlight-guest", "hyperlight-guest-macro", "hyperlight-guest-tracing", @@ -920,7 +939,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d8b39160c2001db5c79916d946d04a601e4e1f2827e2c785d477b31e48f5e514" dependencies = [ - "hyperlight-common", + "hyperlight-common 0.16.0", "spin 0.12.3", "tracing", "tracing-core", @@ -942,7 +961,7 @@ dependencies = [ "flatbuffers", "goblin", "hex", - "hyperlight-common", + "hyperlight-common 0.16.0", "kvm-bindings", "kvm-ioctls", "lazy_static", diff --git a/src/code-validator/guest/Cargo.toml b/src/code-validator/guest/Cargo.toml index 52470e20..4d64075e 100644 --- a/src/code-validator/guest/Cargo.toml +++ b/src/code-validator/guest/Cargo.toml @@ -19,7 +19,7 @@ repository = "https://github.com/anthropics/hyperagent" [workspace.dependencies] # Hyperlight core crates — published on crates.io, pinned to the version that # hyperlight-js 0.3.x builds against. -hyperlight-common = { version = "0.16.0", default-features = false } +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"] }