From 215c0886d396328b140081030b3a7761b99ecc3b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 Apr 2022 03:31:21 +0000 Subject: [PATCH] Update arrow-flight requirement from 11.1 to 12.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/11.1.0...12.0.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 8e27683414d7..3aa969d67bfa 100644 --- a/ballista/rust/core/Cargo.toml +++ b/ballista/rust/core/Cargo.toml @@ -34,7 +34,7 @@ simd = ["datafusion/simd"] [dependencies] ahash = { version = "0.7", default-features = false } -arrow-flight = { version = "11.1" } +arrow-flight = { version = "12.0" } async-trait = "0.1.41" chrono = { version = "0.4", default-features = false } clap = { version = "3", features = ["derive", "cargo"] } diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml index 9ee793b7bfac..537f9244ab2d 100644 --- a/ballista/rust/executor/Cargo.toml +++ b/ballista/rust/executor/Cargo.toml @@ -34,7 +34,7 @@ snmalloc = ["snmalloc-rs"] [dependencies] anyhow = "1" arrow = { version = "11.1" } -arrow-flight = { version = "11.1" } +arrow-flight = { version = "12.0" } async-trait = "0.1.41" ballista-core = { path = "../core", version = "0.6.0" } chrono = { version = "0.4", default-features = false } diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml index 8a9c2feb4e26..4d174bc6cef3 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 = "11.1" } +arrow-flight = { version = "12.0" } async-trait = "0.1.41" datafusion = { path = "../datafusion/core" } futures = "0.3"