From 1e7d74f029d57c3f8e1ef20a25912ac26013fda3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jun 2026 11:06:56 +0000 Subject: [PATCH 1/2] Update parquet requirement from 58.0.0 to 59.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/main/CHANGELOG.md) - [Commits](https://github.com/apache/arrow-rs/compare/58.0.0...59.0.0) --- updated-dependencies: - dependency-name: parquet dependency-version: 59.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- nyx-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nyx-core/Cargo.toml b/nyx-core/Cargo.toml index c1d0d0d0..6cbe375b 100644 --- a/nyx-core/Cargo.toml +++ b/nyx-core/Cargo.toml @@ -39,7 +39,7 @@ approx = "0.5" rand_pcg = "0.10" indicatif = { version = "0.18", features = ["rayon"], default-features = false } rstats = "2.0.1" -parquet = { version = "58.0.0", default-features = false, features = [ +parquet = { version = "59.0.0", default-features = false, features = [ "arrow", "zstd", ] } From 1474d526547ceb521b24662bf64af21ec07c9b91 Mon Sep 17 00:00:00 2001 From: Chris Date: Mon, 29 Jun 2026 22:55:53 -0600 Subject: [PATCH 2/2] Update arrow dependency version to 59.0.0 --- nyx-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nyx-core/Cargo.toml b/nyx-core/Cargo.toml index 6cbe375b..772eac46 100644 --- a/nyx-core/Cargo.toml +++ b/nyx-core/Cargo.toml @@ -43,7 +43,7 @@ parquet = { version = "59.0.0", default-features = false, features = [ "arrow", "zstd", ] } -arrow = "58.0.0" +arrow = "59.0.0" serde_yml = "0.0.12" either = { version = "1.8.1", features = ["serde"] } num = "0.4.0"