diff --git a/leptos_dom/Cargo.toml b/leptos_dom/Cargo.toml index 237cf0bac..d3369d1af 100644 --- a/leptos_dom/Cargo.toml +++ b/leptos_dom/Cargo.toml @@ -143,3 +143,7 @@ features = [ web = ["leptos_reactive/csr"] ssr = ["leptos_reactive/ssr"] stable = ["leptos_reactive/stable"] + +[package.metadata.cargo-all-features] +denylist = ["stable"] +skip_feature_sets = [["web", "ssr"]] diff --git a/leptos_macro/Cargo.toml b/leptos_macro/Cargo.toml index f07b3d758..a5613199a 100644 --- a/leptos_macro/Cargo.toml +++ b/leptos_macro/Cargo.toml @@ -42,3 +42,4 @@ tracing = [] [package.metadata.cargo-all-features] denylist = ["stable", "tracing"] +skip_feature_sets = [["csr", "hydrate"], ["hydrate", "csr"], ["hydrate", "ssr"]]