aboutsummaryrefslogtreecommitdiff
path: root/server/replaytool
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-09-28 11:56:45 +0200
committermetamuffin <metamuffin@disroot.org>2024-09-28 11:56:50 +0200
commit045e34f78a498230f39101ce215424fcdcec9eb0 (patch)
tree7900e35b910a15f452ab14a7ca5630561df5d220 /server/replaytool
parent0889f61f1d761726fcec17a3a2a0fb45b66c2116 (diff)
downloadhurrycurry-045e34f78a498230f39101ce215424fcdcec9eb0.tar
hurrycurry-045e34f78a498230f39101ce215424fcdcec9eb0.tar.bz2
hurrycurry-045e34f78a498230f39101ce215424fcdcec9eb0.tar.zst
update cargo stuff
Diffstat (limited to 'server/replaytool')
-rw-r--r--server/replaytool/Cargo.toml14
1 files changed, 7 insertions, 7 deletions
diff --git a/server/replaytool/Cargo.toml b/server/replaytool/Cargo.toml
index fb27ed4b..9d5ac20a 100644
--- a/server/replaytool/Cargo.toml
+++ b/server/replaytool/Cargo.toml
@@ -6,17 +6,17 @@ edition = "2021"
[dependencies]
log = "0.4.22"
env_logger = "0.11.5"
-anyhow = "1.0.86"
-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 = [
+anyhow = "1.0.89"
+serde = { version = "1.0.210", features = ["derive"] }
+tokio = { version = "1.40.0", features = ["full"] }
+serde_json = "1.0.128"
+tokio-tungstenite = { version = "0.24.0", features = [
"rustls-tls-native-roots",
] }
futures-util = "0.3.30"
rand = "0.9.0-alpha.2"
-clap = { version = "4.5.15", features = ["derive"] }
+clap = { version = "4.5.18", features = ["derive"] }
async-compression = { version = "0.4.12", features = ["zstd", "tokio"] }
-rustls = { version = "0.23.12", features = ["ring"] }
+rustls = { version = "0.23.13", features = ["ring"] }
hurrycurry-protocol = { path = "../protocol" }