2020-09-18 11:58:19 +00:00
|
|
|
[package]
|
2020-11-24 19:19:29 +00:00
|
|
|
name = "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>"]
|
2020-09-18 11:58:19 +00:00
|
|
|
edition = "2018"
|
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
|
2021-10-04 08:55:38 +00:00
|
|
|
arrow = { version = "5.5", 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-02-04 23:56:02 +00:00
|
|
|
chrono = "0.4"
|
2021-07-13 13:15:41 +00:00
|
|
|
croaring = "0.5"
|
2021-02-04 23:56:02 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2021-05-05 16:59:12 +00:00
|
|
|
datafusion = { path = "../datafusion" }
|
|
|
|
datafusion_util = { path = "../datafusion_util" }
|
2021-04-13 12:14:54 +00:00
|
|
|
futures = "0.3"
|
2021-06-17 14:17:52 +00:00
|
|
|
hashbrown = "0.11"
|
2021-03-19 16:27:57 +00:00
|
|
|
internal_types = { path = "../internal_types" }
|
2021-09-09 19:27:17 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2021-09-06 01:18:24 +00:00
|
|
|
parking_lot = "0.11.2"
|
2021-05-06 09:13:59 +00:00
|
|
|
regex = "1"
|
2021-09-09 20:34:20 +00:00
|
|
|
snafu = "0.6.9"
|
2021-09-06 09:11:38 +00:00
|
|
|
tokio = { version = "1.11", features = ["macros"] }
|
2021-01-29 21:11:55 +00:00
|
|
|
tokio-stream = "0.1.2"
|
2021-08-24 17:35:59 +00:00
|
|
|
trace = { path = "../trace" }
|
2021-09-14 15:12:56 +00:00
|
|
|
predicate = { path = "../predicate" }
|
2021-09-09 19:27:17 +00:00
|
|
|
|
2020-10-13 20:53:00 +00:00
|
|
|
|
2021-04-14 10:48:09 +00:00
|
|
|
# use libc on unix like platforms to set worker priority in DedicatedExecutor
|
|
|
|
[target."cfg(unix)".dependencies.libc]
|
|
|
|
version = "0.2"
|
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dev-dependencies] # In alphabetical order
|
2021-06-22 17:53:54 +00:00
|
|
|
itertools = "0.10.1"
|
2020-11-05 18:44:36 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|