mirror of
https://github.com/kristoferssolo/echoes-of-ascension.git
synced 2025-10-21 18:50:34 +00:00
27 lines
625 B
TOML
27 lines
625 B
TOML
[package]
|
|
name = "server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
app = { path = "../app", default-features = false, features = ["ssr"] }
|
|
leptos = { workspace = true, features = ["ssr"] }
|
|
leptos_axum.workspace = true
|
|
|
|
axum.workspace = true
|
|
tokio.workspace = true
|
|
tower.workspace = true
|
|
tower-http.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[lints.clippy]
|
|
pedantic = "warn"
|
|
nursery = "warn"
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|
|
|
|
[package.metadata.nextest]
|
|
slow-timeout = { period = "120s", terminate-after = 3 }
|