Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 25 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ hyperlight-javascript-sandbox = { path = "src/javascript_sandbox" }
hyperlight-wasm-sandbox = { path = "src/wasm_sandbox" }
hyperlight-sandbox-pyo3-common = { path = "src/sdk/python/pyo3_common" }
hyperlight-common = { version = "0.14.0", default-features = false }
hyperlight-component-macro = { version = "0.14.0" }
hyperlight-component-macro = { version = "0.15.0" }
hyperlight-host = { version = "0.14.0", default-features = false, features = ["executable_heap"] }
hyperlight-wasm = { git = "https://github.com/jsturtevant/hyperlight-wasm", rev = "13906096edc2e014220c11a040242070ce6dee90" } #branch util-compont-fixes
pyo3 = { version = "0.28", features = ["extension-module"] }
Expand All @@ -37,4 +37,8 @@ hyperlight-host = { version = "0.14.0" }
hyperlight-component-util = { git = "https://github.com/jsturtevant/hyperlight-1", rev="cdbed80af127b4d74e2633511cadb07bfea0160e", package = "hyperlight-component-util" }

[patch.crates-io]
hyperlight-component-util = { git = "https://github.com/jsturtevant/hyperlight-1", rev="cdbed80af127b4d74e2633511cadb07bfea0160e", package = "hyperlight-component-util" }
# Keep the patched 0.14 util available for crates that still depend on it.
hyperlight-component-util-014 = { package = "hyperlight-component-util", git = "https://github.com/jsturtevant/hyperlight-1", rev="cdbed80af127b4d74e2633511cadb07bfea0160e" }
# hyperlight-component-macro 0.15 depends on util 0.15, but the published
# util is missing the bindgen fixes this workspace relies on.
hyperlight-component-util = { path = "patches/hyperlight-component-util-0.15" }
14 changes: 14 additions & 0 deletions patches/hyperlight-component-util-0.15/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
name = "hyperlight-component-util"
version = "0.15.0"
edition = "2024"
rust-version = "1.89"
license = "Apache-2.0"
description = "Compatibility shim for the patched Hyperlight component util used by this workspace"
publish = false

[lib]
name = "hyperlight_component_util"

[dependencies]
hyperlight-component-util-compat = { package = "hyperlight-component-util", git = "https://github.com/jsturtevant/hyperlight-1", rev = "cdbed80af127b4d74e2633511cadb07bfea0160e" }
1 change: 1 addition & 0 deletions patches/hyperlight-component-util-0.15/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub use hyperlight_component_util_compat::*;
Loading