From adaeb74bbc0d6724007f90463caa658a0aa9f516 Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Sun, 13 Nov 2022 12:15:50 +0800 Subject: [PATCH 1/3] deps: Bump arrow-format to 0.8 Signed-off-by: Xuanwo --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a076210d4b8..5509ad77213 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ hash_hasher = "^2.0.3" simdutf8 = "0.1.3" # faster hashing ahash = { version = "0.7" } -# A Rust port of SwissTable +# A Rust port of SwissTable hashbrown = { version = "0.12", default-features = false, optional = true } # for timezone support @@ -58,7 +58,7 @@ indexmap = { version = "^1.6", optional = true } # used to print columns in a nice columnar format comfy-table = { version = "5.0", optional = true, default-features = false } -arrow-format = { version = "0.7", optional = true, features = ["ipc"] } +arrow-format = { version = "0.8", optional = true, features = ["ipc"] } hex = { version = "^0.4", optional = true } From 74f7fbc22a53d80d0b7726f79efce244ffb0a7df Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Sun, 13 Nov 2022 12:45:11 +0800 Subject: [PATCH 2/3] Fix integration-testing Signed-off-by: Xuanwo --- integration-testing/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-testing/Cargo.toml b/integration-testing/Cargo.toml index 87b41ffc99b..60d5c351f68 100644 --- a/integration-testing/Cargo.toml +++ b/integration-testing/Cargo.toml @@ -29,7 +29,7 @@ logging = ["tracing-subscriber"] [dependencies] arrow2 = { path = "../", features = ["io_ipc", "io_ipc_compression", "io_flight", "io_json_integration"] } -arrow-format = { version = "0.7", features = ["flight-data", "flight-service"] } +arrow-format = { version = "0.8", features = ["flight-data", "flight-service"] } async-trait = "0.1.41" clap = { version = "^3", features = ["derive"] } futures = "0.3" From d73e940a6b4997a8db3ba88e921658323cb3eb1a Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Sun, 13 Nov 2022 12:48:01 +0800 Subject: [PATCH 3/3] Update tonic and prost Signed-off-by: Xuanwo --- integration-testing/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-testing/Cargo.toml b/integration-testing/Cargo.toml index 60d5c351f68..f62e49ea100 100644 --- a/integration-testing/Cargo.toml +++ b/integration-testing/Cargo.toml @@ -34,11 +34,11 @@ async-trait = "0.1.41" clap = { version = "^3", features = ["derive"] } futures = "0.3" hex = "0.4" -prost = "0.10" +prost = "0.11" serde = { version = "1.0", features = ["rc"] } serde_derive = "1.0" serde_json = { version = "1.0", features = ["preserve_order"] } tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread"] } -tonic = "0.7.0" +tonic = "0.8.0" tracing-subscriber = { version = "0.3.1", optional = true } async-stream = { version = "0.3.2" }