Microservice to bring 2FA to self hosted PDSes
1[package] 2name = "pds_bells_and_whistles" 3version = "0.1.0" 4edition = "2024" 5 6[dependencies] 7axum = { version = "0.7", features = ["macros", "json"] } 8tokio = { version = "1.39", features = ["rt-multi-thread", "macros", "signal"] } 9sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "sqlite"] } 10dotenvy = "0.15.7" 11serde = { version = "1.0", features = ["derive"] } 12serde_json = "1.0" 13tracing = "0.1" 14tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }