Skip to content

Commit 57ebec3

Browse files
committed
Update to lastest Hyperlight
Signed-off-by: James Sturtevant <jsturtevant@gmail.com>
1 parent 8835d40 commit 57ebec3

File tree

6 files changed

+47
-46
lines changed

6 files changed

+47
-46
lines changed

Cargo.lock

Lines changed: 21 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,4 @@ repository = "https://github.com/hyperlight-dev/hyperlight-wasm"
1313
readme = "README.md"
1414

1515
[workspace.dependencies]
16-
hyperlight-host = { version = "0.11.0", default-features = false, features = ["executable_heap", "init-paging"] }
17-
18-
[patch.crates-io]
19-
hyperlight-host = { git = "https://github.com/hyperlight-dev/hyperlight", rev = "5bfe0bfdf2f168b48bf6242d8eed84d54fab1186" }
16+
hyperlight-host = { version = "0.12.0", default-features = false, features = ["executable_heap", "init-paging"] }

src/hyperlight_wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ windows = { version = "0.62", features = ["Win32_System_Threading"] }
7474
page_size = "0.6.0"
7575

7676
[dev-dependencies]
77-
hyperlight-component-macro = { version = "0.11.0" }
77+
hyperlight-component-macro = { version = "0.12.0" }
7878
examples_common = { path = "../examples_common" }
7979
criterion = { version = "0.8.1", features = ["html_reports"] }
8080
crossbeam-queue = "0.3"

src/hyperlight_wasm_macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ proc-macro2 = { version = "1.0.103" }
1616
syn = { version = "2.0.111" }
1717
itertools = { version = "0.14.0" }
1818
prettyplease = { version = "0.2.37" }
19-
hyperlight-component-util = { version = "0.11.0" }
19+
hyperlight-component-util = { version = "0.12.0" }

src/wasm_runtime/Cargo.lock

Lines changed: 20 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/wasm_runtime/Cargo.toml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ doctest = false
1111
bench = false
1212

1313
[dependencies]
14-
hyperlight-common = { version = "0.11.0", default-features = false }
15-
hyperlight-guest-bin = { version = "0.11.0", features = [ "printf" ] }
16-
hyperlight-guest = { version = "0.11.0" }
14+
hyperlight-common = { version = "0.12.0", default-features = false }
15+
hyperlight-guest-bin = { version = "0.12.0", features = [ "printf" ] }
16+
hyperlight-guest = { version = "0.12.0" }
1717
wasmtime = { version = "36.0.3", default-features = false, features = [ "runtime", "custom-virtual-memory", "custom-native-signals", "component-model" ] }
1818
hyperlight-wasm-macro = { path = "../hyperlight_wasm_macro" }
1919
spin = "0.10.0"
@@ -33,7 +33,3 @@ default = []
3333
gdb = ["wasmtime/debug-builtins"]
3434
trace_guest = ["hyperlight-common/trace_guest", "hyperlight-guest/trace_guest", "hyperlight-guest-bin/trace_guest"]
3535

36-
[patch.crates-io]
37-
hyperlight-common = { git = "https://github.com/hyperlight-dev/hyperlight", rev = "5bfe0bfdf2f168b48bf6242d8eed84d54fab1186" }
38-
hyperlight-guest-bin = { git = "https://github.com/hyperlight-dev/hyperlight", rev = "5bfe0bfdf2f168b48bf6242d8eed84d54fab1186" }
39-
hyperlight-guest = { git = "https://github.com/hyperlight-dev/hyperlight", rev = "5bfe0bfdf2f168b48bf6242d8eed84d54fab1186" }

0 commit comments

Comments
 (0)