mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
43 lines
1.3 KiB
TOML
43 lines
1.3 KiB
TOML
[package]
|
|
name = "leptos_axum"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
repository = "https://github.com/leptos-rs/leptos"
|
|
description = "Axum integrations for the Leptos web framework."
|
|
version = { workspace = true }
|
|
rust-version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
any_spawner = { workspace = true, features = ["tokio"] }
|
|
hydration_context = { workspace = true }
|
|
axum = { version = "0.7.5", default-features = false, features = [
|
|
"matched-path",
|
|
] }
|
|
futures = "0.3.30"
|
|
http = "1.1"
|
|
http-body-util = "0.1.2"
|
|
leptos = { workspace = true, features = ["nonce", "ssr"] }
|
|
server_fn = { workspace = true, features = ["axum-no-default"] }
|
|
leptos_macro = { workspace = true, features = ["axum"] }
|
|
leptos_meta = { workspace = true, features = ["ssr"] }
|
|
leptos_router = { workspace = true, features = ["ssr"] }
|
|
leptos_integration_utils = { workspace = true }
|
|
parking_lot = "0.12.3"
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.39", default-features = false }
|
|
tower = "0.4.13"
|
|
tower-http = "0.5.2"
|
|
tracing = "0.1.40"
|
|
|
|
[dev-dependencies]
|
|
axum = "0.7.5"
|
|
tokio = { version = "1.39", features = ["net", "rt-multi-thread"] }
|
|
|
|
[features]
|
|
wasm = []
|
|
default = ["tokio/fs", "tokio/sync", "tower-http/fs"]
|
|
islands-router = []
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--generate-link-to-definition"]
|