2020-09-18 11:58:19 +00:00
|
|
|
[package]
|
2022-05-18 09:38:35 +00:00
|
|
|
name = "iox_query"
|
2020-09-18 11:58:19 +00:00
|
|
|
version = "0.1.0"
|
2020-11-24 19:19:29 +00:00
|
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2020-11-24 19:19:29 +00:00
|
|
|
description = "IOx Query Interface and Executor"
|
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
# This crate is designed to be independent of the rest of the IOx
|
2021-01-12 22:49:03 +00:00
|
|
|
# server and specific storage systems such as Mutable Buffer and Read Buffer.
|
|
|
|
#
|
|
|
|
# The rationale for this is to:
|
|
|
|
#
|
|
|
|
# 1. Keep change/compile/link time down during development when working on just this crate
|
|
|
|
# 2. Allow for query logic testing without bringing in all the storage systems.
|
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dependencies] # In alphabetical order
|
2022-10-18 20:58:47 +00:00
|
|
|
arrow = { version = "25.0.0", features = ["prettyprint"] }
|
2021-05-05 16:59:12 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
2020-10-26 15:46:02 +00:00
|
|
|
async-trait = "0.1"
|
2021-11-22 22:06:04 +00:00
|
|
|
chrono = { version = "0.4", default-features = false }
|
2022-05-05 19:29:24 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2021-05-05 16:59:12 +00:00
|
|
|
datafusion = { path = "../datafusion" }
|
|
|
|
datafusion_util = { path = "../datafusion_util" }
|
2022-02-23 09:10:43 +00:00
|
|
|
executor = { path = "../executor"}
|
2021-04-13 12:14:54 +00:00
|
|
|
futures = "0.3"
|
2022-01-27 15:34:10 +00:00
|
|
|
hashbrown = "0.12"
|
2022-09-21 08:15:59 +00:00
|
|
|
itertools = "0.10.5"
|
2021-09-09 19:27:17 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-02-01 11:50:42 +00:00
|
|
|
parking_lot = "0.12"
|
2022-04-26 17:30:27 +00:00
|
|
|
query_functions = { path = "../query_functions"}
|
2021-10-11 09:45:08 +00:00
|
|
|
schema = { path = "../schema" }
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2022-09-06 14:13:28 +00:00
|
|
|
tokio = { version = "1.21", features = ["macros", "parking_lot"] }
|
2021-12-02 21:13:11 +00:00
|
|
|
tokio-stream = "0.1"
|
2021-08-24 17:35:59 +00:00
|
|
|
trace = { path = "../trace" }
|
2021-09-14 15:12:56 +00:00
|
|
|
predicate = { path = "../predicate" }
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2021-09-09 19:27:17 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dev-dependencies] # In alphabetical order
|
2020-11-05 18:44:36 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|