This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 13fdfa472b use new num version instead of explicit num-complex
dependency (#4532)
13fdfa472b is described below
commit 13fdfa472b8fd1599064b060be04904b7966278b
Author: Martin <[email protected]>
AuthorDate: Sun Jul 16 10:13:20 2023 -0400
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 1990abfd2e..4236da6d65 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" }