From a5aac489f314497e1808ac6314267dbfd238743f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 03:09:54 +0000 Subject: [PATCH] Bump hyperlight-common from 0.12.0 to 0.13.0 in /src/wasm_runtime Bumps [hyperlight-common](https://github.com/hyperlight-dev/hyperlight) from 0.12.0 to 0.13.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.12.0...v0.13.0) --- updated-dependencies: - dependency-name: hyperlight-common dependency-version: 0.13.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/wasm_runtime/Cargo.lock | 38 +++++++++++++++++++++++++------------ src/wasm_runtime/Cargo.toml | 2 +- 2 files changed, 27 insertions(+), 13 deletions(-) diff --git a/src/wasm_runtime/Cargo.lock b/src/wasm_runtime/Cargo.lock index 3344952f..0dd11802 100644 --- a/src/wasm_runtime/Cargo.lock +++ b/src/wasm_runtime/Cargo.lock @@ -10,9 +10,9 @@ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" [[package]] name = "anyhow" -version = "1.0.100" +version = "1.0.102" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" +checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" [[package]] name = "arbitrary" @@ -341,9 +341,9 @@ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" [[package]] name = "flatbuffers" -version = "25.9.23" +version = "25.12.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09b6620799e7340ebd9968d2e0708eb82cf1971e9a16821e2091b6d6e475eed5" +checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3" dependencies = [ "bitflags", "rustc_version", @@ -594,6 +594,20 @@ dependencies = [ "thiserror", ] +[[package]] +name = "hyperlight-common" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "725ce602c72dce1d83a87f98f3731e7db62f5ca7e1a255eea875e9bad408766f" +dependencies = [ + "anyhow", + "flatbuffers", + "log", + "spin 0.10.0", + "thiserror", + "tracing-core", +] + [[package]] name = "hyperlight-component-util" version = "0.12.0" @@ -617,7 +631,7 @@ checksum = "cc7f3cfaa19d263d4110b6f1d371ad778d544f4f30369be8eca79092bc868840" dependencies = [ "anyhow", "flatbuffers", - "hyperlight-common", + "hyperlight-common 0.12.0", "hyperlight-guest-tracing", "serde_json", "tracing", @@ -634,7 +648,7 @@ dependencies = [ "cfg-if", "flatbuffers", "glob", - "hyperlight-common", + "hyperlight-common 0.12.0", "hyperlight-guest", "hyperlight-guest-macro", "hyperlight-guest-tracing", @@ -662,7 +676,7 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df0f8d1e992b03c778c6c144f94a81060384e823781c84fae6228cba230d449c" dependencies = [ - "hyperlight-common", + "hyperlight-common 0.12.0", "spin 0.10.0", "tracing", "tracing-core", @@ -1486,18 +1500,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.17" +version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "2.0.17" +version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" dependencies = [ "proc-macro2", "quote", @@ -1802,7 +1816,7 @@ dependencies = [ "cc", "cfg-if", "cfg_aliases", - "hyperlight-common", + "hyperlight-common 0.13.0", "hyperlight-guest", "hyperlight-guest-bin", "hyperlight-wasm-macro", diff --git a/src/wasm_runtime/Cargo.toml b/src/wasm_runtime/Cargo.toml index 730c850a..9d0f6ed8 100644 --- a/src/wasm_runtime/Cargo.toml +++ b/src/wasm_runtime/Cargo.toml @@ -11,7 +11,7 @@ doctest = false bench = false [dependencies] -hyperlight-common = { version = "0.12.0", default-features = false } +hyperlight-common = { version = "0.13.0", default-features = false } hyperlight-guest-bin = { version = "0.12.0", features = [ "printf" ] } hyperlight-guest = { version = "0.12.0" } wasmtime = { version = "36.0.6", default-features = false, features = [ "runtime", "custom-virtual-memory", "custom-native-signals", "component-model" ] }