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

20 lines
694 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"
2022-11-10 12:52:30 +00:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-11-10 13:45:38 +00:00
redis = { version = "0.22.1", features=["r2d2", "ahash", "cluster", "tokio-comp", "connection-manager"] }
2022-11-10 12:52:30 +00:00
axum = { version = "0.5.17" }
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 01:34:03 +00:00
async-trait = { version = "0.1.58" }