diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-16 23:16:48 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-16 23:16:48 +0200 |
commit | 15fbaa99f1700f15277187ce56f815a55fe5b7cc (patch) | |
tree | e27938387042cc15175b3519ab357dd222ac022e /server/replaytool | |
parent | 3f98582f903e579d9f47aba48f3976345eabe123 (diff) | |
download | hurrycurry-15fbaa99f1700f15277187ce56f815a55fe5b7cc.tar hurrycurry-15fbaa99f1700f15277187ce56f815a55fe5b7cc.tar.bz2 hurrycurry-15fbaa99f1700f15277187ce56f815a55fe5b7cc.tar.zst |
upgrade deps
Diffstat (limited to 'server/replaytool')
-rw-r--r-- | server/replaytool/Cargo.toml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/server/replaytool/Cargo.toml b/server/replaytool/Cargo.toml index dfc0db64..cfc50b3a 100644 --- a/server/replaytool/Cargo.toml +++ b/server/replaytool/Cargo.toml @@ -4,19 +4,19 @@ version = "0.1.0" edition = "2021" [dependencies] -log = "0.4.27" +log = "0.4.28" env_logger = "0.11.8" -anyhow = "1.0.98" -serde = { version = "1.0.219", features = ["derive"] } -tokio = { version = "1.45.1", features = ["full"] } -serde_json = "1.0.140" -tokio-tungstenite = { version = "0.26.2", features = [ +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.1" -clap = { version = "4.5.39", features = ["derive"] } -async-compression = { version = "0.4.23", features = ["zstd", "tokio"] } -rustls = { version = "0.23.27", features = ["ring"] } +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" } |