Files
employee-tracking-backend/Cargo.toml
2025-08-17 17:07:07 -04:00

25 lines
714 B
TOML

[package]
name = "employee-tracking-backend"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.8.4"
bson = { version = "2.9.0", features = ["chrono-0_4"] }
chrono = { version = "0.4.31", features = ["serde"] }
sha2 = "0.10.8"
rand = "0.8.5"
regex = "1.10.4"
dotenvy = "0.15.7"
mongodb = "2.8.2"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
sqlx = { version = "0.8.6", features = ["runtime-tokio", "tls-native-tls"] }
tokio = { version = "1.47.1", features = ["full", "rt-multi-thread", "signal"] }
tower-http = { version = "0.6.6", features = ["trace"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
[features]
no-auth = []