From a068feca2c5aa012a5bac48980eea6c40996821c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Dec 2025 20:41:34 +0000 Subject: [PATCH] chore(deps): bump tokio from 1.47.1 to 1.48.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.47.1 to 1.48.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.47.1...tokio-1.48.0) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.48.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 39 ++++++++++++++++++++------------------- axoupdater-cli/Cargo.toml | 2 +- axoupdater/Cargo.toml | 4 ++-- 3 files changed, 23 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5e6c30a..2ad6883 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1214,17 +1214,6 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "io-uring" -version = "0.7.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013" -dependencies = [ - "bitflags 2.4.2", - "cfg-if", - "libc", -] - [[package]] name = "ipnet" version = "2.9.0" @@ -2407,29 +2396,26 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.47.1" +version = "1.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" +checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" dependencies = [ - "backtrace", "bytes", - "io-uring", "libc", "mio", "parking_lot", "pin-project-lite", "signal-hook-registry", - "slab", "socket2 0.6.0", "tokio-macros", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] name = "tokio-macros" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" +checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" dependencies = [ "proc-macro2", "quote", @@ -2829,6 +2815,12 @@ dependencies = [ "syn 2.0.87", ] +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + [[package]] name = "windows-registry" version = "0.2.0" @@ -2904,6 +2896,15 @@ dependencies = [ "windows-targets 0.53.2", ] +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + [[package]] name = "windows-targets" version = "0.48.5" diff --git a/axoupdater-cli/Cargo.toml b/axoupdater-cli/Cargo.toml index 0a14db8..0549ea6 100644 --- a/axoupdater-cli/Cargo.toml +++ b/axoupdater-cli/Cargo.toml @@ -27,7 +27,7 @@ axoasset = { version = "1.4.0", default-features = false, features = [ axoprocess = "0.2.0" camino = { version = "1.1.10", features = ["serde1"] } tempfile = "3.23.0" -tokio = { version = "1.47.1", features = ["full"] } +tokio = { version = "1.48.0", features = ["full"] } [[bin]] name = "axoupdater" diff --git a/axoupdater/Cargo.toml b/axoupdater/Cargo.toml index 8307aa9..f1dc373 100644 --- a/axoupdater/Cargo.toml +++ b/axoupdater/Cargo.toml @@ -31,7 +31,7 @@ url = "2.5.7" gazenot = { version = "0.3.3", features = ["client_lib"], optional = true } # blocking API -tokio = { version = "1.36.0", features = ["full"], optional = true } +tokio = { version = "1.48.0", features = ["full"], optional = true } # errors miette = "7.2.0" @@ -41,6 +41,6 @@ thiserror = "2.0.0" self-replace = "1.5.0" [dev-dependencies] -tokio = { version = "1.36.0", features = ["test-util"] } +tokio = { version = "1.48.0", features = ["test-util"] } httpmock = "0.8.2" serial_test = "3.2.0"