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/client-lib | |
parent | 3f98582f903e579d9f47aba48f3976345eabe123 (diff) | |
download | hurrycurry-15fbaa99f1700f15277187ce56f815a55fe5b7cc.tar hurrycurry-15fbaa99f1700f15277187ce56f815a55fe5b7cc.tar.bz2 hurrycurry-15fbaa99f1700f15277187ce56f815a55fe5b7cc.tar.zst |
upgrade deps
Diffstat (limited to 'server/client-lib')
-rw-r--r-- | server/client-lib/Cargo.toml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/server/client-lib/Cargo.toml b/server/client-lib/Cargo.toml index c1168a3d..b06cbf9f 100644 --- a/server/client-lib/Cargo.toml +++ b/server/client-lib/Cargo.toml @@ -5,17 +5,17 @@ edition = "2021" [dependencies] hurrycurry-protocol = { path = "../protocol" } -tungstenite = { version = "0.26.2", optional = true, features = [ +tungstenite = { version = "0.27.0", optional = true, features = [ "rustls-tls-native-roots", ] } -tokio-tungstenite = { version = "0.26.2", optional = true, features = [ +tokio-tungstenite = { version = "0.27.0", optional = true, features = [ "rustls-tls-native-roots", ] } -tokio = { version = "1.45.1", features = ["net", "sync"], optional = true } -serde_json = "1.0.140" +tokio = { version = "1.47.1", features = ["net", "sync"], optional = true } +serde_json = "1.0.145" bincode = "2.0.1" -log = "0.4.27" -anyhow = "1.0.98" +log = "0.4.28" +anyhow = "1.0.99" futures-util = { version = "0.3.31", optional = true } [features] |