2026-03-17 09:38:52 -04:00
|
|
|
[package]
|
2026-03-19 15:52:48 -04:00
|
|
|
name = "upvoters"
|
2026-03-17 09:38:52 -04:00
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
2026-03-19 15:52:48 -04:00
|
|
|
license = "MIT"
|
2026-03-17 09:38:52 -04:00
|
|
|
|
|
|
|
|
[dependencies]
|
2026-03-19 10:05:38 -04:00
|
|
|
anyhow = "1"
|
2026-03-19 13:46:55 -04:00
|
|
|
axum = { version = "0.8", features = ["macros"] }
|
|
|
|
|
axum-extra = { version = "0.12.5", features = ["cookie"] }
|
2026-03-19 10:05:38 -04:00
|
|
|
chrono = "0.4.44"
|
2026-03-17 09:38:52 -04:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2026-03-19 14:56:04 -04:00
|
|
|
serde_json = "1"
|
2026-03-19 10:05:38 -04:00
|
|
|
sqlx = { version = "0.8.6", features = [
|
|
|
|
|
"runtime-tokio",
|
|
|
|
|
"postgres",
|
|
|
|
|
"macros",
|
|
|
|
|
"uuid",
|
|
|
|
|
"chrono",
|
|
|
|
|
] }
|
2026-03-17 09:38:52 -04:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
|
tower = "0.5"
|
2026-03-19 23:37:03 -04:00
|
|
|
tower-http = { version = "0.6", features = ["trace", "cors"] }
|
2026-03-17 09:38:52 -04:00
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2026-03-19 10:05:38 -04:00
|
|
|
uuid = { version = "1.22.0", features = ["v4"] }
|