34 lines
1007 B
TOML
34 lines
1007 B
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.8"
|
|
actix-web = "4.8"
|
|
futures = "0.3.30"
|
|
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 }
|
|
leptos_router = { workspace = true, features = ["ssr"] }
|
|
server_fn = { workspace = true, features = ["actix"] }
|
|
serde_json = "1.0"
|
|
parking_lot = "0.12.3"
|
|
tracing = "0.1.40"
|
|
tokio = { version = "1.39", features = ["rt", "fs"] }
|
|
send_wrapper = "0.6.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--generate-link-to-definition"]
|
|
|
|
[features]
|
|
islands-router = []
|