42 lines
1.4 KiB
TOML
42 lines
1.4 KiB
TOML
[package]
|
|
name = "query_tests"
|
|
description = "Tests of the query engine against different database configurations"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
arrow = { workspace = true, features = ["prettyprint"] }
|
|
arrow_util = { path = "../arrow_util" }
|
|
async-trait = "0.1"
|
|
backoff = { path = "../backoff" }
|
|
data_types = { path = "../data_types" }
|
|
datafusion = { workspace = true }
|
|
datafusion_util = { path = "../datafusion_util" }
|
|
dml = { path = "../dml" }
|
|
futures = "0.3"
|
|
generated_types = { path = "../generated_types" }
|
|
influxdb_iox_client = { path = "../influxdb_iox_client" }
|
|
ingester = { path = "../ingester" }
|
|
iox_catalog = { path = "../iox_catalog" }
|
|
iox_query = { path = "../iox_query" }
|
|
iox_tests = { path = "../iox_tests" }
|
|
itertools = "0.10"
|
|
mutable_batch = { path = "../mutable_batch" }
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
|
once_cell = { version = "1.15.0", features = ["parking_lot"] }
|
|
parquet_file = { version = "0.1.0", path = "../parquet_file" }
|
|
predicate = { path = "../predicate" }
|
|
querier = { path = "../querier" }
|
|
schema = { path = "../schema" }
|
|
sharder = { path = "../sharder" }
|
|
tokio = { version = "1.21", features = ["macros", "parking_lot", "rt-multi-thread", "time"] }
|
|
trace = { path = "../trace" }
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
[dev-dependencies]
|
|
snafu = "0.7"
|
|
tempfile = "3.1.0"
|
|
test_helpers = { path = "../test_helpers" }
|