From 5b3a2e3251f697b9ba45b224278c4ab80f8d55ef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Jan 2023 21:07:28 +0000 Subject: [PATCH] Update arrow requirement from 26.0 to 30.0 Updates the requirements on [arrow](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/master/CHANGELOG.md) - [Commits](https://github.com/apache/arrow-rs/compare/26.0.0...30.0.0) --- updated-dependencies: - dependency-name: arrow dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- datatypes/Cargo.toml | 2 +- operators/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/datatypes/Cargo.toml b/datatypes/Cargo.toml index 5e4513b43..214408a16 100644 --- a/datatypes/Cargo.toml +++ b/datatypes/Cargo.toml @@ -14,7 +14,7 @@ postgres = ["postgres-types", "postgres-protocol"] pro = ["postgres"] [dependencies] -arrow = { version = "26.0", features = ["simd"] } +arrow = { version = "30.0", features = ["simd"] } async-trait = "0.1" chrono = "0.4" float-cmp = "0.9" diff --git a/operators/Cargo.toml b/operators/Cargo.toml index 8bdce6d89..bb36d19ea 100644 --- a/operators/Cargo.toml +++ b/operators/Cargo.toml @@ -13,7 +13,7 @@ edition = "2021" pro = ["geoengine-datatypes/pro"] [dependencies] -arrow = { version = "26.0", features = ["simd"] } +arrow = { version = "30.0", features = ["simd"] } async-trait = "0.1" chrono = "0.4" crossbeam = "0.8"