aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32-wpan
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-11-29 17:23:48 +0100
committerDario Nieuwenhuis <[email protected]>2023-11-29 17:26:33 +0100
commitc6989dfbca51787146f50270c671af9db434f577 (patch)
tree5974a8ec41c108d5208e4f68027b918d424a2046 /embassy-stm32-wpan
parent384bad7bfaa1f2415baf2cd3b69ebf36dc0a02d7 (diff)
Remove nightly and unstable-traits features in preparation for 1.75.
Diffstat (limited to 'embassy-stm32-wpan')
-rw-r--r--embassy-stm32-wpan/src/lib.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/embassy-stm32-wpan/src/lib.rs b/embassy-stm32-wpan/src/lib.rs
index 84cf0a02d..a5dbb7420 100644
--- a/embassy-stm32-wpan/src/lib.rs
+++ b/embassy-stm32-wpan/src/lib.rs
@@ -1,9 +1,5 @@
1#![no_std] 1#![no_std]
2#![cfg_attr(any(feature = "ble", feature = "mac"), feature(async_fn_in_trait))] 2#![allow(async_fn_in_trait)]
3#![cfg_attr(
4 any(feature = "ble", feature = "mac"),
5 allow(stable_features, unknown_lints, async_fn_in_trait)
6)]
7 3
8// This must go FIRST so that all the other modules see its macros. 4// This must go FIRST so that all the other modules see its macros.
9mod fmt; 5mod fmt;