Skip to content
Merged
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
63 changes: 35 additions & 28 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ exclude = [ "src/wasm_runtime", "src/rust_wasm_samples", "src/hyperlight_wasm_m
resolver = "2"

[workspace.dependencies]
hyperlight-host = { version = "0.6.1", default-features = false, features = ["executable_heap"] }
hyperlight-host = { version = "0.7.0", default-features = false, features = ["executable_heap", "init-paging"] }
4 changes: 2 additions & 2 deletions src/hyperlight_wasm_macro/Cargo.lock

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

2 changes: 1 addition & 1 deletion src/hyperlight_wasm_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ proc-macro2 = { version = "1.0.93" }
syn = { version = "2.0.96" }
itertools = { version = "0.14.0" }
prettyplease = { version = "0.2.31" }
hyperlight-component-util = { version = "0.6.1" }
hyperlight-component-util = { version = "0.7.0" }
24 changes: 12 additions & 12 deletions src/wasm_runtime/Cargo.lock

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

6 changes: 3 additions & 3 deletions src/wasm_runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ doctest = false
bench = false

[dependencies]
hyperlight-common = { version = "0.6.1", default-features = false }
hyperlight-guest-bin = { version = "0.6.1", features = [ "printf" ] }
hyperlight-guest = { version = "0.6.1" }
hyperlight-common = { version = "0.7.0", default-features = false }
hyperlight-guest-bin = { version = "0.7.0", features = [ "printf" ] }
hyperlight-guest = { version = "0.7.0" }
wasmtime = { version = "34.0.1", default-features = false, features = [ "runtime", "custom-virtual-memory", "custom-native-signals", "component-model" ] }
hyperlight-wasm-macro = { path = "../hyperlight_wasm_macro" }
spin = "0.9.8"
Expand Down
Loading