Skip to content

Commit

Permalink
Remove nightly feature attributes.
Browse files Browse the repository at this point in the history
  • Loading branch information
langyo committed Aug 13, 2024
1 parent 7183664 commit 70265e4
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion packages/stylist-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#![deny(unsafe_code)]
#![deny(non_snake_case)]
#![deny(clippy::cognitive_complexity)]
#![cfg_attr(doc, feature(doc_cfg))]
#![cfg_attr(any(doc, not(debug_assertions)), deny(dead_code, unused_imports))]

mod error;
Expand Down
1 change: 0 additions & 1 deletion packages/stylist-macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#![deny(non_snake_case)]
#![deny(missing_debug_implementations)]
#![deny(clippy::cognitive_complexity)]
#![cfg_attr(doc, feature(doc_cfg))]
#![cfg_attr(not(debug_assertions), deny(dead_code, unused_imports))]

use proc_macro::TokenStream;
Expand Down
2 changes: 0 additions & 2 deletions packages/stylist/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
#![deny(non_snake_case)]
#![deny(clippy::all)]
#![deny(clippy::cognitive_complexity)]
#![cfg_attr(doc, feature(doc_cfg))]
#![cfg_attr(doc, feature(doc_auto_cfg))]
#![cfg_attr(not(debug_assertions), deny(dead_code, unused_imports))]

//! Stylist is a CSS-in-Rust styling solution for WebAssembly Applications.
Expand Down

0 comments on commit 70265e4

Please sign in to comment.