diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-28 11:56:45 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-28 11:56:50 +0200 |
commit | 045e34f78a498230f39101ce215424fcdcec9eb0 (patch) | |
tree | 7900e35b910a15f452ab14a7ca5630561df5d220 /pixel-client | |
parent | 0889f61f1d761726fcec17a3a2a0fb45b66c2116 (diff) | |
download | hurrycurry-045e34f78a498230f39101ce215424fcdcec9eb0.tar hurrycurry-045e34f78a498230f39101ce215424fcdcec9eb0.tar.bz2 hurrycurry-045e34f78a498230f39101ce215424fcdcec9eb0.tar.zst |
update cargo stuff
Diffstat (limited to 'pixel-client')
-rw-r--r-- | pixel-client/Cargo.toml | 12 | ||||
-rw-r--r-- | pixel-client/tools/Cargo.toml | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/pixel-client/Cargo.toml b/pixel-client/Cargo.toml index 8104a384..4831f485 100644 --- a/pixel-client/Cargo.toml +++ b/pixel-client/Cargo.toml @@ -9,18 +9,18 @@ hurrycurry-protocol = { path = "../server/protocol" } hurrycurry-client-lib = { path = "../server/client-lib", default-features = false, features = [ "sync-network", ] } -tungstenite = { version = "0.23.0", features = ["rustls-tls-native-roots"] } -serde_json = "1.0.122" +tungstenite = { version = "0.24.0", features = ["rustls-tls-native-roots"] } +serde_json = "1.0.128" bincode = "2.0.0-rc.3" log = "0.4.22" env_logger = "0.11.5" -anyhow = "1.0.86" -clap = { version = "4.5.15", features = ["derive"] } -rustls = { version = "0.23.12", features = ["ring"] } +anyhow = "1.0.89" +clap = { version = "4.5.18", features = ["derive"] } +rustls = { version = "0.23.13", features = ["ring"] } rand = "0.9.0-alpha.2" xdg = "2.5.2" toml = "0.8.19" -serde = { version = "1.0.207", features = ["derive"] } +serde = { version = "1.0.210", features = ["derive"] } users = "0.11.0" [features] diff --git a/pixel-client/tools/Cargo.toml b/pixel-client/tools/Cargo.toml index 15dd0239..075ec24f 100644 --- a/pixel-client/tools/Cargo.toml +++ b/pixel-client/tools/Cargo.toml @@ -5,8 +5,8 @@ edition = "2021" [dependencies] image = "0.25.2" -anyhow = "1.0.86" +anyhow = "1.0.89" log = "0.4.22" env_logger = "0.11.5" -clap = { version = "4.5.15", features = ["derive"] } +clap = { version = "4.5.18", features = ["derive"] } sdl2 = { version = "0.37.0", features = ["image"] } |