mirror of
https://github.com/Jackzmc/game-overlay.git
synced 2026-02-03 21:06:29 -06:00
36 lines
No EOL
1.1 KiB
TOML
36 lines
No EOL
1.1 KiB
TOML
[package]
|
|
name = "overlay_manager"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio = { workspace = true }
|
|
tokio-tungstenite = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
pretty_env_logger = "0.5.0"
|
|
futures-util = "0.3.30"
|
|
tokio-stream = "0.1.15"
|
|
log = "0.4.21"
|
|
uuid = { version = "1.8.0", features = ["serde", "v4"] }
|
|
steamid-ng = "1.0.0"
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
once_cell = "1.19.0"
|
|
reqwest = { version = "0.12.4", features = ["json"] }
|
|
jwt = "0.16.0"
|
|
url = "2.5.0"
|
|
serde_qs = { version = "0.13.0", features = ["warp"] }
|
|
hmac = "0.12.1"
|
|
sha2 = "0.10.8"
|
|
handlebars = "6.3.2"
|
|
axum-template = { version = "3.0.0", features = ["handlebars"] }
|
|
axum = { version = "0.8.0", features = ["ws", "macros"] }
|
|
sqlx = { version = "0.8.6", features = [ "runtime-tokio", "mysql", "json", "macros" ] }
|
|
dotenvy = { workspace = true }
|
|
overlay_common = { workspace = true } |