diff --git a/leptos_reactive/src/lib.rs b/leptos_reactive/src/lib.rs index 09470e1849..390766ebdc 100644 --- a/leptos_reactive/src/lib.rs +++ b/leptos_reactive/src/lib.rs @@ -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. //!