From 13fdfa472b8fd1599064b060be04904b7966278b Mon Sep 17 00:00:00 2001 From: Martin Date: Sun, 16 Jul 2023 10:13:20 -0400 Subject: [PATCH] use new num version instead of explicit num-complex dependency (#4532) --- arrow-array/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arrow-array/Cargo.toml b/arrow-array/Cargo.toml index 1990abfd2e35..4236da6d656b 100644 --- a/arrow-array/Cargo.toml +++ b/arrow-array/Cargo.toml @@ -46,8 +46,7 @@ arrow-schema = { workspace = true } arrow-data = { workspace = true } chrono = { version = "0.4.24", default-features = false, features = ["clock"] } chrono-tz = { version = "0.8", optional = true } -num = { version = "0.4", default-features = false, features = ["std"] } -num-complex = "0.4.2" +num = { version = "0.4.1", default-features = false, features = ["std"] } half = { version = "2.1", default-features = false, features = ["num-traits"] } hashbrown = { version = "0.14", default-features = false } packed_simd = { version = "0.3", default-features = false, optional = true, package = "packed_simd_2" }