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
|
|
|
|
arrow_deps = { path = "../arrow_deps" }
|
2020-10-26 15:46:02 +00:00
|
|
|
async-trait = "0.1"
|
2021-02-04 23:56:02 +00:00
|
|
|
chrono = "0.4"
|
|
|
|
croaring = "0.4.5"
|
|
|
|
data_types = { path = "../data_types" }
|
2021-02-11 18:26:38 +00:00
|
|
|
futures = "0.3.7"
|
2021-02-04 23:56:02 +00:00
|
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
|
2021-02-19 16:03:33 +00:00
|
|
|
parking_lot = "0.11.1"
|
2021-02-04 23:56:02 +00:00
|
|
|
snafu = "0.6.2"
|
2021-03-15 15:42:19 +00:00
|
|
|
sqlparser = "0.8.0"
|
2021-02-04 23:56:02 +00:00
|
|
|
tokio = { version = "1.0", features = ["macros"] }
|
2021-01-29 21:11:55 +00:00
|
|
|
tokio-stream = "0.1.2"
|
2020-09-28 15:41:10 +00:00
|
|
|
tracing = "0.1"
|
2020-10-13 20:53:00 +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" }
|