Skip to content

Commit

Permalink
chore: don't warn when stabilized features are used
Browse files Browse the repository at this point in the history
  • Loading branch information
gbj committed Dec 18, 2023
1 parent 21f4c27 commit c04edc5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions leptos_reactive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#![cfg_attr(feature = "nightly", feature(type_name_of_val))]
#![cfg_attr(feature = "nightly", feature(auto_traits))]
#![cfg_attr(feature = "nightly", feature(negative_impls))]
// to prevent warnings on new from popping up when one of those features is stabilized
#![allow(stable_features)]

//! The reactive system for the [Leptos](https://docs.rs/leptos/latest/leptos/) Web framework.
//!
Expand Down

0 comments on commit c04edc5

Please sign in to comment.