From 27b2e6a17db22df7506d9fee7aeb12d1b8bed702 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Oct 2022 08:27:03 +0000 Subject: [PATCH] Update parquet requirement from 24.0.0 to 25.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/24.0.0...25.0.0) --- updated-dependencies: - dependency-name: parquet dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- benchmarks/Cargo.toml | 2 +- datafusion/common/Cargo.toml | 2 +- datafusion/core/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index c0734450874b..fad89a6b87eb 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -39,7 +39,7 @@ futures = "0.3" mimalloc = { version = "0.1", optional = true, default-features = false } num_cpus = "1.13.0" object_store = "0.5.0" -parquet = "24.0.0" +parquet = "25.0.0" rand = "0.8.4" serde = { version = "1.0.136", features = ["derive"] } serde_json = "1.0.78" diff --git a/datafusion/common/Cargo.toml b/datafusion/common/Cargo.toml index 382f66e5dd98..b30f68ae3bba 100644 --- a/datafusion/common/Cargo.toml +++ b/datafusion/common/Cargo.toml @@ -44,6 +44,6 @@ arrow = { version = "24.0.0", default-features = false } cranelift-module = { version = "0.88.0", optional = true } object_store = { version = "0.5.0", default-features = false, optional = true } ordered-float = "3.0" -parquet = { version = "24.0.0", default-features = false, optional = true } +parquet = { version = "25.0.0", default-features = false, optional = true } pyo3 = { version = "0.17.1", optional = true } sqlparser = "0.25" diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml index 44a5cbe1afb4..c8d20c0064a8 100644 --- a/datafusion/core/Cargo.toml +++ b/datafusion/core/Cargo.toml @@ -81,7 +81,7 @@ num_cpus = "1.13.0" object_store = "0.5.0" ordered-float = "3.0" parking_lot = "0.12" -parquet = { version = "24.0.0", features = ["arrow", "async"] } +parquet = { version = "25.0.0", features = ["arrow", "async"] } paste = "^1.0" percent-encoding = "2.2.0" pin-project-lite = "^0.2.7"