From 8647d4aacb696fbd090da1613a61e134629d8b80 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Nov 2022 10:01:02 +0000 Subject: [PATCH] Update arrow requirement from 25.0 to 27.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/25.0.0...27.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 f5cb43164..18c0db89c 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 = "27.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..e733b4e76 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 = "27.0", features = ["simd"] } async-trait = "0.1" chrono = "0.4" crossbeam = "0.8"