mirror of
https://github.com/Steffo99/distributed-arcade.git
synced 2024-11-21 15:44:26 +00:00
20 lines
No EOL
694 B
TOML
20 lines
No EOL
694 B
TOML
[package]
|
|
name = "distributed_arcade"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
redis = { version = "0.22.1", features=["r2d2", "ahash", "cluster", "tokio-comp", "connection-manager"] }
|
|
axum = { version = "0.5.17" }
|
|
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" } |