28 lines
906 B
TOML
28 lines
906 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 = { version = "0.8.9", features = ["macros"] }
|
|
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"] }
|
|
rand = "0.10.1"
|
|
sha2 = "0.11.0"
|
|
hex = "0.4.3"
|
|
axum-cookie = "0.2.4"
|
|
tower = "0.5.3"
|
|
tower-http = { version = "0.6.8", features = ["trace", "tracing"] }
|