61 lines
1.5 KiB
TOML
61 lines
1.5 KiB
TOML
[package]
|
|
name = "server_benchmarks"
|
|
version = "0.1.0"
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
|
edition = "2018"
|
|
description = "Server related bechmarks, grouped into their own crate to minimize build dev build times"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
|
|
|
|
[dev-dependencies] # In alphabetical order
|
|
arrow_util = { path = "../arrow_util" }
|
|
entry = { path = "../entry" }
|
|
criterion = { version = "0.3.4", features = ["async_tokio"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
datafusion = { path = "../datafusion" }
|
|
data_types = { path = "../data_types" }
|
|
flate2 = "1.0.20"
|
|
influxdb_tsm = { path = "../influxdb_tsm" }
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
|
|
mutable_buffer = { path = "../mutable_buffer" }
|
|
object_store = { path = "../object_store" }
|
|
packers = { path = "../packers" }
|
|
predicate = { path = "../predicate" }
|
|
query = { path = "../query" }
|
|
query_tests = { path = "../query_tests" }
|
|
rand = "0.8.3"
|
|
server = { path = "../server" }
|
|
test_helpers = { path = "../test_helpers" }
|
|
tokio = { version = "1.11", features = ["macros", "time"] }
|
|
|
|
[[bench]]
|
|
name = "influxrpc"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "snapshot"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "write"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "encoders"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "line_parser"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "mapper"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "catalog_persistence"
|
|
harness = false
|