Two teams try and fill in any horizontal, vertical, or diagonal line on a bingo board by playing maps on osu!
osu.bingo
osu
1[package]
2name = "bingo_auth"
3version.workspace = true
4edition = "2024"
5
6[lib]
7path = "lib.rs"
8
9[[bin]]
10name = "auth"
11path = "main.rs"
12
13[dependencies]
14axum = "0.8.4"
15bingolib = { path = "../bingolib" }
16chrono = { version = "0.4.41", features = ["serde"] }
17dotenv = "0.15.0"
18env_logger = "0.11.9"
19jsonwebkey = { version = "0.3.5", features = ["generate", "jsonwebtoken"] }
20jsonwebtoken = "9.3.1"
21log = "0.4.27"
22r2d2 = "0.8.10"
23rand = "0.9.2"
24redis = { version = "1.0.4", default-features = false, features = ["r2d2", "tokio-comp"] }
25reqwest = { version = "0.12.23", features = ["json"] }
26rosu-v2 = "0.11.0"
27serde = "1.0.219"
28serde_json = "1.0.142"
29sqlx = { version = "0.8.6", default-features = false, features = [
30 "chrono",
31 "runtime-tokio",
32 "migrate",
33 "macros",
34 "postgres",
35] }
36tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }