53 lines
1.1 KiB
TOML
53 lines
1.1 KiB
TOML
[package]
|
|
name = "cms-service"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
common-telemetry = { version = "0.1.5", registry = "kellnr", default-features = false, features = [
|
|
"response",
|
|
"telemetry",
|
|
"with-anyhow",
|
|
"with-sqlx",
|
|
] }
|
|
auth-kit = { path = "../auth-kit" }
|
|
|
|
axum = "0.8.8"
|
|
http = "1.4.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
sqlx = { version = "0.8", features = [
|
|
"chrono",
|
|
"json",
|
|
"postgres",
|
|
"runtime-tokio-native-tls",
|
|
"uuid",
|
|
"migrate",
|
|
] }
|
|
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
chrono = { version = "0.4.43", features = ["serde"] }
|
|
|
|
config = "0.15.19"
|
|
dotenvy = "0.15"
|
|
|
|
anyhow = "1"
|
|
thiserror = "2.0.18"
|
|
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
|
|
utoipa = { version = "5", features = ["axum_extras", "uuid", "chrono"] }
|
|
utoipa-scalar = { version = "0.3.0", features = ["axum"] }
|
|
|
|
futures-util = "0.3"
|
|
tower = "0.5"
|
|
dashmap = "6.1.0"
|
|
reqwest = { version = "0.12", default-features = false, features = [
|
|
"json",
|
|
"rustls-tls",
|
|
] }
|