Reduce CI load with skipped feature sets

This commit is contained in:
Greg Johnston 2023-01-05 11:08:07 -05:00
parent ae40f3134a
commit 64bf01c59e
2 changed files with 5 additions and 0 deletions

View file

@ -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"]]

View file

@ -42,3 +42,4 @@ tracing = []
[package.metadata.cargo-all-features]
denylist = ["stable", "tracing"]
skip_feature_sets = [["csr", "hydrate"], ["hydrate", "csr"], ["hydrate", "ssr"]]