File tree 4 files changed +8
-4
lines changed
4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 15
15
with :
16
16
# embedded-hal-async needs nightly.
17
17
# Use a pinned version to avoid spontaneous breakages (new clippy lints are added often)
18
- toolchain : nightly-2023-07-03
18
+ toolchain : nightly-2023-10-14
19
19
components : clippy
20
- - run : cargo clippy --all-features -- --deny=warnings
20
+ - run : cargo clippy --all-features -- --deny=warnings
Original file line number Diff line number Diff line change 13
13
- uses : actions/checkout@v3
14
14
- uses : dtolnay/rust-toolchain@master
15
15
with :
16
- toolchain : nightly-2023-07-03
17
- - run : RUSTDOCFLAGS="--deny=warnings --cfg=docsrs" cargo doc --all-features
16
+ toolchain : nightly-2023-10-14
17
+ - run : RUSTDOCFLAGS="--deny=warnings --cfg=docsrs" cargo doc --all-features
Original file line number Diff line number Diff line change 6
6
// We don't immediately remove them to not immediately break older nightlies.
7
7
// When all features are stable, we'll remove them.
8
8
#![ allow( stable_features) ]
9
+ #![ allow( unknown_lints) ]
10
+ #![ allow( async_fn_in_trait) ]
9
11
#![ feature( async_fn_in_trait, impl_trait_projections) ]
10
12
11
13
pub mod delay;
Original file line number Diff line number Diff line change 7
7
// We don't immediately remove them to not immediately break older nightlies.
8
8
// When all features are stable, we'll remove them.
9
9
#![ allow( stable_features) ]
10
+ #![ allow( unknown_lints) ]
11
+ #![ allow( async_fn_in_trait) ]
10
12
#![ feature( async_fn_in_trait, impl_trait_projections) ]
11
13
12
14
#[ cfg( feature = "alloc" ) ]
You can’t perform that action at this time.
0 commit comments