upvoters/Cargo.toml

26 lines
652 B
TOML
Raw Normal View History

[package]
name = "uprs"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1"
2026-03-19 13:46:55 -04:00
axum = { version = "0.8", features = ["macros"] }
axum-extra = { version = "0.12.5", features = ["cookie"] }
chrono = "0.4.44"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqlx = { version = "0.8.6", features = [
"runtime-tokio",
"postgres",
"macros",
"uuid",
"chrono",
] }
tokio = { version = "1", features = ["full"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.22.0", features = ["v4"] }