This repository was archived by the owner on Jul 5, 2024. It is now read-only.
File tree 3 files changed +6
-7
lines changed
3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -10,20 +10,19 @@ jobs:
10
10
clippy :
11
11
if : github.event.pull_request.draft == false
12
12
13
- name : Clippy (1.53.0)
13
+ name : Clippy
14
14
timeout-minutes : 30
15
15
runs-on : ubuntu-latest
16
16
17
17
steps :
18
18
- uses : actions/checkout@v2
19
19
- uses : actions-rs/toolchain@v1
20
20
with :
21
- toolchain : 1.53.0
22
21
components : clippy
23
- override : true
22
+ override : false
24
23
- name : Run clippy
25
24
uses : actions-rs/clippy-check@v1
26
25
with :
27
- name : Clippy (1.53.0)
26
+ name : Clippy
28
27
token : ${{ secrets.GITHUB_TOKEN }}
29
28
args : --all-features --all-targets -- -D warnings
Original file line number Diff line number Diff line change @@ -243,8 +243,8 @@ impl PartialOrd for StorageOp {
243
243
244
244
impl Ord for StorageOp {
245
245
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 ( ) ) ,
248
248
ord => ord,
249
249
}
250
250
}
Original file line number Diff line number Diff line change 1
- stable-2021-06-17
1
+ stable-2021-11-01
You can’t perform that action at this time.
0 commit comments