influxdb/arrow_util/Cargo.toml

27 lines
924 B
TOML
Raw Normal View History

[package]
name = "arrow_util"
description = "Apache Arrow utilities"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
# Locking ahash to 0.8.0 because of a cargo hakari problem, see:
# <https://github.com/influxdata/influxdb_iox/pull/6032#issuecomment-1303987709>
ahash = { version = "=0.8.0", 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 }
datafusion = { workspace = true }
hashbrown = "0.12"
num-traits = "0.2"
2022-01-11 19:22:36 +00:00
snafu = "0.7"
workspace-hack = { path = "../workspace-hack"}
[dev-dependencies]
arrow-flight = { workspace = true }
rand = "0.8.3"