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
|
|
|
|
|
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-11 16:43:38 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
2021-02-04 23:56:02 +00:00
|
|
|
async-trait = "0.1"
|
2021-06-14 21:16:35 +00:00
|
|
|
chrono = "0.4"
|
2020-11-04 17:33:41 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2021-05-06 11:36:23 +00:00
|
|
|
entry = { path = "../entry" }
|
2021-05-28 13:51:56 +00:00
|
|
|
hashbrown = "0.11"
|
2021-10-11 09:45:08 +00:00
|
|
|
schema = { path = "../schema" }
|
2021-09-09 16:02:16 +00:00
|
|
|
metric = { path = "../metric" }
|
2021-04-07 15:38:24 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2021-09-06 01:18:24 +00:00
|
|
|
parking_lot = "0.11.2"
|
2020-09-18 20:29:19 +00:00
|
|
|
snafu = "0.6.2"
|
2021-09-06 09:11:38 +00:00
|
|
|
tokio = { version = "1.11", features = ["macros"] }
|
2020-09-18 12:11:48 +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" }
|
2021-04-21 08:21:31 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
# Disables snapshot caching
|
|
|
|
nocache = []
|