diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-06-03 20:00:18 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-06-03 20:00:18 +0200 |
| commit | db4587d3ec64b7e28691b43f9d9701939eed94d1 (patch) | |
| tree | 1005017ea4a5d4e287024eaf08f876c7e34bfbdb /server/client-lib/Cargo.toml | |
| parent | 9ee7eef2919feffe4e0695494d4027e8ec011808 (diff) | |
| download | hurrycurry-db4587d3ec64b7e28691b43f9d9701939eed94d1.tar hurrycurry-db4587d3ec64b7e28691b43f9d9701939eed94d1.tar.bz2 hurrycurry-db4587d3ec64b7e28691b43f9d9701939eed94d1.tar.zst | |
update rust toolchain and rust dependencies.
`map_many_mut` and `trait_upcasting` was stabilized.
Diffstat (limited to 'server/client-lib/Cargo.toml')
| -rw-r--r-- | server/client-lib/Cargo.toml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/server/client-lib/Cargo.toml b/server/client-lib/Cargo.toml index 95456595..5c229e2b 100644 --- a/server/client-lib/Cargo.toml +++ b/server/client-lib/Cargo.toml @@ -5,18 +5,18 @@ edition = "2021" [dependencies] hurrycurry-protocol = { path = "../protocol" } -tungstenite = { version = "0.24.0", optional = true, features = [ +tungstenite = { version = "0.26.2", optional = true, features = [ "rustls-tls-native-roots", ] } -tokio-tungstenite = { version = "0.24.0", optional = true, features = [ +tokio-tungstenite = { version = "0.26.2", optional = true, features = [ "rustls-tls-native-roots", ] } -tokio = { version = "1.40.0", features = ["net", "sync"], optional = true } -serde_json = "1.0.128" -bincode = "2.0.0-rc.3" -log = "0.4.22" -anyhow = "1.0.89" -futures-util = { version = "0.3.30", optional = true } +tokio = { version = "1.45.1", features = ["net", "sync"], optional = true } +serde_json = "1.0.140" +bincode = "2.0.1" +log = "0.4.27" +anyhow = "1.0.98" +futures-util = { version = "0.3.31", optional = true } [features] default = ["sync-network", "tokio-network"] |