2021-10-21 08:12:54 +00:00
|
|
|
[package]
|
|
|
|
name = "mutable_batch_lp"
|
|
|
|
version = "0.1.0"
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-10-21 08:12:54 +00:00
|
|
|
description = "Conversion logic for line protocol -> MutableBatch"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-01-27 15:34:10 +00:00
|
|
|
hashbrown = "0.12"
|
2021-10-21 08:12:54 +00:00
|
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
|
|
|
|
mutable_batch = { path = "../mutable_batch" }
|
|
|
|
schema = { path = "../schema" }
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2021-10-21 08:12:54 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
arrow_util = { path = "../arrow_util" }
|
2022-04-22 13:40:51 +00:00
|
|
|
assert_matches = "1.5.0"
|
2022-04-25 10:15:22 +00:00
|
|
|
criterion = "0.3"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "parse_lp"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|