From a4bd7c4274bf7958e45ae2592f1937ce7b244706 Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Sun, 17 Dec 2023 20:34:32 -0500 Subject: [PATCH] chore: don't warn when stabilized features are used (#2118) --- leptos_reactive/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/leptos_reactive/src/lib.rs b/leptos_reactive/src/lib.rs index 09470e184..390766ebd 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. //!