mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 09:54:41 -05:00
* fix(CI): pre-install tailwind and sass * chore: retrigger CI * fix(CI): properly set `erased_mode` in examples * fix(CI): workflow logic install deps locally * chore(CI): organized tailwind and sass versions * fix: properly ignore nightly features on stable rustc * fix(CI): typo * fix: missing cfg attr * fix: properly gate nightly module in `reactive_graph`` * fix: complete `rustc_nightly` cfg gate * fix(CI): making even more space for CI workers * fix: missing one more rustc_nightly gated feature * fix: maximize the speed of cargo-all-features by limiting combinations to 2
43 lines
1.3 KiB
TOML
43 lines
1.3 KiB
TOML
[package]
|
|
name = "leptos_actix"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
repository = "https://github.com/leptos-rs/leptos"
|
|
description = "Actix integrations for the Leptos web framework."
|
|
version = { workspace = true }
|
|
rust-version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
actix-http = "3.9"
|
|
actix-files = "0.6"
|
|
actix-web = "4.9"
|
|
futures = "0.3.31"
|
|
any_spawner = { workspace = true, features = ["tokio"] }
|
|
hydration_context = { workspace = true }
|
|
leptos = { workspace = true, features = ["nonce", "ssr"] }
|
|
leptos_integration_utils = { workspace = true }
|
|
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 }
|
|
tokio = { version = "1.43", features = ["rt", "fs"] }
|
|
send_wrapper = "0.6.0"
|
|
dashmap = "6"
|
|
once_cell = "1"
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--generate-link-to-definition"]
|
|
|
|
[features]
|
|
islands-router = ["tachys/islands"]
|
|
tracing = ["dep:tracing"]
|
|
|
|
[package.metadata.cargo-all-features]
|
|
denylist = ["tracing"]
|
|
max_combination_size = 2
|