From da79d4d97508ee4f33dafe08fb811fa0d182c259 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 21:22:07 +0000 Subject: [PATCH] build(deps): update arrow requirement from 52 to 53 Updates the requirements on [arrow](https://github.com/apache/arrow-rs) to permit the latest version. - [Changelog](https://github.com/apache/arrow-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/apache/arrow-rs/compare/52.0.0...53.0.0) --- updated-dependencies: - dependency-name: arrow dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- connector_arrow/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/connector_arrow/Cargo.toml b/connector_arrow/Cargo.toml index 722b92e..db65b60 100644 --- a/connector_arrow/Cargo.toml +++ b/connector_arrow/Cargo.toml @@ -21,7 +21,7 @@ chrono = "0.4" serde_json = "1" # make sure this is in-sync with duckdb -arrow = { version = "52", default-features = false } +arrow = { version = "53", default-features = false } # common optional hex = { version = "0.4", optional = true } @@ -75,7 +75,7 @@ optional = true [dev-dependencies] env_logger = "0.11" -arrow = { version = "52", features = ["prettyprint"], default-features = false } +arrow = { version = "53", features = ["prettyprint"], default-features = false } similar-asserts = { version = "1.5.0" } half = "2.3.1" rand = { version = "0.8.5", default-features = false }