rhythm-backend/Cargo.toml
Dmitri e4c582dabe
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 9m41s
initial db interactions
2026-04-27 23:05:27 +02:00

19 lines
546 B
TOML

[package]
name = "rhythm-backend"
version = "0.1.0"
edition = "2024"
[dependencies]
dotenvy = "0.15.7"
tracing = "0.1.44"
tracing-appender = "0.2.5"
tracing-subscriber = {version="0.3.23", features = ["env-filter", "json"]}
tracing-tree = "0.4.1"
tokio = { version = "1.52.1", features = ["rt-multi-thread", "macros", "signal"] }
sqlx = { version = "0.8", features = [ "runtime-tokio", "postgres", "chrono", "uuid" ] }
axum = "0.8.9"
thiserror = "2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
argon2 = "0.5.3"