diff --git a/src/lib/coapcore/src/lib.rs b/src/lib/coapcore/src/lib.rs index 206321d3b..049a19300 100644 --- a/src/lib/coapcore/src/lib.rs +++ b/src/lib/coapcore/src/lib.rs @@ -10,7 +10,6 @@ //! for at least as long as the OSCORE component is tightly coupled to a particular implementation //! of [`coap-message`]). #![no_std] -#![feature(lint_reasons)] // Might warrant a standalone crate at some point // diff --git a/src/riot-rs-embassy/src/lib.rs b/src/riot-rs-embassy/src/lib.rs index 05612875d..32bad2ed3 100644 --- a/src/riot-rs-embassy/src/lib.rs +++ b/src/riot-rs-embassy/src/lib.rs @@ -3,7 +3,6 @@ #![no_std] #![feature(impl_trait_in_assoc_type)] #![feature(used_with_arg)] -#![feature(lint_reasons)] #![feature(doc_auto_cfg)] pub mod define_peripherals; diff --git a/src/riot-rs-nrf/src/lib.rs b/src/riot-rs-nrf/src/lib.rs index dfc9e3f12..c8d57a4a6 100644 --- a/src/riot-rs-nrf/src/lib.rs +++ b/src/riot-rs-nrf/src/lib.rs @@ -1,6 +1,5 @@ #![no_std] #![feature(doc_auto_cfg)] -#![feature(lint_reasons)] pub mod gpio; diff --git a/src/riot-rs-rp/src/lib.rs b/src/riot-rs-rp/src/lib.rs index 97f7385ea..42a52b9e5 100644 --- a/src/riot-rs-rp/src/lib.rs +++ b/src/riot-rs-rp/src/lib.rs @@ -2,7 +2,6 @@ #![feature(doc_auto_cfg)] #![feature(impl_trait_in_assoc_type)] #![feature(type_alias_impl_trait)] -#![feature(lint_reasons)] pub mod gpio; diff --git a/src/riot-rs-runqueue/src/lib.rs b/src/riot-rs-runqueue/src/lib.rs index adecd51ce..54615508d 100644 --- a/src/riot-rs-runqueue/src/lib.rs +++ b/src/riot-rs-runqueue/src/lib.rs @@ -1,5 +1,4 @@ #![cfg_attr(not(test), no_std)] -#![feature(lint_reasons)] mod runqueue; pub use runqueue::{RunQueue, RunqueueId, ThreadId}; diff --git a/src/riot-rs-threads/src/lib.rs b/src/riot-rs-threads/src/lib.rs index 1be7e344b..ad3775a11 100644 --- a/src/riot-rs-threads/src/lib.rs +++ b/src/riot-rs-threads/src/lib.rs @@ -1,7 +1,6 @@ #![cfg_attr(not(test), no_std)] #![feature(naked_functions)] #![feature(used_with_arg)] -#![feature(lint_reasons)] // Disable indexing lints for now, possible panics are documented or rely on internally-enforced // invariants #![allow(clippy::indexing_slicing)]