From be04f1df89e9d753a0d863315de6a07fc90e7923 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 11:40:49 +0000 Subject: [PATCH 1/2] Update parquet requirement from 52.0.0 to 53.0.0 Updates the requirements on [parquet](https://github.com/apache/arrow-rs) to permit the latest version. - [Changelog](https://github.com/apache/arrow-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/apache/arrow-rs/compare/52.0.0...53.0.0) --- updated-dependencies: - dependency-name: parquet dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c61c29a0..53f6e31f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,7 +61,7 @@ pyo3-log = { version = "0.10", optional = true } numpy = { version = "0.21", optional = true } indicatif = { version = "0.17", features = ["rayon"] } rstats = "2.0.1" -parquet = { version = "52.0.0", default-features = false, features = [ +parquet = { version = "53.0.0", default-features = false, features = [ "arrow", "zstd", ] } From b44c104b98be18e355d27dc61abb3f4a91303e3a Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 8 Sep 2024 21:49:47 -0600 Subject: [PATCH 2/2] Update Cargo.toml for parquet 53 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 53f6e31f..4c4708a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -65,7 +65,7 @@ parquet = { version = "53.0.0", default-features = false, features = [ "arrow", "zstd", ] } -arrow = "52.0.0" +arrow = "53.0.0" shadow-rs = { version = "0.33.0", default-features = false } serde_yaml = "0.9.21" whoami = "1.3.0"