Skip to content

Bump cargo_metadata from 0.20.0 to 0.21.0 #110

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 31, 2025
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.85.0
ARG RUST_TOOLCHAIN=1.86.0

# Install rust and component tools
RUN rustup default ${RUST_TOOLCHAIN} \
Expand Down
8 changes: 4 additions & 4 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/[email protected]
with:
rust-toolchain: "1.85.0"
rust-toolchain: "1.86.0"

- name: Build Wasm Runtime Binary
working-directory: ./src/hyperlight_wasm
run: just build-wasm-runtime ${{ matrix.config }}
- uses: dtolnay/rust-toolchain@1.85.0

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

Expand Down Expand Up @@ -79,4 +79,4 @@ jobs:
with:
name: benchmarks_${{runner.os}}_${{matrix.hypervisor}}_${{ matrix.cpu }}
path: ./target/criterion/
if-no-files-found: error
if-no-files-found: error
6 changes: 3 additions & 3 deletions .github/workflows/CargoAudit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ 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.85.0"
toolchain: "1.86.0"

- uses: extractions/setup-just@v3
with:
just-version: "1.27"

- uses: rustsec/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
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.85.0
RUST_TOOLCHAIN_DEFAULT: 1.86.0
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/[email protected]
with:
rust-toolchain: "1.85.0"
rust-toolchain: "1.86.0"
- 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/[email protected]
with:
rust-toolchain: "1.85.0"
rust-toolchain: "1.86.0"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Registry
Expand Down
4 changes: 2 additions & 2 deletions .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/[email protected]
with:
rust-toolchain: "1.85.0"
rust-toolchain: "1.86.0"

# 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 Expand Up @@ -67,4 +67,4 @@ jobs:
- name: Package hyperlight-wasm (dry-run)
if: ${{ inputs.event_name == 'pull_request' }}
working-directory: src/hyperlight_wasm
run: cargo package --manifest-path ./Cargo.toml --allow-dirty
run: cargo package --manifest-path ./Cargo.toml --allow-dirty
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/[email protected]
with:
rust-toolchain: "1.85.0"
rust-toolchain: "1.86.0"

- name: Add Nightly Rust
run: |
Expand Down
10 changes: 5 additions & 5 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.7.0"
edition = "2024"
rust-version = "1.85"
rust-version = "1.86"
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.85.0 of rust toolchain.
NOTE: Ensure that you use version 1.86.0 of rust toolchain.

```Console
rustup install 1.85.0
rustup default 1.85.0
rustup install 1.86.0
rustup default 1.86.0
```

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,2 +1,2 @@
[toolchain]
channel = "1.85.0"
channel = "1.86.0"
Empty file.
4 changes: 2 additions & 2 deletions src/hyperlight_wasm_aot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ Application to precompile WebAssembly binaries to for hyperlight-wasm.
[dependencies]
wasmtime = { version = "34.0.2", default-features = false, features = ["cranelift", "runtime", "component-model" ] }
clap = "4.5"
cargo_metadata = "0.20"
cargo-util-schemas = "=0.2.0"
cargo_metadata = "0.21"
cargo-util-schemas = "0.8.2"