mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
32 lines
779 B
TOML
32 lines
779 B
TOML
[package]
|
|
name = "shared-server-2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
axum = { version = "0.7.0", optional = true }
|
|
leptos = "0.6.0"
|
|
leptos_axum = { version = "0.6.0", optional = true }
|
|
tokio = { version = "1.0", features = ["rt-multi-thread"], optional = true }
|
|
tower-http = { version = "0.5.0", optional = true, features = ["trace"] }
|
|
tracing = { version = "0.1.40", optional = true }
|
|
tracing-subscriber = { version = "0.3.18", optional = true }
|
|
|
|
[features]
|
|
default = ["ssr"]
|
|
hydrate = ["leptos/hydrate"]
|
|
ssr = [
|
|
"dep:axum",
|
|
"dep:tokio",
|
|
"dep:leptos_axum",
|
|
"dep:tracing",
|
|
"dep:tracing-subscriber",
|
|
"dep:tower-http",
|
|
"leptos/ssr",
|
|
]
|
|
|
|
#We don't need cargo leptos options because we're not using cargo leptos.
|
|
|