From 38101afb401b2e22d39f488f583718921a9cff37 Mon Sep 17 00:00:00 2001 From: everpcpc Date: Tue, 25 Apr 2023 00:06:11 +0800 Subject: [PATCH] chore: upgrade dependencies (#88) --- cli/Cargo.toml | 4 ++-- core/Cargo.toml | 12 ++++++------ driver/Cargo.toml | 12 ++++++------ 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index de34a034..fab0b140 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bendsql" -version = "0.3.0" +version = "0.3.1" edition = "2021" license = "Apache-2.0" description = "Databend Native Command Line Tool" @@ -16,7 +16,7 @@ chrono = { version = "0.4.24", default-features = false, features = ["clock"] } clap = { version = "4.1.0", features = ["derive", "env"] } comfy-table = "6.1.4" csv = "1.2.1" -databend-driver = { path = "../driver", version = "0.2.18", features = ["rustls", "flight-sql"] } +databend-driver = { path = "../driver", version = "0.2.19", features = ["rustls", "flight-sql"] } futures = { version = "0.3", default-features = false, features = ["alloc"] } humantime-serde = "1.1.1" indicatif = "0.17.3" diff --git a/core/Cargo.toml b/core/Cargo.toml index ea19e4ff..82e85908 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "databend-client" -version = "0.1.14" +version = "0.1.15" edition = "2021" license = "Apache-2.0" description = "Databend Client for Rust" @@ -19,14 +19,14 @@ native-tls = ["reqwest/native-tls"] [dependencies] bytes = "1.4.0" http = "0.2.9" -reqwest = { version = "0.11.14", default-features = false, features = ["json", "multipart", "stream"] } -serde = { version = "1.0.156", default-features = false, features = ["derive"] } -serde_json = { version = "1.0.94", default-features = false, features = ["std"] } +reqwest = { version = "0.11.16", default-features = false, features = ["json", "multipart", "stream"] } +serde = { version = "1.0.160", default-features = false, features = ["derive"] } +serde_json = { version = "1.0.96", default-features = false, features = ["std"] } +tokio = { version = "1.27.0", features = ["macros"] } +tokio-util = { version = "0.7.7", features = ["io-util"] } tower = { version = "0.4.13", default-features = false } tower-http = { version = "0.4.0", default-features = false } url = { version = "2.3.1", default-features = false } -tokio = { version = "1.26.0", features = ["macros"] } -tokio-util = { version = "0.7.7", features = ["io-util"] } [dev-dependencies] chrono = { version = "0.4.24", default-features = false, features = ["clock"] } diff --git a/driver/Cargo.toml b/driver/Cargo.toml index 703c1789..a8ebf594 100644 --- a/driver/Cargo.toml +++ b/driver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "databend-driver" -version = "0.2.18" +version = "0.2.19" edition = "2021" license = "Apache-2.0" description = "Databend Driver for Rust" @@ -21,12 +21,12 @@ flight-sql = ["dep:arrow", "dep:arrow-array", "dep:arrow-cast", "dep:arrow-fligh [dependencies] async-trait = "0.1.68" chrono = { version = "0.4.24", default-features = false, features = ["clock"] } -databend-client = { version = "0.1.14", path = "../core" } +databend-client = { version = "0.1.15", path = "../core" } dyn-clone = "1.0.11" http = "0.2.9" -serde = { version = "1.0.156", default-features = false, features = ["derive"] } -serde_json = { version = "1.0.94", default-features = false, features = ["std"] } -tokio = { version = "1.26.0", features = ["macros"] } +serde = { version = "1.0.160", default-features = false, features = ["derive"] } +serde_json = { version = "1.0.96", default-features = false, features = ["std"] } +tokio = { version = "1.27.0", features = ["macros"] } tokio-stream = "0.1.12" url = { version = "2.3.1", default-features = false } @@ -35,7 +35,7 @@ arrow-array = { version = "37.0.0", optional = true } arrow-cast = { version = "37.0.0", features = ["prettyprint"], optional = true } arrow-flight = { version = "37.0.0", features = ["flight-sql-experimental"], optional = true } arrow-schema = { version = "37.0.0", optional = true } -tonic = { version = "0.9.1", default-features = false, features = [ +tonic = { version = "0.9.2", default-features = false, features = [ "transport", "codegen", "tls",