Skip to content

Commit

Permalink
fix(lint): drop lint_reasons feature (stabilized)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 committed Sep 17, 2024
1 parent b735196 commit f12cee7
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/lib/coapcore/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
//
Expand Down
1 change: 0 additions & 1 deletion src/riot-rs-embassy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion src/riot-rs-nrf/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#![no_std]
#![feature(doc_auto_cfg)]
#![feature(lint_reasons)]

pub mod gpio;

Expand Down
1 change: 0 additions & 1 deletion src/riot-rs-rp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
1 change: 0 additions & 1 deletion src/riot-rs-runqueue/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#![cfg_attr(not(test), no_std)]
#![feature(lint_reasons)]

mod runqueue;
pub use runqueue::{RunQueue, RunqueueId, ThreadId};
Expand Down
1 change: 0 additions & 1 deletion src/riot-rs-threads/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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)]
Expand Down

0 comments on commit f12cee7

Please sign in to comment.