Add repository commands for handling votes

This commit is contained in:
Alex Selimov 2026-03-19 10:05:38 -04:00
parent 4b16f39b4d
commit 40331451ca
9 changed files with 647 additions and 4 deletions

View file

@ -4,11 +4,20 @@ version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1"
axum = "0.8"
chrono = "0.4.44"
serde = { version = "1", features = ["derive"] }
sqlx = { version = "0.8.6", features = ["runtime-tokio", "postgres", "macros"] }
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"] }