diff --git a/Cargo.lock b/Cargo.lock index 79339485..f8e0c2c5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3017,9 +3017,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.49.0" +version = "1.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" +checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" dependencies = [ "libc", "mio", diff --git a/client/Cargo.toml b/client/Cargo.toml index 03d9c9aa..139ac282 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -23,7 +23,7 @@ directories = "6.0.0" vk-shader-macros = "0.2.5" nalgebra = { workspace = true } libm = "0.2.16" -tokio = { version = "1.43.0", features = ["rt-multi-thread", "sync", "macros"] } +tokio = { version = "1.50.0", features = ["rt-multi-thread", "sync", "macros"] } png = "0.18.0" anyhow = "1.0.26" serde = { version = "1.0.104", features = ["derive", "rc"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index 27735f6a..f3494e8f 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -12,7 +12,7 @@ license = "Apache-2.0 OR Zlib" postcard = { version = "1.0.4", default-features = false, features = ["use-std"] } common = { path = "../common" } tracing = "0.1.10" -tokio = { version = "1.18.2", features = ["rt-multi-thread", "time", "macros", "sync"] } +tokio = { version = "1.50.0", features = ["rt-multi-thread", "time", "macros", "sync"] } quinn = { workspace = true } serde = { version = "1.0.104", features = ["derive", "rc"] } toml = { workspace = true }