2022-11-10 12:52:30 +00:00
|
|
|
[package]
|
2022-11-11 01:11:18 +00:00
|
|
|
name = "distributed_arcade"
|
2023-02-28 19:00:32 +00:00
|
|
|
version = "0.3.1"
|
2022-11-12 23:04:58 +00:00
|
|
|
authors = ["Stefano Pigozzi <me@steffo.eu>"]
|
2022-11-10 12:52:30 +00:00
|
|
|
edition = "2021"
|
2022-11-12 23:04:58 +00:00
|
|
|
description = "Fast and simple scoreboard service for games"
|
|
|
|
repository = "https://github.com/Steffo99/distributed-arcade"
|
|
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
keywords = ["game", "scoreboard", "redis", "axum", "web-api"]
|
|
|
|
categories = ["games"]
|
2022-11-10 12:52:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2022-11-10 13:45:38 +00:00
|
|
|
redis = { version = "0.22.1", features=["r2d2", "ahash", "cluster", "tokio-comp", "connection-manager"] }
|
2023-02-28 20:00:29 +00:00
|
|
|
axum = { version = "0.6.7" }
|
2022-11-10 13:45:38 +00:00
|
|
|
tokio = { version = "1.21.2", features=["full"] }
|
|
|
|
r2d2 = { version = "0.8.10" }
|
2022-11-11 01:11:18 +00:00
|
|
|
lazy_static = { version = "1.4.0" }
|
|
|
|
serde = { version = "1.0.147", features=["derive"] }
|
|
|
|
serde_json = { version = "1.0.87" }
|
|
|
|
log = { version = "0.4.17" }
|
2022-11-11 11:49:10 +00:00
|
|
|
pretty_env_logger = { version = "0.4.0" }
|
|
|
|
rand = { version = "0.8.5" }
|
2022-11-11 15:44:22 +00:00
|
|
|
regex = { version = "1.7.0" }
|
2022-11-12 22:36:28 +00:00
|
|
|
async-trait = { version = "0.1.58" }
|
|
|
|
tower-http = { version = "0.3.4", features=["cors"] }
|