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]