mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
32 lines
971 B
TOML
32 lines
971 B
TOML
[package]
|
|
name = "leptos_actix"
|
|
version = { workspace = true }
|
|
edition = "2021"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
repository = "https://github.com/leptos-rs/leptos"
|
|
description = "Actix integrations for the Leptos web framework."
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
actix-http = "3"
|
|
actix-web = "4"
|
|
futures = "0.3"
|
|
leptos = { workspace = true, features = ["ssr"] }
|
|
leptos_macro = { workspace = true, features = ["actix"] }
|
|
leptos_meta = { workspace = true, features = ["ssr"] }
|
|
leptos_router = { workspace = true, features = ["ssr"] }
|
|
leptos_integration_utils = { workspace = true }
|
|
server_fn = { workspace = true, features = ["actix"] }
|
|
serde_json = "1"
|
|
parking_lot = "0.12.1"
|
|
regex = "1.7.0"
|
|
tracing = "0.1.37"
|
|
tokio = { version = "1", features = ["rt", "fs"] }
|
|
|
|
[features]
|
|
nonce = ["leptos/nonce"]
|
|
experimental-islands = ["leptos_integration_utils/experimental-islands"]
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--generate-link-to-definition"]
|