fix: tweak bounds on For for backwards-compat (#3663)

This commit is contained in:
Greg Johnston
2025-03-01 11:50:09 -05:00
committed by GitHub
parent 98e00fcb3b
commit 3dbb251853
6 changed files with 55 additions and 10 deletions

View File

@@ -21,6 +21,7 @@ leptos_macro = { workspace = true, features = ["actix"] }
leptos_meta = { workspace = true, features = ["nonce"] }
leptos_router = { workspace = true, features = ["ssr"] }
server_fn = { workspace = true, features = ["actix"] }
tachys = { workspace = true }
serde_json = { workspace = true }
parking_lot = "0.12.3"
tracing = { version = "0.1", optional = true }
@@ -33,7 +34,7 @@ once_cell = "1"
rustdoc-args = ["--generate-link-to-definition"]
[features]
islands-router = []
islands-router = ["tachys/islands"]
tracing = ["dep:tracing"]
[package.metadata.cargo-all-features]

View File

@@ -22,6 +22,7 @@ leptos_macro = { workspace = true, features = ["axum"] }
leptos_meta = { workspace = true, features = ["ssr", "nonce"] }
leptos_router = { workspace = true, features = ["ssr"] }
leptos_integration_utils = { workspace = true }
tachys = { workspace = true }
once_cell = "1"
parking_lot = "0.12.3"
tokio = { version = "1.43", default-features = false }
@@ -36,7 +37,7 @@ tokio = { version = "1.43", features = ["net", "rt-multi-thread"] }
[features]
wasm = []
default = ["tokio/fs", "tokio/sync", "tower-http/fs", "tower/util"]
islands-router = []
islands-router = ["tachys/islands"]
tracing = ["dep:tracing"]
[package.metadata.docs.rs]