2020-09-18 12:11:48 +00:00
|
|
|
[package]
|
2020-11-05 18:44:36 +00:00
|
|
|
name = "write_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"
|
|
|
|
|
|
|
|
[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 14:25:29 +00:00
|
|
|
wal = { path = "../wal" }
|
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"
|
|
|
|
sqlparser = "0.6.1"
|
|
|
|
string-interner = "0.12.0"
|
|
|
|
tokio = { version = "0.2", features = ["full"] }
|
|
|
|
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"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "benchmark"
|
|
|
|
harness = false
|