Skip to content

Commit d4b2939

Browse files
Bump cargo-util-schemas from 0.10.1 to 0.14.0 (#494)
* Bump cargo-util-schemas from 0.10.1 to 0.14.0 Bumps [cargo-util-schemas](https://github.com/rust-lang/cargo) from 0.10.1 to 0.14.0. - [Changelog](https://github.com/rust-lang/cargo/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/cargo/commits/0.14.0) --- updated-dependencies: - dependency-name: cargo-util-schemas dependency-version: 0.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Bump Rust toolchain to 1.94 Signed-off-by: James Sturtevant <jsturtevant@gmail.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: James Sturtevant <jsturtevant@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: James Sturtevant <jsturtevant@gmail.com>
1 parent 2c7625e commit d4b2939

12 files changed

Lines changed: 23 additions & 42 deletions

.github/workflows/Benchmarks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ jobs:
4747

4848
- uses: hyperlight-dev/ci-setup-workflow@v1.8.0
4949
with:
50-
rust-toolchain: "1.93"
50+
rust-toolchain: "1.94"
5151

52-
- uses: dtolnay/rust-toolchain@1.93
52+
- uses: dtolnay/rust-toolchain@1.94
5353
with:
5454
components: clippy, rustfmt
5555

.github/workflows/CargoAudit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ 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.93"
21+
toolchain: "1.94"
2222

2323
- uses: extractions/setup-just@v3
2424
with:

.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.93
19+
RUST_TOOLCHAIN_DEFAULT: 1.94
2020
RUST_TOOLCHAIN_FILE: rust-toolchain.toml
2121
WASI_SDK_VERSION_FULL: "25.0"
2222
GCC_VERSION: "12"

.github/workflows/CreateRelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Hyperlight setup
3939
uses: hyperlight-dev/ci-setup-workflow@v1.8.0
4040
with:
41-
rust-toolchain: "1.93"
41+
rust-toolchain: "1.94"
4242
- name: Set HYPERLIGHTWASM_VERSION
4343
run: |
4444
git fetch --tags
@@ -105,7 +105,7 @@ jobs:
105105
echo "✅ $crate@$version already published, skipping."
106106
else
107107
echo "🚀 Publishing $crate@$version"
108-
cargo +1.93 publish -p "$crate"
108+
cargo +1.94 publish -p "$crate"
109109
fi
110110
}
111111

.github/workflows/dep_build_wasm_examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
- name: Hyperlight setup workflow
9191
uses: hyperlight-dev/ci-setup-workflow@v1.8.0
9292
with:
93-
rust-toolchain: "1.93"
93+
rust-toolchain: "1.94"
9494
- name: Set up Docker Buildx
9595
uses: docker/setup-buildx-action@v3
9696
- name: Login to Registry

.github/workflows/dep_cargo_publish.yml

Lines changed: 1 addition & 1 deletion
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.8.0
2424
with:
25-
rust-toolchain: "1.93"
25+
rust-toolchain: "1.94"
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

.github/workflows/dep_rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- name: Hyperlight setup
6969
uses: hyperlight-dev/ci-setup-workflow@v1.8.0
7070
with:
71-
rust-toolchain: "1.93"
71+
rust-toolchain: "1.94"
7272

7373
- name: Add Nightly Rust
7474
run: |

Cargo.lock

Lines changed: 8 additions & 27 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.14.0"
88
edition = "2024"
9-
rust-version = "1.93"
9+
rust-version = "1.94"
1010
license = "Apache-2.0"
1111
homepage = "https://github.com/hyperlight-dev/hyperlight-wasm"
1212
repository = "https://github.com/hyperlight-dev/hyperlight-wasm"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ You should also add your user to the kvm group: `sudo adduser $USER kvm`
5858

5959
## Building
6060

61-
NOTE: Ensure that you use version 1.93 of rust toolchain.
61+
NOTE: Ensure that you use version 1.94 of rust toolchain.
6262

6363
```Console
64-
rustup install 1.93
65-
rustup default 1.93
64+
rustup install 1.94
65+
rustup default 1.94
6666
```
6767

6868
Now you can build the Rust Wasm library:

0 commit comments

Comments
 (0)