From ccd3238993ce8ee08768fbc30b7341fde37704aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 22:16:14 +0000 Subject: [PATCH] Update arrow requirement from 44 to 46 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/44.0.0...46.0.0) --- updated-dependencies: - dependency-name: arrow dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- libduckdb-sys/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 18287978..059435c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ memchr = "2.3" uuid = { version = "1.0", optional = true } smallvec = "1.6.1" cast = { version = "0.3", features = ["std"] } -arrow = { version = "44", default-features = false, features = ["prettyprint", "ffi"] } +arrow = { version = "46", default-features = false, features = ["prettyprint", "ffi"] } rust_decimal = "1.14" strum = { version = "0.25", features = ["derive"] } r2d2 = { version = "0.8.9", optional = true } diff --git a/libduckdb-sys/Cargo.toml b/libduckdb-sys/Cargo.toml index 3cace2f9..3abc6bb3 100644 --- a/libduckdb-sys/Cargo.toml +++ b/libduckdb-sys/Cargo.toml @@ -39,4 +39,4 @@ serde_json = { version = "1.0" } tar = "0.4.38" [dev-dependencies] -arrow = { version = "44", default-features = false, features = ["ffi"] } +arrow = { version = "46", default-features = false, features = ["ffi"] }