Skip to content

Commit 811f55c

Browse files
committed
update to hl,hl-wasm 0.14.0; devcontainer gets libc; rust to 1.94
1 parent 63696dd commit 811f55c

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RUN apt-get update \
1717
gdb \
1818
git \
1919
gnupg \
20+
libc6 \
2021
lsb-release \
2122
make \
2223
pkg-config \

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ getrandom = "0.3.3"
99
http-body-util = "0.1"
1010
hyper = "1.7"
1111
hyper-util = { version = "0.1", features = ["full"] }
12-
hyperlight-component-macro = { version = "0.12.0" }
13-
hyperlight-common = { version = "0.12.0" }
14-
hyperlight-host = { version = "0.12.0", default-features = false, features = [ "kvm", "mshv3" ] }
15-
hyperlight-wasm = { version = "0.12.0" }
12+
hyperlight-component-macro = { version = "0.14.0" }
13+
hyperlight-common = { version = "0.14.0" }
14+
hyperlight-host = { version = "0.14.0", default-features = false, features = [ "kvm", "mshv3" ] }
15+
hyperlight-wasm = { version = "0.14.0" }
1616
once_cell = "1.21.3"
1717
reqwest = { version = "0.12", features = ["stream", "gzip", "brotli", "deflate", "rustls-tls", "blocking"] }
1818
tokio = { version = "1.47", features = ["full"] }

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ install-hyperlight-wasm-aot:
1212
test -f {{ BIN_DIR }}/hyperlight-wasm-aot || \
1313
cargo install hyperlight-wasm-aot \
1414
--locked \
15-
--version 0.12.0 \
15+
--version 0.14.0 \
1616
--root {{ TARGET_DIR }}
1717

1818
build-js-component: make-out-dir install-hyperlight-wasm-aot

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "1.89.0"
2+
channel = "1.94.0"

src/main.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ fn main() {
3030

3131
let builder = hyperlight_wasm::SandboxBuilder::new()
3232
.with_guest_heap_size(30 * 1024 * 1024)
33-
.with_guest_stack_size(1 * 1024 * 1024)
34-
.with_function_definition_size(20 * 1024);
33+
.with_guest_scratch_size(1 * 1024 * 1024);
3534

3635
let mut sb = builder.build().unwrap();
3736

0 commit comments

Comments
 (0)