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/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/Cargo.toml')
-rw-r--r-- | server/Cargo.toml | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml index 8f68fd17..56873616 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -5,31 +5,31 @@ edition = "2021" default-run = "hurrycurry-server" [dependencies] -log = "0.4.22" -env_logger = "0.11.5" -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 = "0.24.0" -futures-util = "0.3.30" +log = "0.4.27" +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 = "0.26.2" +futures-util = "0.3.31" serde_yml = "0.0.12" -rand = "0.9.0-alpha.2" +rand = "0.9.1" rand_distr = "0.5.1" shlex = "1.3.0" -clap = { version = "4.5.18", features = ["derive"] } -reqwest = { version = "0.12.7", optional = true, default-features = false, features = [ +clap = { version = "4.5.39", features = ["derive"] } +reqwest = { version = "0.12.19", optional = true, default-features = false, features = [ "json", "http2", "charset", "rustls-tls-native-roots", ] } -pollster = "0.3.0" -bincode = "2.0.0-rc.3" -xdg = "2.5.2" +pollster = "0.4.0" +bincode = "2.0.1" +xdg = "3.0.0" igd = { version = "0.12.1", optional = true, features = ["aio"] } get_if_addrs = { version = "0.5.3", optional = true } -mdns-sd = { version = "0.11.4", optional = true } +mdns-sd = { version = "0.13.9", optional = true } hurrycurry-protocol = { path = "protocol" } hurrycurry-client-lib = { path = "client-lib" } |