2023-03-17 18:48:55 +00:00
|
|
|
[package]
|
|
|
|
name = "iox_query_influxrpc"
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
arrow = { workspace = true, features = ["prettyprint"] }
|
|
|
|
data_types = { path = "../data_types" }
|
|
|
|
datafusion = { workspace = true }
|
|
|
|
datafusion_util = { path = "../datafusion_util" }
|
|
|
|
futures = "0.3"
|
|
|
|
hashbrown = { workspace = true }
|
|
|
|
iox_query = { path = "../iox_query" }
|
|
|
|
observability_deps = { path = "../observability_deps" }
|
|
|
|
query_functions = { path = "../query_functions"}
|
|
|
|
schema = { path = "../schema" }
|
|
|
|
predicate = { path = "../predicate" }
|
|
|
|
snafu = "0.7"
|
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
|
|
|
|
|
|
|
[dev-dependencies] # In alphabetical order
|
|
|
|
test_helpers = { path = "../test_helpers" }
|
|
|
|
insta = { version = "1", features = ["yaml"] }
|
2023-03-30 09:36:04 +00:00
|
|
|
tokio = { version = "1.27", features = ["macros", "parking_lot"] }
|