From c6989dfbca51787146f50270c671af9db434f577 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Wed, 29 Nov 2023 17:23:48 +0100 Subject: Remove nightly and unstable-traits features in preparation for 1.75. --- embassy-stm32-wpan/src/lib.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'embassy-stm32-wpan') 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 @@ #![no_std] -#![cfg_attr(any(feature = "ble", feature = "mac"), feature(async_fn_in_trait))] -#![cfg_attr( - any(feature = "ble", feature = "mac"), - allow(stable_features, unknown_lints, async_fn_in_trait) -)] +#![allow(async_fn_in_trait)] // This must go FIRST so that all the other modules see its macros. mod fmt; -- cgit