28 lines
895 B
TOML
28 lines
895 B
TOML
[package]
|
|
name = "arrow_util"
|
|
description = "Apache Arrow utilities"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }
|
|
# need dyn_cmp_dict feature for comparing dictionary arrays
|
|
arrow = { workspace = true, features = ["prettyprint", "dyn_cmp_dict"] }
|
|
# used by arrow anyway (needed for printing workaround)
|
|
chrono = { version = "0.4", default-features = false }
|
|
comfy-table = { version = "6.1", default-features = false }
|
|
hashbrown = { workspace = true }
|
|
num-traits = "0.2"
|
|
once_cell = { version = "1.17", features = ["parking_lot"] }
|
|
regex = "1.7.3"
|
|
snafu = "0.7"
|
|
uuid = "1"
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
|
|
|
[dev-dependencies]
|
|
arrow-flight = { workspace = true }
|
|
datafusion = { workspace = true }
|
|
rand = "0.8.3"
|