From 45f8c8c3cf990ff3da45604988bb76b0239f6560 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 17:43:21 +0000 Subject: [PATCH] Update parquet requirement from 57.1 to 58.2 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/main/CHANGELOG.md) - [Commits](https://github.com/apache/arrow-rs/compare/57.1.0...58.2.0) --- updated-dependencies: - dependency-name: parquet dependency-version: 58.2.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- metropolis-core/Cargo.toml | 2 +- tch/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/metropolis-core/Cargo.toml b/metropolis-core/Cargo.toml index 9fc0dc1..916f8f2 100644 --- a/metropolis-core/Cargo.toml +++ b/metropolis-core/Cargo.toml @@ -40,7 +40,7 @@ log = "0.4" num-traits = "0.2" object-pool = "0.6" once_cell = "1.17" -parquet = { version = "57.1", features = ["arrow", "json"] } +parquet = { version = "58.2", features = ["arrow", "json"] } petgraph = { version = "0.8", default-features = false } polars = { version = "0.53.0", default-features = false, features = [ "csv", diff --git a/tch/Cargo.toml b/tch/Cargo.toml index a27999e..19c327f 100644 --- a/tch/Cargo.toml +++ b/tch/Cargo.toml @@ -28,7 +28,7 @@ hashbrown = { version = "0.17", features = ["rayon", "serde"] } indicatif = "0.18" log = "0.4" num-traits = "0.2" -parquet = { version = "57.1", features = ["arrow", "json"] } +parquet = { version = "58.2", features = ["arrow", "json"] } petgraph = { version = "0.8", default-features = false, features = ["serde-1"] } priority-queue = "2.0" object-pool = "0.6"