2021-05-05 16:59:12 +00:00
|
|
|
[package]
|
|
|
|
name = "arrow_util"
|
|
|
|
description = "Apache Arrow utilities"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-05-05 16:59:12 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-11-08 12:56:15 +00:00
|
|
|
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }
|
2022-09-12 17:45:03 +00:00
|
|
|
# need dyn_cmp_dict feature for comparing dictionary arrays
|
2022-10-24 17:58:38 +00:00
|
|
|
arrow = { workspace = true, features = ["prettyprint", "dyn_cmp_dict"] }
|
2021-07-22 17:08:27 +00:00
|
|
|
# used by arrow anyway (needed for printing workaround)
|
2021-11-22 22:06:04 +00:00
|
|
|
chrono = { version = "0.4", default-features = false }
|
2022-08-29 07:38:37 +00:00
|
|
|
comfy-table = { version = "6.1", default-features = false }
|
2022-10-24 17:47:45 +00:00
|
|
|
datafusion = { workspace = true }
|
2022-11-11 17:12:30 +00:00
|
|
|
hashbrown = { workspace = true }
|
2021-11-18 22:26:33 +00:00
|
|
|
num-traits = "0.2"
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2021-05-11 16:43:38 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-10-24 18:03:55 +00:00
|
|
|
arrow-flight = { workspace = true }
|
2021-05-11 16:43:38 +00:00
|
|
|
rand = "0.8.3"
|