File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-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-2022-11-22
18
+ toolchain: nightly-2023-07-03
19
19
components: clippy
20
- - run: cargo clippy --features=embedded-hal-bus/ std -- --deny=warnings
20
+ - run: cargo clippy --features=std -- --deny=warnings
Original file line number Diff line number Diff line change 25
25
- thumbv7m-none-eabi
26
26
include:
27
27
- target: x86_64-unknown-linux-gnu
28
- features: embedded-hal-bus/std
28
+ features: std
29
+ - target: x86_64-unknown-linux-gnu
30
+ features: alloc
29
31
30
32
steps:
31
33
- uses: actions/checkout@v3
Original file line number Diff line number Diff line change 1
1
#![doc = include_str!("../README.md")]
2
2
#![warn(missing_docs)]
3
3
#![no_std]
4
- #![allow(incomplete_features)]
5
4
#![feature(async_fn_in_trait, impl_trait_projections)]
6
5
7
6
pub mod delay;
You can’t perform that action at this time.
0 commit comments