Blackjack/backend/Cargo.toml

18 lines
454 B
TOML
Raw Normal View History

2025-10-24 12:11:25 -07:00
[package]
name = "backend"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.100"
2025-10-24 12:11:25 -07:00
async-trait = "0.1.89"
atproto-jetstream = "0.12.0"
2025-10-24 12:11:25 -07:00
axum = { version = "0.8.6", features = ["json"] }
serde = "1.0.228"
serde_json = "1.0.145"
sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio"] }
thiserror = "2.0.17"
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.20"