From 732ace085d806f875b361be8f1a937e9869affc3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Feb 2026 14:47:31 +0000 Subject: [PATCH] Update parquet requirement from 57.1 to 58.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/main/CHANGELOG.md) - [Commits](https://github.com/apache/arrow-rs/compare/57.1.0...58.0.0) --- updated-dependencies: - dependency-name: parquet dependency-version: 58.0.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 bd9c3f4..8410897 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.0", 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 4448191..674289e 100644 --- a/tch/Cargo.toml +++ b/tch/Cargo.toml @@ -28,7 +28,7 @@ hashbrown = { version = "0.16", features = ["rayon", "serde"] } indicatif = "0.18" log = "0.4" num-traits = "0.2" -parquet = { version = "57.1", features = ["arrow", "json"] } +parquet = { version = "58.0", features = ["arrow", "json"] } petgraph = { version = "0.8", default-features = false, features = ["serde-1"] } priority-queue = "2.0" object-pool = "0.6"