From a7d807ec601245a5e874411d3af25ab138701538 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Mar 2022 23:34:53 +0000 Subject: [PATCH] Update arrow-flight requirement from 9.1 to 10.0 Updates the requirements on [arrow-flight](https://github.com/apache/arrow-rs) to permit the latest version. - [Release notes](https://github.com/apache/arrow-rs/releases) - [Changelog](https://github.com/apache/arrow-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/apache/arrow-rs/compare/9.1.0...9.1.0) --- updated-dependencies: - dependency-name: arrow-flight dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ballista/rust/core/Cargo.toml | 2 +- ballista/rust/executor/Cargo.toml | 2 +- datafusion-examples/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml index 6181d731a071..492281e29f3a 100644 --- a/ballista/rust/core/Cargo.toml +++ b/ballista/rust/core/Cargo.toml @@ -45,7 +45,7 @@ chrono = { version = "0.4", default-features = false } clap = { version = "3", features = ["derive", "cargo"] } parse_arg = "0.1.3" -arrow-flight = { version = "9.1" } +arrow-flight = { version = "10.0" } datafusion = { path = "../../../datafusion", version = "7.0.0" } parking_lot = "0.12" diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml index 27ba56eded96..8813e0fa4150 100644 --- a/ballista/rust/executor/Cargo.toml +++ b/ballista/rust/executor/Cargo.toml @@ -30,7 +30,7 @@ snmalloc = ["snmalloc-rs"] [dependencies] arrow = { version = "9.1" } -arrow-flight = { version = "9.1" } +arrow-flight = { version = "10.0" } anyhow = "1" async-trait = "0.1.36" ballista-core = { path = "../core", version = "0.6.0" } diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml index e35da28a2045..1a7d33a7622f 100644 --- a/datafusion-examples/Cargo.toml +++ b/datafusion-examples/Cargo.toml @@ -34,7 +34,7 @@ path = "examples/avro_sql.rs" required-features = ["datafusion/avro"] [dev-dependencies] -arrow-flight = { version = "9.1" } +arrow-flight = { version = "10.0" } datafusion = { path = "../datafusion" } prost = "0.9" tonic = "0.6"