From 12d3c012356a10c99aac3d0375be67d47be5b4fd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Jul 2025 02:35:05 +0000 Subject: [PATCH] Bump tokio from 1.45.1 to 1.46.1 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.45.1 to 1.46.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.45.1...tokio-1.46.1) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.46.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 +++++++++++++++-- core/Cargo.toml | 2 +- python/Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d8c486f5..08bdbb59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3039,6 +3039,17 @@ version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02" +[[package]] +name = "io-uring" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4" +dependencies = [ + "bitflags 2.9.1", + "cfg-if", + "libc", +] + [[package]] name = "ipconfig" version = "0.3.2" @@ -5654,16 +5665,18 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.45.1" +version = "1.46.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779" +checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17" dependencies = [ "backtrace", "bytes", + "io-uring", "libc", "mio", "parking_lot", "pin-project-lite", + "slab", "socket2", "tokio-macros", "windows-sys 0.52.0", diff --git a/core/Cargo.toml b/core/Cargo.toml index 74be4e6d..babb0bca 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -83,7 +83,7 @@ serde_json = "1.0" sha2 = "0.10" snafu = "0.8" time = "0.3" -tokio = { version = "1.45", features = ["macros", "fs"] } +tokio = { version = "1.46", features = ["macros", "fs"] } tokio-postgres = { version = "0.7", features = [ "with-chrono-0_4", "with-uuid-1", diff --git a/python/Cargo.toml b/python/Cargo.toml index 82f81be8..e70ae1ad 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -20,7 +20,7 @@ datafusion = { workspace = true, features = ["pyarrow"] } datafusion-ffi = { workspace = true } datafusion-table-providers = { workspace = true } pyo3 = { version = "0.24.2" } -tokio = { version = "1.45", features = ["macros", "rt", "rt-multi-thread", "sync"] } +tokio = { version = "1.46", features = ["macros", "rt", "rt-multi-thread", "sync"] } duckdb = { workspace = true, optional = true} [features]