From fc812ad7010c5ab9753a0d93a31dbeed0bcbf3b7 Mon Sep 17 00:00:00 2001 From: dantengsky Date: Mon, 17 Nov 2025 18:17:15 +0800 Subject: [PATCH] refactor: bump arrow to version 56 --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f6894f0..51aaab5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ rust-version = "1.73" all-features = true [dependencies] -arrow = { version = ">=54.0.0", features = ["prettyprint", "chrono-tz", "ipc_compression"] } +arrow = { version = "56", features = ["prettyprint", "chrono-tz", "ipc_compression"] } bytemuck = { version = "1.18.0", features = ["must_cast"] } bytes = "1.4" chrono = { version = ">=0.4.40", default-features = false, features = ["std"] } @@ -68,10 +68,10 @@ clap = { version = "4.5.4", features = ["derive"], optional = true } opendal = { version = "0.50", optional = true, default-features = false } [dev-dependencies] -arrow-ipc = { version = "54", features = ["lz4"] } -arrow-json = "54" +arrow-ipc = { version = "56", features = ["lz4"] } +arrow-json = "56" criterion = { version = "0.5", default-features = false, features = ["async_tokio"] } -opendal = { version = "0.50", default-features = false, features = ["services-memory"] } +opendal = { version = "0.54.1", default-features = false, features = ["services-memory"] } pretty_assertions = "1.3.0" proptest = "1.0.0" serde_json = { version = "1.0", default-features = false, features = ["std"] }