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
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN wget https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WA
&& mv /wasi-sdk-${WASI_SDK_VERSION_FULL}-x86_64-linux /opt/wasi-sdk

USER $USER
ARG RUST_TOOLCHAIN=1.86.0
ARG RUST_TOOLCHAIN=1.89

# Install rust and component tools
RUN rustup default ${RUST_TOOLCHAIN} \
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ jobs:

- uses: hyperlight-dev/ci-setup-workflow@v1.8.0
with:
rust-toolchain: "1.86.0"
rust-toolchain: "1.89"

- name: Build Wasm Runtime Binary
working-directory: ./src/hyperlight_wasm
run: just build-wasm-runtime ${{ matrix.config }}

- uses: dtolnay/rust-toolchain@1.86.0
- uses: dtolnay/rust-toolchain@1.89
with:
components: clippy, rustfmt

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/CargoAudit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
- uses: actions/checkout@v5

# We are not using the common workflow here because it installs a lot of tools we don't need
- uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.86.0"
uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.89"

- uses: extractions/setup-just@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CreateDevcontainerImage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
USER: vscode
GROUP: vscode
LLVM_VERSION: 17
RUST_TOOLCHAIN_DEFAULT: 1.86.0
RUST_TOOLCHAIN_DEFAULT: 1.89
RUST_TOOLCHAIN_FILE: rust-toolchain.toml
WASI_SDK_VERSION_FULL: "25.0"
GCC_VERSION: "12"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CreateRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Hyperlight setup
uses: hyperlight-dev/ci-setup-workflow@v1.8.0
with:
rust-toolchain: "1.86.0"
rust-toolchain: "1.89"
- name: Verify vendor.tar
if: ${{ contains(github.ref, 'refs/heads/release/') }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dep_build_wasm_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Hyperlight setup workflow
uses: hyperlight-dev/ci-setup-workflow@v1.8.0
with:
rust-toolchain: "1.86.0"
rust-toolchain: "1.89"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Registry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dep_cargo_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Hyperlight setup
uses: hyperlight-dev/ci-setup-workflow@v1.8.0
with:
rust-toolchain: "1.86.0"
rust-toolchain: "1.89"

# github actions that run against PRs check out a ref to the PR merge branch
# we need to switch / create a branch for cargo ws to run late
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dep_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Hyperlight setup
uses: hyperlight-dev/ci-setup-workflow@v1.8.0
with:
rust-toolchain: "1.86.0"
rust-toolchain: "1.89"

- name: Add Nightly Rust
run: |
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ resolver = "2"
[workspace.package]
version = "0.9.0"
edition = "2024"
rust-version = "1.86"
rust-version = "1.89"
license = "Apache-2.0"
homepage = "https://github.com/hyperlight-dev/hyperlight-wasm"
repository = "https://github.com/hyperlight-dev/hyperlight-wasm"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ You should also add your user to the kvm group: `sudo adduser $USER kvm`

## Building

NOTE: Ensure that you use version 1.86.0 of rust toolchain.
NOTE: Ensure that you use version 1.89 of rust toolchain.

```Console
rustup install 1.86.0
rustup default 1.86.0
rustup install 1.89
rustup default 1.89
```

Now you can build the Rust Wasm library:
Expand Down
5 changes: 4 additions & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[toolchain]
channel = "1.86.0"
channel = "1.89"
# Target used for guest binaries. This is an additive list of targets in addition to host platform.
# Will install the target if not already installed when building guest binaries.
targets = ["x86_64-unknown-none"]