aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index e93ff61a6..175642f75 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,7 +1,9 @@
1#![no_std] 1#![no_std]
2// TODO(AJM): As of 2025-11-13, we need to do a pass to ensure safety docs 2#![allow(async_fn_in_trait)]
3// are complete prior to release. 3#![doc = include_str!("../README.md")]
4#![allow(clippy::missing_safety_doc)] 4
5// //! ## Feature flags
6// #![doc = document_features::document_features!(feature_label = r#"<span class="stab portability"><code>{feature}</code></span>"#)]
5 7
6pub mod clocks; // still provide clock helpers 8pub mod clocks; // still provide clock helpers
7pub mod gpio; 9pub mod gpio;