[package] name = "pds_gatekeeper" version = "0.1.2" edition = "2024" license = "MIT" [dependencies] axum = { version = "0.8.4", features = ["macros", "json"] } tokio = { version = "1.47.1", features = ["rt-multi-thread", "macros", "signal"] } sqlx = { version = "0.8.6", features = ["runtime-tokio-rustls", "sqlite", "migrate", "chrono"] } dotenvy = "0.15.7" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] } hyper-util = { version = "0.1.16", features = ["client", "client-legacy"] } tower-http = { version = "0.6", features = ["cors", "compression-zstd"] } tower_governor = { version = "0.8.0", features = ["axum", "tracing"] } hex = "0.4" jwt-compact = { version = "0.8.0", features = ["es256k"] } scrypt = "0.11" #Leaveing these two cause I think it is needed by the email crate for ssl aws-lc-rs = "1.13.0" rustls = { version = "0.23", default-features = false, features = ["tls12", "std", "logging", "aws_lc_rs"] } lettre = { version = "0.11", default-features = false, features = ["builder", "webpki-roots", "rustls", "aws-lc-rs", "smtp-transport", "tokio1", "tokio1-rustls"] } handlebars = { version = "6.3.2", features = ["rust-embed"] } rust-embed = "8.7.2" axum-template = { version = "3.0.0", features = ["handlebars"] } rand = "0.9.2" anyhow = "1.0.99" chrono = "0.4.41" sha2 = "0.10"