[package] name = "bingo_auth" version.workspace = true edition = "2024" [lib] path = "lib.rs" [[bin]] name = "auth" path = "main.rs" [dependencies] axum = "0.8.4" bingolib = { path = "../bingolib" } chrono = { version = "0.4.41", features = ["serde"] } dotenv = "0.15.0" env_logger = "0.11.9" jsonwebkey = { version = "0.3.5", features = ["generate", "jsonwebtoken"] } jsonwebtoken = "9.3.1" log = "0.4.27" r2d2 = "0.8.10" rand = "0.9.2" redis = { version = "1.0.4", default-features = false, features = ["r2d2", "tokio-comp"] } reqwest = { version = "0.12.23", features = ["json"] } rosu-v2 = "0.11.0" serde = "1.0.219" serde_json = "1.0.142" sqlx = { version = "0.8.6", default-features = false, features = [ "chrono", "runtime-tokio", "migrate", "macros", "postgres", ] } tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }