From c96773caae43edafa56dc09489bba85b7e6e7cf9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 May 2025 12:54:16 +0000 Subject: [PATCH] Bump tokio from 1.44.2 to 1.45.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.44.2 to 1.45.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.44.2...tokio-1.45.0) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.45.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- core/Cargo.toml | 2 +- python/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 02ef2fdf..f00ef870 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5426,9 +5426,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.44.2" +version = "1.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48" +checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165" dependencies = [ "backtrace", "bytes", diff --git a/core/Cargo.toml b/core/Cargo.toml index fa1e0876..802fe6c2 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -80,7 +80,7 @@ serde_json = "1.0" sha2 = "0.10" snafu = "0.8" time = "0.3" -tokio = { version = "1.44", features = ["macros", "fs"] } +tokio = { version = "1.45", 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 e494191c..4a9339fb 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.23" } -tokio = { version = "1.44", features = ["macros", "rt", "rt-multi-thread", "sync"] } +tokio = { version = "1.45", features = ["macros", "rt", "rt-multi-thread", "sync"] } duckdb = { workspace = true, optional = true} [features]