| 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 | |
| 12 | pub mod delay; |
| 13 | pub mod digital; |
| 14 | pub mod i2c; |
| 15 | pub mod spi; |
| 16 | |