44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
TOML
[package]
|
|
name = "leptos_axum"
|
|
version = { workspace = true }
|
|
edition = "2021"
|
|
authors = ["Greg Johnston"]
|
|
license = "MIT"
|
|
repository = "https://github.com/leptos-rs/leptos"
|
|
description = "Axum integrations for the Leptos web framework."
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
any_spawner = { workspace = true, features = ["tokio"] }
|
|
hydration_context = { workspace = true }
|
|
axum = { version = "0.7", default-features = false, features = [
|
|
"matched-path",
|
|
] }
|
|
futures = "0.3"
|
|
http = "1"
|
|
http-body-util = "0.1"
|
|
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"
|
|
serde_json = "1"
|
|
tokio = { version = "1", default-features = false }
|
|
tower = "0.4"
|
|
tower-http = "0.5"
|
|
tracing = "0.1"
|
|
|
|
[dev-dependencies]
|
|
axum = "0.7"
|
|
tokio = { version = "1", 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"]
|