[package] name = "distributed_arcade" version = "1.0.0" authors = ["Stefano Pigozzi "] edition = "2021" description = "Fast and simple scoreboard service for games" repository = "https://github.com/Steffo99/distributed-arcade" license = "EUPL-1.2" keywords = ["game", "scoreboard", "redis", "axum", "web-api"] categories = ["games"] [dependencies] redis = { version = "0.22.1", features=["r2d2", "ahash", "cluster", "tokio-comp", "connection-manager"] } axum = { version = "0.6.7" } tokio = { version = "1.21.2", features=["full"] } r2d2 = { version = "0.8.10" } lazy_static = { version = "1.4.0" } serde = { version = "1.0.147", features=["derive"] } serde_json = { version = "1.0.87" } log = { version = "0.4.17" } pretty_env_logger = { version = "0.4.0" } rand = { version = "0.8.5" } regex = { version = "1.7.0" } async-trait = { version = "0.1.58" } tower-http = { version = "0.3.4", features=["cors"] }