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

[dependencies]
log = "0.4.28"
env_logger = "0.11.8"
anyhow = "1.0.99"
serde = { version = "1.0.225", features = ["derive"] }
tokio = { version = "1.47.1", features = ["full"] }
serde_json = "1.0.145"
tokio-tungstenite = { version = "0.27.0", features = [
    "rustls-tls-native-roots",
] }
futures-util = "0.3.31"
rand = "0.9.2"
clap = { version = "4.5.47", features = ["derive"] }
async-compression = { version = "0.4.30", features = ["zstd", "tokio"] }
rustls = { version = "0.23.31", features = ["ring"] }

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