normogen/backend/Cargo.toml
goose 20895c98ff
Some checks failed
Lint and Build / Lint (push) Failing after 4s
Lint and Build / Build (push) Has been skipped
Lint and Build / Docker Build (push) Has been skipped
fix: Add strum_macros dependency to resolve build errors
2026-02-19 10:18:54 -03:00

32 lines
969 B
TOML

[package]
name = "normogen-backend"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.7.9"
tokio = { version = "1.41.1", features = ["full"] }
tower = "0.4.13"
tower-http = { version = "0.5.2", features = ["cors", "trace"] }
tower_governor = "0.4.3"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
mongodb = "2.8.2"
jsonwebtoken = "9.3.1"
chrono = { version = "0.4.38", features = ["serde"] }
dotenv = "0.15.0"
validator = { version = "0.16.1", features = ["derive"] }
uuid = { version = "1.11.0", features = ["v4", "serde"] }
reqwest = { version = "0.12.28", features = ["json"] }
pbkdf2 = { version = "0.12.2", features = ["simple"] }
password-hash = "0.5.0"
rand = "0.8.5"
base64 = "0.22.1"
thiserror = "1.0.69"
anyhow = "1.0.94"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
slog = "2.7.0"
strum = { version = "0.26", features = ["derive"] }
strum_macros = "0.26"
futures = "0.3"