influxdb/sharder/Cargo.toml

29 lines
698 B
TOML
Raw Normal View History

2022-06-09 19:10:16 +00:00
[package]
name = "sharder"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
2022-06-09 19:10:16 +00:00
[dependencies]
data_types = { path = "../data_types" }
mutable_batch = { path = "../mutable_batch" }
parking_lot = "0.12"
siphasher = "0.3"
2023-02-24 18:02:23 +00:00
workspace-hack = { version = "0.1", path = "../workspace-hack" }
2022-06-09 19:10:16 +00:00
[dev-dependencies]
criterion = { version = "0.4", default-features = false, features = ["async_tokio", "rayon"]}
hashbrown = { workspace = true }
2022-06-13 14:51:25 +00:00
mutable_batch_lp = { path = "../mutable_batch_lp" }
2022-06-09 19:10:16 +00:00
rand = "0.8.3"
[[bench]]
name = "sharder"
harness = false
[lib]
# Allow --save-baseline to work
# https://github.com/bheisler/criterion.rs/issues/275
bench = false