Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN apt-get update \
gdb \
git \
gnupg \
libc6 \
lsb-release \
Comment thread
dblnz marked this conversation as resolved.
make \
pkg-config \
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ getrandom = "0.3.3"
http-body-util = "0.1"
hyper = "1.7"
hyper-util = { version = "0.1", features = ["full"] }
hyperlight-component-macro = { version = "0.12.0" }
hyperlight-common = { version = "0.12.0" }
hyperlight-host = { version = "0.12.0", default-features = false, features = [ "kvm", "mshv3" ] }
hyperlight-wasm = { version = "0.12.0" }
hyperlight-component-macro = { version = "0.14.0" }
hyperlight-common = { version = "0.14.0" }
hyperlight-host = { version = "0.14.0", default-features = false, features = [ "kvm", "mshv3" ] }
hyperlight-wasm = { version = "0.14.0" }
Comment thread
squillace marked this conversation as resolved.
once_cell = "1.21.3"
reqwest = { version = "0.12", features = ["stream", "gzip", "brotli", "deflate", "rustls-tls", "blocking"] }
tokio = { version = "1.47", features = ["full"] }
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ install-hyperlight-wasm-aot:
test -f {{ BIN_DIR }}/hyperlight-wasm-aot || \
cargo install hyperlight-wasm-aot \
--locked \
--version 0.12.0 \
--version 0.14.0 \
--root {{ TARGET_DIR }}

build-js-component: make-out-dir install-hyperlight-wasm-aot
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "1.89.0"
channel = "1.94.0"
3 changes: 1 addition & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ fn main() {

let builder = hyperlight_wasm::SandboxBuilder::new()
.with_guest_heap_size(30 * 1024 * 1024)
.with_guest_stack_size(1 * 1024 * 1024)
.with_function_definition_size(20 * 1024);
.with_guest_scratch_size(1 * 1024 * 1024);
Comment thread
squillace marked this conversation as resolved.

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

Expand Down
Loading