embedded_hal_async/lib.rs
1#![doc = include_str!("../README.md")]
2#![warn(missing_docs)]
3#![no_std]
4// disable warning for already-stabilized features.
5// Needed to pass CI, because we deny warnings.
6// We don't immediately remove them to not immediately break older nightlies.
7// When all features are stable, we'll remove them.
8#![cfg_attr(nightly, allow(stable_features, unknown_lints))]
9#![cfg_attr(nightly, feature(async_fn_in_trait, impl_trait_projections))]
10#![allow(async_fn_in_trait)]
11
12pub mod delay;
13pub mod digital;
14pub mod i2c;
15pub mod spi;