21 lines
588 B
TOML
21 lines
588 B
TOML
[package]
|
|
name = "arrow_util"
|
|
version = "0.1.0"
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
|
edition = "2021"
|
|
description = "Apache Arrow utilities"
|
|
|
|
[dependencies]
|
|
ahash = { version = "0.7.5", default-features = false }
|
|
arrow = { version = "13", features = ["prettyprint"] }
|
|
# used by arrow anyway (needed for printing workaround)
|
|
chrono = { version = "0.4", default-features = false }
|
|
comfy-table = { version = "5.0", default-features = false }
|
|
hashbrown = "0.12"
|
|
num-traits = "0.2"
|
|
snafu = "0.7"
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8.3"
|