upvoters/Cargo.toml

27 lines
680 B
TOML
Raw Normal View History

[package]
2026-03-19 15:52:48 -04:00
name = "upvoters"
2026-03-20 11:01:26 -04:00
version = "0.2.0"
edition = "2024"
2026-03-19 15:52:48 -04:00
license = "MIT"
[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"
2026-03-19 23:37:03 -04:00
tower-http = { version = "0.6", features = ["trace", "cors"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.22.0", features = ["v4"] }