File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change
1
+ msrv = " 1.34"
Original file line number Diff line number Diff line change @@ -174,8 +174,11 @@ jobs:
174
174
- uses : actions-rs/toolchain@v1
175
175
with :
176
176
profile : minimal
177
- toolchain : stable
177
+ # https://github.com/rust-lang/rust-clippy/pull/6379 added MSRV
178
+ # support, so we need to use nightly until this is on stable.
179
+ toolchain : nightly
178
180
components : rustfmt, clippy
181
+ override : true
179
182
- name : clippy
180
183
run : cargo clippy --all
181
184
- name : fmt
Original file line number Diff line number Diff line change 149
149
) ]
150
150
#![ no_std]
151
151
#![ warn( rust_2018_idioms, unused_lifetimes, missing_docs) ]
152
- // `matches!` macro was added only in Rust 1.42, which is bigger than our MSRV
153
- #![ allow( clippy:: match_like_matches_macro) ]
154
152
155
153
#[ macro_use]
156
154
extern crate cfg_if;
You can’t perform that action at this time.
0 commit comments