rhythm-backend/Cargo.toml
Dmitri ff4c9eee87
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 10m12s
added creation of access token and table for refresh token
2026-04-28 20:36:54 +02:00

22 lines
717 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"
jsonwebtoken = { version = "10.3.0", features = ["rand"] }
chrono = { version = "0.4.44", features = ["serde"] }
uuid = { version = "1.23.1", features = ["serde", "v4"] }