influxdb/read_buffer/Cargo.toml

44 lines
961 B
TOML

[package]
name = "read_buffer"
version = "0.1.0"
authors = ["Edd Robinson <me@edd.io>"]
edition = "2018"
# Note this crate is designed to be standalone, and should not depend
# on the IOx Query Engine. The rationale is:
#
# 1. Keep the API clean (and concerns separated) and allow for potential future reuse outside of IOx
# 2. Keep change/compile/link time down during development when working on just this crate
[dependencies] # In alphabetical order
arrow_deps = { path = "../arrow_deps" }
croaring = "0.4.5"
data_types = { path = "../data_types" }
either = "1.6.1"
hashbrown = "0.9.1"
itertools = "0.9.0"
packers = { path = "../packers" }
permutation = "0.2.5"
snafu = "0.6"
[dev-dependencies] # In alphabetical order
criterion = "0.3.3"
rand = "0.7.3"
rand_distr = "0.3.0"
[[bench]]
name = "database"
harness = false
[[bench]]
name = "fixed"
harness = false
[[bench]]
name = "dictionary"
harness = false
[[bench]]
name = "row_group"
harness = false