mirror of
https://github.com/kristoferssolo/kristofersxyz-rs.git
synced 2025-10-21 20:10:36 +00:00
47 lines
1.2 KiB
TOML
47 lines
1.2 KiB
TOML
[package]
|
|
name = "server"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
# 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
|
|
config = { version = "0.15", features = ["toml"], default-features = false }
|
|
log.workspace = true
|
|
secrecy = { version = "0.10", features = ["serde"] }
|
|
serde-aux = "4.7"
|
|
serde.workspace = true
|
|
simple_logger.workspace = true
|
|
sqlx = { version = "0.8", default-features = false, features = [
|
|
"runtime-tokio",
|
|
"tls-rustls",
|
|
"macros",
|
|
"postgres",
|
|
"uuid",
|
|
"chrono",
|
|
"migrate",
|
|
] }
|
|
thiserror.workspace = true
|
|
tokio = { workspace = true, features = ["tracing"] }
|
|
tower-http.workspace = true
|
|
tower.workspace = true
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
tracing-bunyan-formatter = { version = "0.3", default-features = false }
|
|
tracing-log = "0.2.0"
|
|
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
|
|
uuid.workspace = true
|
|
|
|
[dev-dependencies]
|
|
fake = "4.3"
|
|
once_cell = "1.21"
|
|
quickcheck = "1.0"
|
|
quickcheck_macros = "1.0"
|
|
reqwest = "0.12.20"
|
|
serde_json = "1"
|
|
wiremock = "0.6"
|