backend/Cargo.toml
PIVODEVAT 330142f0bf init
2024-12-28 21:35:45 +03:00

22 lines
543 B
TOML

[package]
name = "backend"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = { version = "0.8.0-rc.1" }
tokio = { version = "1.31", features = ["full"] }
tokio-postgres = { version = "0.7", features = ["with-uuid-1"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.8"
md-5 = "0.10"
bb8 = "0.9"
bb8-postgres = "0.9"
uuid = { version = "1.4", features = ["serde", "v4"] }
argon2-kdf = "1.5.3"
tracing = "0.1"
tracing-subscriber = "0.3"
base64 = "0.21"
chrono = { version = "0.4", features = ["serde"] }