Skip to content

Commit 951ed3d

Browse files
authored
Upgrade to rust 1.73.0 (#953)
* Upgrade to rust 1.73.0 * fix clippy * Add rust-toolchain.toml
1 parent 075770a commit 951ed3d

File tree

4 files changed

+4
-10
lines changed

4 files changed

+4
-10
lines changed

.github/workflows/coverage.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@ jobs:
3131
submodules: recursive
3232
- name: Install toolchain
3333
uses: dtolnay/rust-toolchain@nightly
34-
with:
35-
toolchain: nightly-2023-04-15
36-
components: rustfmt
37-
target: wasm32-unknown-unknown
3834
- name: Generate code coverage
3935
run: |
4036
wget https://github.com/xd009642/tarpaulin/releases/download/${{ env.TARPAULIN_VERSION }}/cargo-tarpaulin-${{ env.TARPAULIN_VERSION }}-travis.tar.gz

.github/workflows/master.yml.disabled

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- name: Install toolchain
1616
uses: dtolnay/rust-toolchain@nightly
17-
with:
18-
toolchain: nightly-2023-04-15
1917
- name: Install cargo-unleash
2018
run: cargo install cargo-unleash --git https://github.com/xlc/cargo-unleash.git # https://github.com/paritytech/cargo-unleash/pull/38
2119
- name: Prepare

.github/workflows/test.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ jobs:
2727
- uses: actions/checkout@v3
2828
- name: Install toolchain
2929
uses: dtolnay/rust-toolchain@nightly
30-
with:
31-
toolchain: nightly-2023-04-15
32-
components: rustfmt
33-
target: wasm32-unknown-unknown
3430
- name: Install Wasm toolchain
3531
run: rustup target add wasm32-unknown-unknown
3632
- name: Check format

rust-toolchain.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[toolchain]
2+
channel = "1.73.0"
3+
components = ["rustfmt", "clippy"]
4+
targets = ["wasm32-unknown-unknown"]

0 commit comments

Comments
 (0)