52 lines
1.3 KiB
TOML
52 lines
1.3 KiB
TOML
[package]
|
|
name = "server_benchmarks"
|
|
version = "0.1.0"
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
|
edition = "2021"
|
|
description = "Server related bechmarks, grouped into their own crate to minimize build dev build times"
|
|
|
|
[dependencies]
|
|
|
|
[dev-dependencies] # In alphabetical order
|
|
arrow_util = { path = "../arrow_util" }
|
|
criterion = { version = "0.3.4", features = ["async_tokio"] }
|
|
chrono = { version = "0.4", default-features = false }
|
|
datafusion = { path = "../datafusion" }
|
|
data_types = { path = "../data_types" }
|
|
db = { path = "../db" }
|
|
flate2 = "1.0.23"
|
|
influxdb_tsm = { path = "../influxdb_tsm" }
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
|
|
mutable_buffer = { path = "../mutable_buffer", features = ["nocache"] }
|
|
object_store = { path = "../object_store" }
|
|
predicate = { path = "../predicate" }
|
|
query = { path = "../query" }
|
|
query_tests = { path = "../query_tests" }
|
|
rand = "0.8.3"
|
|
test_helpers = { path = "../test_helpers" }
|
|
tokio = { version = "1.17", features = ["macros", "parking_lot"] }
|
|
|
|
[[bench]]
|
|
name = "influxrpc"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "snapshot"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "encoders"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "line_parser"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "mapper"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "catalog_persistence"
|
|
harness = false
|