2022-06-09 19:10:16 +00:00
|
|
|
[package]
|
|
|
|
name = "sharder"
|
2022-09-26 14:43:00 +00:00
|
|
|
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"
|
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-09-12 08:47:35 +00:00
|
|
|
criterion = { version = "0.4", default-features = false, features = ["async_tokio", "rayon"]}
|
2022-11-11 01:12:03 +00:00
|
|
|
hashbrown = "0.13"
|
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"
|
2022-06-15 15:09:57 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|
2022-06-09 19:10:16 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "sharder"
|
|
|
|
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
|