aboutsummaryrefslogtreecommitdiff
path: root/server/replaytool
diff options
context:
space:
mode:
Diffstat (limited to 'server/replaytool')
-rw-r--r--server/replaytool/Cargo.toml16
1 files changed, 8 insertions, 8 deletions
diff --git a/server/replaytool/Cargo.toml b/server/replaytool/Cargo.toml
index 9d48392e..fb27ed4b 100644
--- a/server/replaytool/Cargo.toml
+++ b/server/replaytool/Cargo.toml
@@ -5,18 +5,18 @@ edition = "2021"
[dependencies]
log = "0.4.22"
-env_logger = "0.11.3"
+env_logger = "0.11.5"
anyhow = "1.0.86"
-serde = { version = "1.0.204", features = ["derive"] }
-tokio = { version = "1.38.0", features = ["full"] }
-serde_json = "1.0.120"
+serde = { version = "1.0.205", features = ["derive"] }
+tokio = { version = "1.39.2", features = ["full"] }
+serde_json = "1.0.122"
tokio-tungstenite = { version = "0.23.1", features = [
"rustls-tls-native-roots",
] }
futures-util = "0.3.30"
-rand = "0.9.0-alpha.1"
-clap = { version = "4.5.8", features = ["derive"] }
-async-compression = { version = "0.4.11", features = ["zstd", "tokio"] }
-rustls = { version = "0.23.10", features = ["ring"] }
+rand = "0.9.0-alpha.2"
+clap = { version = "4.5.15", features = ["derive"] }
+async-compression = { version = "0.4.12", features = ["zstd", "tokio"] }
+rustls = { version = "0.23.12", features = ["ring"] }
hurrycurry-protocol = { path = "../protocol" }