diff --git a/Cargo.lock b/Cargo.lock index e15a3cc0d64..7ef6a26611c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -790,7 +790,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -2719,7 +2719,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -3159,7 +3159,7 @@ dependencies = [ "getrandom 0.3.1", "once_cell", "rustix", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -3284,9 +3284,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.43.0" +version = "1.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" +checksum = "492a604e2fd7f814268a378409e6c92b5525d747d10db9a229723f55a417958c" dependencies = [ "backtrace", "bytes", @@ -3920,7 +3920,7 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] diff --git a/examples/simple_ssr/Cargo.toml b/examples/simple_ssr/Cargo.toml index 90a42c8b0c0..766dd6bc5f3 100644 --- a/examples/simple_ssr/Cargo.toml +++ b/examples/simple_ssr/Cargo.toml @@ -26,7 +26,7 @@ wasm-logger = "0.2" log = "0.4" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -tokio = { version = "1.40.0", features = ["full"] } +tokio = { version = "1.43.1", features = ["full"] } warp = "0.3" clap = { version = "4", features = ["derive"] } diff --git a/examples/ssr_router/Cargo.toml b/examples/ssr_router/Cargo.toml index ffce6536604..2f14ac4a81d 100644 --- a/examples/ssr_router/Cargo.toml +++ b/examples/ssr_router/Cargo.toml @@ -25,7 +25,7 @@ wasm-bindgen-futures = "0.4" wasm-logger = "0.2" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -tokio = { version = "1.40.0", features = ["full"] } +tokio = { version = "1.43.1", features = ["full"] } axum = "0.8" tower = { version = "0.5", features = ["make"] } tower-http = { version = "0.6", features = ["fs"] } diff --git a/packages/yew/Cargo.toml b/packages/yew/Cargo.toml index 5c81313ea84..cb41df35722 100644 --- a/packages/yew/Cargo.toml +++ b/packages/yew/Cargo.toml @@ -40,7 +40,7 @@ wasm-bindgen-futures = "0.4" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] # We still need tokio as we have docs linked to it. -tokio = { version = "1.40", features = ["rt"] } +tokio = { version = "1.43", features = ["rt"] } [dependencies.web-sys] version = "^0.3.70" @@ -79,7 +79,7 @@ features = [ ] [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] -tokio = { version = "1.40", features = ["full"] } +tokio = { version = "1.43", features = ["full"] } [target.'cfg(all(target_arch = "wasm32", target_os = "wasi"))'.dependencies] tokio = { version = "1.40", features = ["macros", "rt", "time"] } diff --git a/tools/benchmark-ssr/Cargo.toml b/tools/benchmark-ssr/Cargo.toml index f360ccd8d2e..bfca0247a1b 100644 --- a/tools/benchmark-ssr/Cargo.toml +++ b/tools/benchmark-ssr/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] yew = { path = "../../packages/yew", features = ["ssr"] } function_router = { path = "../../examples/function_router" } -tokio = { version = "1.40", features = ["full"] } +tokio = { version = "1.43", features = ["full"] } average = "0.15.1" tabled = "0.18.0" indicatif = "0.17.8" diff --git a/tools/website-test/Cargo.toml b/tools/website-test/Cargo.toml index 8c1919abaf6..7a24e4ef911 100644 --- a/tools/website-test/Cargo.toml +++ b/tools/website-test/Cargo.toml @@ -19,7 +19,7 @@ weblog = "0.3.0" yew = { path = "../../packages/yew/", features = ["ssr", "csr"] } yew-autoprops = "0.4.1" yew-router = { path = "../../packages/yew-router/" } -tokio = { version = "1.40.0", features = ["rt", "macros"] } +tokio = { version = "1.43.1", features = ["rt", "macros"] } [dev-dependencies.web-sys] version = "0.3"