Skip to content

Commit 791925a

Browse files
committed
update RUST 1.88.0
1 parent 069ed19 commit 791925a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
with:
135135
node-version: 18.x
136136
- name: Install deps
137-
run: cargo +1.85.0 install staging-chain-spec-builder --force # base64ct 1.8.0 requires the Cargo feature called `edition2024`
137+
run: cargo install staging-chain-spec-builder --force
138138
- name: Run ts tests
139139
run: |
140140
npm install -g yarn

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ check-runtimes:
5151
.PHONY: check-benchmarks
5252
check-benchmarks:
5353
SKIP_WASM_BUILD= cargo check --features wasm-bench --package module-evm
54-
SKIP_WASM_BUILD= cargo check --features runtime-benchmarks --no-default-features --target=wasm32-unknown-unknown -p mandala-runtime
55-
SKIP_WASM_BUILD= cargo check --features runtime-benchmarks --no-default-features --target=wasm32-unknown-unknown -p karura-runtime
56-
SKIP_WASM_BUILD= cargo check --features runtime-benchmarks --no-default-features --target=wasm32-unknown-unknown -p acala-runtime
54+
SKIP_WASM_BUILD= cargo check --features runtime-benchmarks --no-default-features --target=wasm32v1-none -p mandala-runtime
55+
SKIP_WASM_BUILD= cargo check --features runtime-benchmarks --no-default-features --target=wasm32v1-none -p karura-runtime
56+
SKIP_WASM_BUILD= cargo check --features runtime-benchmarks --no-default-features --target=wasm32v1-none -p acala-runtime
5757

5858
.PHONY: check-integration-tests
5959
check-integration-tests:

modules/evm-utility/macro/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ pub fn generate_function_selector(_: TokenStream, input: TokenStream) -> TokenSt
4747
attrs: Default::default(),
4848
}));
4949
} else {
50-
panic!("Not method string: `{:?}`", lit);
50+
panic!("Not method string: `{lit:?}`");
5151
}
5252
} else {
53-
panic!("Not enum: `{:?}`", variant);
53+
panic!("Not enum: `{variant:?}`");
5454
}
5555
}
5656

rust-toolchain.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "1.84.1"
2+
channel = "1.88.0"
33
components = ["rust-src", "rustfmt", "clippy"]
4-
targets = ["wasm32-unknown-unknown"]
4+
targets = ["wasm32v1-none"]

0 commit comments

Comments
 (0)