influxdb/mutable_buffer/Cargo.toml

39 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "mutable_buffer"
version = "0.1.0"
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
edition = "2018"
# 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
[dependencies] # In alphabetical order
arrow = { version = "5.0", features = ["prettyprint"] }
arrow_util = { path = "../arrow_util" }
async-trait = "0.1"
chrono = "0.4"
data_types = { path = "../data_types" }
entry = { path = "../entry" }
hashbrown = "0.11"
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
internal_types = { path = "../internal_types" }
metrics = { path = "../metrics" }
observability_deps = { path = "../observability_deps" }
2021-04-13 17:10:28 +00:00
parking_lot = "0.11.1"
snafu = "0.6.2"
tokio = { version = "1.0", features = ["macros"] }
[dev-dependencies] # In alphabetical order
test_helpers = { path = "../test_helpers" }
[features]
default = []
# Disables snapshot caching
nocache = []