2021-10-21 08:12:54 +00:00
|
|
|
[package]
|
|
|
|
name = "mutable_batch_lp"
|
|
|
|
description = "Conversion logic for line protocol -> MutableBatch"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-10-21 08:12:54 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-11-11 17:12:30 +00:00
|
|
|
hashbrown = { workspace = true }
|
2023-03-17 13:19:50 +00:00
|
|
|
influxdb-line-protocol = { path = "../influxdb_line_protocol" }
|
2021-10-21 08:12:54 +00:00
|
|
|
mutable_batch = { path = "../mutable_batch" }
|
|
|
|
schema = { path = "../schema" }
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", 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-09-12 08:47:35 +00:00
|
|
|
criterion = { version = "0.4", default-features = false, features = ["rayon"]}
|
2022-04-25 10:15:22 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "parse_lp"
|
|
|
|
harness = false
|
|
|
|
|
2022-08-16 08:11:23 +00:00
|
|
|
|
2022-04-25 10:15:22 +00:00
|
|
|
[lib]
|
2022-08-16 08:11:23 +00:00
|
|
|
# Allow --save-baseline to work
|
|
|
|
# https://github.com/bheisler/criterion.rs/issues/275
|
2022-04-25 10:15:22 +00:00
|
|
|
bench = false
|