From ec50cc8bb6880d2770eeef99d451fc9dc29d54e8 Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Sun, 13 Nov 2022 21:04:47 +0800 Subject: [PATCH] Bumped arrow-format to 0.8 (#1298) --- Cargo.toml | 4 ++-- integration-testing/Cargo.toml | 6 +++--- 2 files changed, 5 insertions(+), 5 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 } diff --git a/integration-testing/Cargo.toml b/integration-testing/Cargo.toml index 87b41ffc99b..f62e49ea100 100644 --- a/integration-testing/Cargo.toml +++ b/integration-testing/Cargo.toml @@ -29,16 +29,16 @@ 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" 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" }