fix: don't enable `tracing` feature on `leptos` by default (#2211)

This commit is contained in:
Greg Johnston 2024-01-20 17:58:22 -05:00 committed by GitHub
parent c84c6ee8cd
commit b450f0fd10
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -20,10 +20,10 @@ features = ["HtmlLinkElement", "HtmlMetaElement", "HtmlTitleElement"]
[features]
default = []
csr = ["leptos/csr", "leptos/tracing"]
hydrate = ["leptos/hydrate", "leptos/tracing"]
ssr = ["leptos/ssr", "leptos/tracing"]
nightly = ["leptos/nightly", "leptos/tracing"]
csr = ["leptos/csr"]
hydrate = ["leptos/hydrate"]
ssr = ["leptos/ssr"]
nightly = ["leptos/nightly"]
[package.metadata.cargo-all-features]
denylist = ["nightly"]