mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-06 03:15:48 -06:00
36 lines
984 B
TOML
36 lines
984 B
TOML
[package]
|
|
name = "pacman-server"
|
|
version = "0.1.1"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version = "1.86.0"
|
|
description = "A leaderboard API for the Pac-Man game"
|
|
readme.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
publish.workspace = true
|
|
default-run = "pacman-server"
|
|
|
|
[dependencies]
|
|
axum = { version = "0.8", features = ["macros"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
oauth2 = "5"
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
sqlx = { version = "0.8", features = [
|
|
"runtime-tokio-rustls",
|
|
"postgres",
|
|
"chrono",
|
|
] }
|
|
figment = { version = "0.10", features = ["env"] }
|
|
dotenvy = "0.15"
|
|
dashmap = "6.1"
|
|
axum-cookie = "0.2"
|
|
async-trait = "0.1"
|
|
jsonwebtoken = { version = "9.3", default-features = false }
|
|
# validator = { version = "0.16", features = ["derive"] }
|