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>"]
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2020-09-18 12:11:48 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dependencies] # In alphabetical order
|
2021-10-19 17:14:08 +00:00
|
|
|
arrow = { version = "6.0", features = ["prettyprint"] }
|
2020-11-04 17:33:41 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2021-10-11 09:45:08 +00:00
|
|
|
schema = { path = "../schema" }
|
2021-09-09 16:02:16 +00:00
|
|
|
metric = { path = "../metric" }
|
2021-10-14 16:46:54 +00:00
|
|
|
mutable_batch = { path = "../mutable_batch" }
|
2021-10-28 20:15:28 +00:00
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
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"
|
2020-09-18 12:11:48 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dev-dependencies] # In alphabetical order
|
2021-11-01 11:21:59 +00:00
|
|
|
tokio = { version = "1.13", features = ["macros"] }
|
2021-10-14 16:46:54 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
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 = []
|