1
Fork 0
mirror of https://github.com/Steffo99/distributed-arcade.git synced 2024-10-16 06:27:30 +00:00
distributed-arcade/Cargo.toml

27 lines
925 B
TOML
Raw Normal View History

2022-11-10 12:52:30 +00:00
[package]
2022-11-11 01:11:18 +00:00
name = "distributed_arcade"
2023-03-22 14:42:26 +00:00
version = "1.0.0"
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"
2024-06-07 00:09:49 +00:00
license = "EUPL-1.2"
2022-11-12 23:04:58 +00:00
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"] }