refactor: make packers a dev-dependency of read buffer (#2345)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
pull/24376/head
Raphael Taylor-Davies 2021-08-19 12:09:34 +01:00 committed by GitHub
parent 04ba139cb2
commit 98627944e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions

1
Cargo.lock generated
View File

@ -2632,6 +2632,7 @@ name = "packers"
version = "0.1.0"
dependencies = [
"arrow",
"criterion",
"human_format",
"influxdb_tsm",
"internal_types",

View File

@ -14,5 +14,10 @@ observability_deps = { path = "../observability_deps" }
parquet = "5.0"
[dev-dependencies] # In alphabetical order
criterion = "0.3.3"
rand = "0.8.3"
test_helpers = { path = "../test_helpers" }
[[bench]]
name = "packers"
harness = false

View File

@ -23,13 +23,13 @@ internal_types = { path = "../internal_types" }
itertools = "0.10.1"
metrics = { path = "../metrics" }
observability_deps = { path = "../observability_deps" }
packers = { path = "../packers" }
parking_lot = "0.11"
permutation = "0.2.5"
snafu = "0.6"
[dev-dependencies] # In alphabetical order
criterion = "0.3.3"
packers = { path = "../packers" }
rand = "0.8.3"
rand_distr = "0.4.0"
test_helpers = { path = "../test_helpers" }

View File

@ -30,8 +30,6 @@ server = { path = "../server" }
test_helpers = { path = "../test_helpers" }
tokio = { version = "1.0", features = ["macros", "time"] }
[[bench]]
name = "influxrpc"
harness = false
@ -56,10 +54,6 @@ harness = false
name = "mapper"
harness = false
[[bench]]
name = "packers"
harness = false
[[bench]]
name = "catalog_persistence"
harness = false