From 1fbd06c3dbacd2fbc26807d0cadf94c38b57bc7d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 6 Dec 2025 06:25:17 +0000 Subject: [PATCH] chore(deps): bump arrow-array from 56.2.0 to 57.1.0 Bumps [arrow-array](https://github.com/apache/arrow-rs) from 56.2.0 to 57.1.0. - [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/56.2.0...57.1.0) --- updated-dependencies: - dependency-name: arrow-array dependency-version: 57.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 34 +++++++++++++++++++++------------ crates/synapse-infra/Cargo.toml | 2 +- 2 files changed, 23 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 98120777..449c94e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -247,41 +247,45 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "arrow-array" -version = "56.2.0" +version = "57.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8548ca7c070d8db9ce7aa43f37393e4bfcf3f2d3681df278490772fd1673d08d" +checksum = "a23eaff85a44e9fa914660fb0d0bb00b79c4a3d888b5334adb3ea4330c84f002" dependencies = [ "ahash 0.8.12", "arrow-buffer", "arrow-data", - "arrow-schema", + "arrow-schema 57.1.0", "chrono", "half", "hashbrown 0.16.1", - "num", + "num-complex", + "num-integer", + "num-traits", ] [[package]] name = "arrow-buffer" -version = "56.2.0" +version = "57.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e003216336f70446457e280807a73899dd822feaf02087d31febca1363e2fccc" +checksum = "a2819d893750cb3380ab31ebdc8c68874dd4429f90fd09180f3c93538bd21626" dependencies = [ "bytes", "half", - "num", + "num-bigint", + "num-traits", ] [[package]] name = "arrow-data" -version = "56.2.0" +version = "57.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5c64fff1d142f833d78897a772f2e5b55b36cb3e6320376f0961ab0db7bd6d0" +checksum = "05738f3d42cb922b9096f7786f606fcb8669260c2640df8490533bb2fa38c9d3" dependencies = [ "arrow-buffer", - "arrow-schema", + "arrow-schema 57.1.0", "half", - "num", + "num-integer", + "num-traits", ] [[package]] @@ -290,6 +294,12 @@ version = "56.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3aa9e59c611ebc291c28582077ef25c97f1975383f1479b12f3b9ffee2ffabe" +[[package]] +name = "arrow-schema" +version = "57.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d27609cd7dd45f006abae27995c2729ef6f4b9361cde1ddd019dc31a5aa017e0" + [[package]] name = "as-slice" version = "0.1.5" @@ -5752,7 +5762,7 @@ version = "0.1.0" dependencies = [ "anyhow", "arrow-array", - "arrow-schema", + "arrow-schema 56.2.0", "async-trait", "candle-core", "candle-nn", diff --git a/crates/synapse-infra/Cargo.toml b/crates/synapse-infra/Cargo.toml index a608f7b7..ac80fb84 100644 --- a/crates/synapse-infra/Cargo.toml +++ b/crates/synapse-infra/Cargo.toml @@ -29,7 +29,7 @@ surrealdb = { workspace = true } sled = { workspace = true } # Arrow (needed for LanceDB operations) -arrow-array = "56" +arrow-array = "57" arrow-schema = "56" # Futures (for stream operations)