From abc8628e696e7dc24339ec1da82b03b5bc01d245 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Jan 2023 21:05:06 +0000 Subject: [PATCH] Update arrow requirement from 29.0 to 31.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/29.0.0...31.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 6dea40ce7..7f1ecbd93 100644 --- a/datatypes/Cargo.toml +++ b/datatypes/Cargo.toml @@ -14,7 +14,7 @@ postgres = ["postgres-types", "postgres-protocol"] pro = ["postgres"] [dependencies] -arrow = { version = "29.0", features = ["simd"] } +arrow = { version = "31.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 7db0a74a6..6113c23db 100644 --- a/operators/Cargo.toml +++ b/operators/Cargo.toml @@ -14,7 +14,7 @@ pro = ["geoengine-datatypes/pro"] xgboost = ["dep:xgboost-rs", "pro"] [dependencies] -arrow = { version = "29.0", features = ["simd"] } +arrow = { version = "31.0", features = ["simd"] } async-trait = "0.1" chrono = "0.4" crossbeam = "0.8"