2020-09-18 12:11:48 +00:00
|
|
|
[package]
|
2020-12-22 15:49:53 +00:00
|
|
|
name = "mutable_buffer"
|
2020-09-18 12:11:48 +00:00
|
|
|
version = "0.1.0"
|
2020-11-24 19:19:29 +00:00
|
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
2020-09-18 12:11:48 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
2021-01-12 22:49:03 +00:00
|
|
|
|
|
|
|
# Note the long term goal is that this crate is standalone and not
|
|
|
|
# dependent on the IOx Query Engine (even though this is not the case
|
|
|
|
# now).
|
|
|
|
#
|
|
|
|
# The rationale for this is:
|
|
|
|
#
|
|
|
|
# 1. Keep the API clean (and concerns separated) and allow for potential future reuse outside of IOx
|
|
|
|
# 2. Keep change/compile/link time down during development when working on just this crate
|
|
|
|
|
2020-09-18 12:11:48 +00:00
|
|
|
[dependencies]
|
|
|
|
|
2020-11-05 18:44:36 +00:00
|
|
|
arrow_deps = { path = "../arrow_deps" }
|
2020-11-04 17:33:41 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2020-11-05 18:44:36 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
|
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
|
2020-11-24 19:19:29 +00:00
|
|
|
query = { path = "../query" }
|
2020-11-05 18:44:36 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|
2020-09-18 12:11:48 +00:00
|
|
|
|
2020-10-26 15:46:02 +00:00
|
|
|
async-trait = "0.1"
|
2020-09-18 20:29:19 +00:00
|
|
|
chrono = "0.4"
|
|
|
|
flatbuffers = "0.6.1"
|
|
|
|
snafu = "0.6.2"
|
2021-01-12 17:46:18 +00:00
|
|
|
string-interner = "0.12.2"
|
2021-01-29 21:11:55 +00:00
|
|
|
tokio = { version = "1.0", features = ["macros"] }
|
2020-09-18 20:29:19 +00:00
|
|
|
tracing = "0.1"
|
2020-09-18 12:11:48 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-11-05 18:44:36 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|
2020-09-18 14:50:16 +00:00
|
|
|
criterion = "0.3"
|