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-01-27 13:33:27 +00:00
|
|
|
arrow = { version = "8.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 }
|
2021-11-08 10:55:57 +00:00
|
|
|
comfy-table = { version = "5.0", default-features = false }
|
2021-11-18 22:26:33 +00:00
|
|
|
hashbrown = "0.11"
|
|
|
|
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]
|
|
|
|
rand = "0.8.3"
|