Skip to content

Commit dc80951

Browse files
Bump cargo_metadata from 0.20.0 to 0.21.0 (#110)
* Bump cargo_metadata from 0.20.0 to 0.21.0 Bumps [cargo_metadata](https://github.com/oli-obk/cargo_metadata) from 0.20.0 to 0.21.0. - [Release notes](https://github.com/oli-obk/cargo_metadata/releases) - [Changelog](https://github.com/oli-obk/cargo_metadata/blob/main/CHANGELOG.md) - [Commits](oli-obk/cargo_metadata@0.20.0...0.21.0) --- updated-dependencies: - dependency-name: cargo_metadata dependency-version: 0.21.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update to Rust v1.86.0 Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com> * Update cargo-util-schemas dependency Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Simon Davies <simongdavies@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Simon Davies <simongdavies@users.noreply.github.com>
1 parent 1719692 commit dc80951

File tree

14 files changed

+26
-26
lines changed

14 files changed

+26
-26
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN wget https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WA
2828
&& mv /wasi-sdk-${WASI_SDK_VERSION_FULL}-x86_64-linux /opt/wasi-sdk
2929

3030
USER $USER
31-
ARG RUST_TOOLCHAIN=1.85.0
31+
ARG RUST_TOOLCHAIN=1.86.0
3232

3333
# Install rust and component tools
3434
RUN rustup default ${RUST_TOOLCHAIN} \

.github/workflows/Benchmarks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ jobs:
3636

3737
- uses: hyperlight-dev/ci-setup-workflow@v1.5.0
3838
with:
39-
rust-toolchain: "1.85.0"
39+
rust-toolchain: "1.86.0"
4040

4141
- name: Build Wasm Runtime Binary
4242
working-directory: ./src/hyperlight_wasm
4343
run: just build-wasm-runtime ${{ matrix.config }}
44-
45-
- uses: dtolnay/rust-toolchain@1.85.0
44+
45+
- uses: dtolnay/rust-toolchain@1.86.0
4646
with:
4747
components: clippy, rustfmt
4848

@@ -79,4 +79,4 @@ jobs:
7979
with:
8080
name: benchmarks_${{runner.os}}_${{matrix.hypervisor}}_${{ matrix.cpu }}
8181
path: ./target/criterion/
82-
if-no-files-found: error
82+
if-no-files-found: error

.github/workflows/CargoAudit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
# We are not using the common workflow here because it installs a lot of tools we don't need
1919
- uses: dtolnay/rust-toolchain@master
2020
with:
21-
toolchain: "1.85.0"
22-
21+
toolchain: "1.86.0"
22+
2323
- uses: extractions/setup-just@v3
2424
with:
2525
just-version: "1.27"
2626

2727
- uses: rustsec/audit-check@v2.0.0
2828
with:
29-
token: ${{ secrets.GITHUB_TOKEN }}
29+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/CreateDevcontainerImage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
USER: vscode
1717
GROUP: vscode
1818
LLVM_VERSION: 17
19-
RUST_TOOLCHAIN_DEFAULT: 1.85.0
19+
RUST_TOOLCHAIN_DEFAULT: 1.86.0
2020
RUST_TOOLCHAIN_FILE: rust-toolchain.toml
2121
WASI_SDK_VERSION_FULL: "25.0"
2222
GCC_VERSION: "12"

.github/workflows/CreateRelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Hyperlight setup
3838
uses: hyperlight-dev/ci-setup-workflow@v1.5.0
3939
with:
40-
rust-toolchain: "1.85.0"
40+
rust-toolchain: "1.86.0"
4141
- name: Verify vendor.tar
4242
if: ${{ contains(github.ref, 'refs/heads/release/') }}
4343
run: |

.github/workflows/dep_build_wasm_examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Hyperlight setup workflow
3434
uses: hyperlight-dev/ci-setup-workflow@v1.5.0
3535
with:
36-
rust-toolchain: "1.85.0"
36+
rust-toolchain: "1.86.0"
3737
- name: Set up Docker Buildx
3838
uses: docker/setup-buildx-action@v3
3939
- name: Login to Registry

.github/workflows/dep_cargo_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Hyperlight setup
2323
uses: hyperlight-dev/ci-setup-workflow@v1.5.0
2424
with:
25-
rust-toolchain: "1.85.0"
25+
rust-toolchain: "1.86.0"
2626

2727
# github actions that run against PRs check out a ref to the PR merge branch
2828
# we need to switch / create a branch for cargo ws to run late
@@ -67,4 +67,4 @@ jobs:
6767
- name: Package hyperlight-wasm (dry-run)
6868
if: ${{ inputs.event_name == 'pull_request' }}
6969
working-directory: src/hyperlight_wasm
70-
run: cargo package --manifest-path ./Cargo.toml --allow-dirty
70+
run: cargo package --manifest-path ./Cargo.toml --allow-dirty

.github/workflows/dep_rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Hyperlight setup
5353
uses: hyperlight-dev/ci-setup-workflow@v1.5.0
5454
with:
55-
rust-toolchain: "1.85.0"
55+
rust-toolchain: "1.86.0"
5656

5757
- name: Add Nightly Rust
5858
run: |

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ resolver = "2"
66
[workspace.package]
77
version = "0.7.0"
88
edition = "2024"
9-
rust-version = "1.85"
9+
rust-version = "1.86"
1010
license = "Apache-2.0"
1111
homepage = "https://github.com/hyperlight-dev/hyperlight-wasm"
1212
repository = "https://github.com/hyperlight-dev/hyperlight-wasm"

0 commit comments

Comments
 (0)