diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-08-09 17:06:28 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-08-09 17:06:28 +0000 |
| commit | 8d71fbd032f148fdeb96794c1f34b8a9c8a6abdf (patch) | |
| tree | eee681ec766b5a5e1c9449f1a31b4512cf6d83d5 /embassy-stm32 | |
| parent | fcb77f3f96479b371e1279c9feed7eddf6b53083 (diff) | |
| parent | 820852be28bb68910048f016459847c6a03b767c (diff) | |
Merge pull request #1765 from embassy-rs/fmt-not-pub
fmt mod must not be public.
Diffstat (limited to 'embassy-stm32')
| -rw-r--r-- | embassy-stm32/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-stm32/src/lib.rs b/embassy-stm32/src/lib.rs index fb0279dcf..adb3054d8 100644 --- a/embassy-stm32/src/lib.rs +++ b/embassy-stm32/src/lib.rs | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | #![doc = document_features::document_features!(feature_label = r#"<span class="stab portability"><code>{feature}</code></span>"#)] | 5 | #![doc = document_features::document_features!(feature_label = r#"<span class="stab portability"><code>{feature}</code></span>"#)] |
| 6 | 6 | ||
| 7 | // This must go FIRST so that all the other modules see its macros. | 7 | // This must go FIRST so that all the other modules see its macros. |
| 8 | pub mod fmt; | 8 | mod fmt; |
| 9 | include!(concat!(env!("OUT_DIR"), "/_macros.rs")); | 9 | include!(concat!(env!("OUT_DIR"), "/_macros.rs")); |
| 10 | 10 | ||
| 11 | // Utilities | 11 | // Utilities |
