2021-11-03 18:15:35 +00:00
|
|
|
[package]
|
|
|
|
name = "mutable_batch_tests"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "MutableBatch integration tests and benchmarks"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-11 12:34:07 +00:00
|
|
|
dml = { path = "../dml" }
|
2021-11-03 18:15:35 +00:00
|
|
|
flate2 = "1.0"
|
|
|
|
generated_types = { path = "../generated_types" }
|
|
|
|
mutable_batch = { path = "../mutable_batch" }
|
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
|
|
|
mutable_batch_pb = { path = "../mutable_batch_pb" }
|
2022-08-09 17:30:44 +00:00
|
|
|
prost = "0.11"
|
2021-11-03 18:15:35 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-07-20 10:00:08 +00:00
|
|
|
bytes = "1.2"
|
2022-09-12 08:26:10 +00:00
|
|
|
criterion = "0.4"
|
2021-11-03 18:15:35 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "write_lp"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "write_pb"
|
|
|
|
harness = false
|
2022-08-16 08:11:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
# Allow --save-baseline to work
|
|
|
|
# https://github.com/bheisler/criterion.rs/issues/275
|
|
|
|
bench = false
|