aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-traits/src/lib.rs2
-rw-r--r--embassy/src/lib.rs1
2 files changed, 0 insertions, 3 deletions
diff --git a/embassy-traits/src/lib.rs b/embassy-traits/src/lib.rs
index 4c8b94b11..65fb95bd4 100644
--- a/embassy-traits/src/lib.rs
+++ b/embassy-traits/src/lib.rs
@@ -1,7 +1,5 @@
1#![cfg_attr(not(feature = "std"), no_std)] 1#![cfg_attr(not(feature = "std"), no_std)]
2#![feature(generic_associated_types)] 2#![feature(generic_associated_types)]
3#![feature(const_fn_fn_ptr_basics)]
4#![feature(const_option)]
5#![feature(type_alias_impl_trait)] 3#![feature(type_alias_impl_trait)]
6 4
7pub mod delay; 5pub mod delay;
diff --git a/embassy/src/lib.rs b/embassy/src/lib.rs
index 959d30797..9e050a57a 100644
--- a/embassy/src/lib.rs
+++ b/embassy/src/lib.rs
@@ -2,7 +2,6 @@
2#![feature(generic_associated_types)] 2#![feature(generic_associated_types)]
3#![feature(const_fn_trait_bound)] 3#![feature(const_fn_trait_bound)]
4#![feature(const_fn_fn_ptr_basics)] 4#![feature(const_fn_fn_ptr_basics)]
5#![feature(const_option)]
6#![feature(type_alias_impl_trait)] 5#![feature(type_alias_impl_trait)]
7 6
8// This mod MUST go first, so that the others see its macros. 7// This mod MUST go first, so that the others see its macros.