From cd1229ac8db84380d4d9028e24173c6f5f89c6a2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Jan 2023 21:09:52 +0000 Subject: [PATCH] Update arrow requirement from 29.0 to 32.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/commits) --- 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..e28efecc0 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 = "32.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..2df6ae539 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 = "32.0", features = ["simd"] } async-trait = "0.1" chrono = "0.4" crossbeam = "0.8"