2021-05-05 16:59:12 +00:00
|
|
|
[package]
|
|
|
|
name = "arrow_util"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-05-05 16:59:12 +00:00
|
|
|
description = "Apache Arrow utilities"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-22 19:26:51 +00:00
|
|
|
ahash = { version = "0.7.5", default-features = false }
|
2022-08-09 17:30:44 +00:00
|
|
|
arrow = { version = "20.0.0", features = ["prettyprint"] }
|
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-05-31 07:10:37 +00:00
|
|
|
comfy-table = { version = "6.0", default-features = false }
|
2022-05-25 16:24:28 +00:00
|
|
|
datafusion = { path = "../datafusion" }
|
2022-01-27 15:34:10 +00:00
|
|
|
hashbrown = "0.12"
|
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-08-09 17:30:44 +00:00
|
|
|
arrow-flight = "20.0.0"
|
2021-05-11 16:43:38 +00:00
|
|
|
rand = "0.8.3"
|