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
4 changes: 2 additions & 2 deletions .github/workflows/Benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ jobs:

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

- uses: dtolnay/rust-toolchain@1.93
- uses: dtolnay/rust-toolchain@1.94
with:
components: clippy, rustfmt

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CargoAudit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# 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.93"
toolchain: "1.94"

- 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.93
RUST_TOOLCHAIN_DEFAULT: 1.94
RUST_TOOLCHAIN_FILE: rust-toolchain.toml
WASI_SDK_VERSION_FULL: "25.0"
GCC_VERSION: "12"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CreateRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Hyperlight setup
uses: hyperlight-dev/ci-setup-workflow@v1.8.0
with:
rust-toolchain: "1.93"
rust-toolchain: "1.94"
- name: Set HYPERLIGHTWASM_VERSION
run: |
git fetch --tags
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
echo "✅ $crate@$version already published, skipping."
else
echo "🚀 Publishing $crate@$version"
cargo +1.93 publish -p "$crate"
cargo +1.94 publish -p "$crate"
fi
}

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 @@ -90,7 +90,7 @@ jobs:
- name: Hyperlight setup workflow
uses: hyperlight-dev/ci-setup-workflow@v1.8.0
with:
rust-toolchain: "1.93"
rust-toolchain: "1.94"
- 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.93"
rust-toolchain: "1.94"

# 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 @@ -68,7 +68,7 @@ jobs:
- name: Hyperlight setup
uses: hyperlight-dev/ci-setup-workflow@v1.8.0
with:
rust-toolchain: "1.93"
rust-toolchain: "1.94"

- name: Add Nightly Rust
run: |
Expand Down
35 changes: 8 additions & 27 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 @@ -6,7 +6,7 @@ resolver = "2"
[workspace.package]
version = "0.14.0"
edition = "2024"
rust-version = "1.93"
rust-version = "1.94"
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.93 of rust toolchain.
NOTE: Ensure that you use version 1.94 of rust toolchain.

```Console
rustup install 1.93
rustup default 1.93
rustup install 1.94
rustup default 1.94
```

Now you can build the Rust Wasm library:
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "1.93"
channel = "1.94"
# 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"]
2 changes: 1 addition & 1 deletion src/hyperlight_wasm_aot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ wasmtime = { version = "45.0.2", default-features = false, features = ["cranelif
wasmtime_lts = { package = "wasmtime", version = "36.0.11", default-features = false, features = ["cranelift", "pulley", "runtime", "component-model"] }
clap = { version = "4.6", features = ["derive"] }
cargo_metadata = "0.23"
cargo-util-schemas = "=0.10.1"
cargo-util-schemas = "=0.14.0"
object = { version = "0.39.1", default-features = false, features = ["read_core", "elf"] }

[features]
Expand Down
Loading