From 4c50a2dfc7456b119d8e8607a91670162be531a1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Apr 2025 02:15:42 +0000 Subject: [PATCH] chore(deps): Bump tokio from 1.35.0 to 1.38.2 in /rust/cubesql Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.35.0 to 1.38.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.35.0...tokio-1.38.2) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.38.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- rust/cubesql/Cargo.lock | 8 ++++---- rust/cubesql/cubeclient/Cargo.toml | 2 +- rust/cubesql/cubesql/Cargo.toml | 2 +- rust/cubesql/pg-srv/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/rust/cubesql/Cargo.lock b/rust/cubesql/Cargo.lock index 59a126965820c..58c992272e66c 100644 --- a/rust/cubesql/Cargo.lock +++ b/rust/cubesql/Cargo.lock @@ -3283,9 +3283,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.35.0" +version = "1.38.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841d45b238a16291a4e1584e61820b8ae57d696cc5015c459c229ccc6990cc1c" +checksum = "68722da18b0fc4a05fdc1120b302b82051265792a1e1b399086e9b204b10ad3d" dependencies = [ "backtrace", "bytes", @@ -3303,9 +3303,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" +checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" dependencies = [ "proc-macro2", "quote", diff --git a/rust/cubesql/cubeclient/Cargo.toml b/rust/cubesql/cubeclient/Cargo.toml index 1e7797cd9bf98..e656eb73f6023 100644 --- a/rust/cubesql/cubeclient/Cargo.toml +++ b/rust/cubesql/cubeclient/Cargo.toml @@ -16,7 +16,7 @@ url = "^2.2" reqwest-middleware = { version = "0.3.2", features = ["json"] } anyhow = "1.0" async-trait = "0.1.51" -tokio = { version = "1.6", features = ["time"] } +tokio = { version = "1.38", features = ["time"] } uuid = { version = "1", features = ["v4"] } log = "0.4" diff --git a/rust/cubesql/cubesql/Cargo.toml b/rust/cubesql/cubesql/Cargo.toml index c07383a16856f..7262d05670395 100644 --- a/rust/cubesql/cubesql/Cargo.toml +++ b/rust/cubesql/cubesql/Cargo.toml @@ -19,7 +19,7 @@ cubeclient = { path = "../cubeclient" } pg-srv = { path = "../pg-srv" } sqlparser = { git = 'https://github.com/cube-js/sqlparser-rs.git', rev = "6a54d27d3b75a04b9f9cbe309a83078aa54b32fd" } base64 = "0.13.0" -tokio = { version = "^1.35", features = ["full", "rt", "tracing"] } +tokio = { version = "^1.38", features = ["full", "rt", "tracing"] } serde = { version = "^1.0", features = ["derive"] } itertools = "0.14.0" serde_json = "^1.0" diff --git a/rust/cubesql/pg-srv/Cargo.toml b/rust/cubesql/pg-srv/Cargo.toml index 4967ef2699d47..78537224646fb 100644 --- a/rust/cubesql/pg-srv/Cargo.toml +++ b/rust/cubesql/pg-srv/Cargo.toml @@ -13,7 +13,7 @@ with-chrono = ["chrono"] default = ["with-chrono"] [dependencies] -tokio = { version = "1.0", features = ["full"] } +tokio = { version = "1.38", features = ["full"] } async-trait = "0.1.36" log = "0.4" bytes = "1.2"