From d356157b9f497ea77d48e6c0c4c1a039c83a74eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 11:35:34 +0000 Subject: [PATCH 1/2] Update parquet requirement from 48.0.0 to 49.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/commits) --- 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 cf0bd0c7..9e12de07 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ numpy = { version = "0.19", optional = true } indicatif = { version = "0.17", features = ["rayon"] } rstats = "2.0.1" thiserror = "1.0" -parquet = { version = "48.0.0", default-features = false, features = [ +parquet = { version = "49.0.0", default-features = false, features = [ "arrow", "zstd", ] } From 1744616cc7bb4aa4e371fff0ef502cc821b24583 Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 16 Nov 2023 11:15:26 -0700 Subject: [PATCH 2/2] Update arrow version in Cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9e12de07..9205ca8e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -66,7 +66,7 @@ parquet = { version = "49.0.0", default-features = false, features = [ "arrow", "zstd", ] } -arrow = "48.0.0" +arrow = "49.0.0" shadow-rs = { version = "0.24.0", default-features = false } serde_yaml = "0.9.21" whoami = "1.3.0"