aboutsummaryrefslogtreecommitdiff
path: root/server/replaytool/Cargo.toml
blob: 16f8377af05cee9a9e248aa0268e6ef4474a1a4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "hurrycurry-replaytool"
version = "0.1.0"
edition = "2021"

[dependencies]
log = "0.4.22"
env_logger = "0.11.3"
anyhow = "1.0.86"
serde = { version = "1.0.204", features = ["derive"] }
tokio = { version = "1.38.0", features = ["full"] }
serde_json = "1.0.120"
tokio-tungstenite = "0.23.1"
futures-util = "0.3.30"
rand = "0.9.0-alpha.1"

hurrycurry-protocol = { path = "../protocol" }