File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1515 with :
1616 # embedded-hal-async needs nightly.
1717 # 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
1919 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 1313 - uses : actions/checkout@v3
1414 - uses : dtolnay/rust-toolchain@master
1515 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 66// We don't immediately remove them to not immediately break older nightlies.
77// When all features are stable, we'll remove them.
88#![ allow( stable_features) ]
9+ #![ allow( unknown_lints) ]
10+ #![ allow( async_fn_in_trait) ]
911#![ feature( async_fn_in_trait, impl_trait_projections) ]
1012
1113pub mod delay;
Original file line number Diff line number Diff line change 77// We don't immediately remove them to not immediately break older nightlies.
88// When all features are stable, we'll remove them.
99#![ allow( stable_features) ]
10+ #![ allow( unknown_lints) ]
11+ #![ allow( async_fn_in_trait) ]
1012#![ feature( async_fn_in_trait, impl_trait_projections) ]
1113
1214#[ cfg( feature = "alloc" ) ]
You can’t perform that action at this time.
0 commit comments