From f8fd88fd23aaacd95845d90abdd1ed041110f956 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Jan 2022 23:32:32 +0000 Subject: [PATCH] Update parquet requirement from 7.0.0 to 8.0.0 Updates the requirements on [parquet](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/7.0.0...8.0.0) --- updated-dependencies: - dependency-name: parquet dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- datafusion/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml index 317ac2e1303d..5d5545bd593e 100644 --- a/datafusion/Cargo.toml +++ b/datafusion/Cargo.toml @@ -53,7 +53,7 @@ avro = ["avro-rs", "num-traits"] ahash = { version = "0.7", default-features = false } hashbrown = { version = "0.12", features = ["raw"] } arrow = { version = "7.0.0", features = ["prettyprint"] } -parquet = { version = "7.0.0", features = ["arrow"] } +parquet = { version = "8.0.0", features = ["arrow"] } sqlparser = "0.13" paste = "^1.0" num_cpus = "1.13.0"