Skip to content
This repository was archived by the owner on Jul 5, 2024. It is now read-only.

Commit e1ea832

Browse files
udpate toolchain to enable the array_map feature (#157)
* udpate toolchain * fix ci lint stable: remove override and use toolchain
1 parent 2a0c179 commit e1ea832

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/lints-stable.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,19 @@ jobs:
1010
clippy:
1111
if: github.event.pull_request.draft == false
1212

13-
name: Clippy (1.53.0)
13+
name: Clippy
1414
timeout-minutes: 30
1515
runs-on: ubuntu-latest
1616

1717
steps:
1818
- uses: actions/checkout@v2
1919
- uses: actions-rs/toolchain@v1
2020
with:
21-
toolchain: 1.53.0
2221
components: clippy
23-
override: true
22+
override: false
2423
- name: Run clippy
2524
uses: actions-rs/clippy-check@v1
2625
with:
27-
name: Clippy (1.53.0)
26+
name: Clippy
2827
token: ${{ secrets.GITHUB_TOKEN }}
2928
args: --all-features --all-targets -- -D warnings

bus-mapping/src/operation.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ impl PartialOrd for StorageOp {
243243

244244
impl Ord for StorageOp {
245245
fn cmp(&self, other: &StorageOp) -> Ordering {
246-
match self.address().cmp(&other.address()) {
247-
Ordering::Equal => self.key().cmp(&other.key()),
246+
match self.address().cmp(other.address()) {
247+
Ordering::Equal => self.key().cmp(other.key()),
248248
ord => ord,
249249
}
250250
}

rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
stable-2021-06-17
1+
stable-2021-11-01

0 commit comments

Comments
 (0)