[package]
edition = "2024"
name = "pbench"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Percentile-focused benchmarking for Rust — p50/p95/p99/p99.9/p99.99"
homepage = "https://github.com/consistent-milk12/pbench"
documentation = "https://docs.rs/pbench"
readme = "README.md"
keywords = [
"benchmark",
"percentile",
"latency",
"performance",
]
categories = ["development-tools::profiling"]
license = "MIT"
repository = "https://github.com/consistent-milk12/pbench"
[features]
default = []
json = [
"serde",
"serde_json",
]
[lib]
name = "pbench"
path = "src/lib.rs"
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[bench]]
name = "bench_dashmap"
path = "benches/bench_dashmap.rs"
harness = false
[[bench]]
name = "bench_masstree"
path = "benches/bench_masstree.rs"
harness = false
[[bench]]
name = "bench_rwlock_btree"
path = "benches/bench_rwlock_btree.rs"
harness = false
[[bench]]
name = "bench_scc"
path = "benches/bench_scc.rs"
harness = false
[[bench]]
name = "contention_masstree"
path = "benches/contention_masstree.rs"
harness = false
[[bench]]
name = "contention_rwlock_btree"
path = "benches/contention_rwlock_btree.rs"
harness = false
[[bench]]
name = "contention_scc"
path = "benches/contention_scc.rs"
harness = false
[[bench]]
name = "simple"
path = "benches/simple.rs"
harness = false
[[bench]]
name = "with_inputs"
path = "benches/with_inputs.rs"
harness = false
[dependencies.hdrhistogram]
version = "7.5.4"
[dependencies.pbench-macros]
version = "0.2.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
optional = true
[dependencies.serde_json]
version = "1.0.149"
optional = true
[dev-dependencies.dashmap]
version = "6.1.0"
[dev-dependencies.masstree]
version = "0.8.1"
features = ["mimalloc"]
[dev-dependencies.mimalloc]
version = "0.1.48"
[dev-dependencies.scc]
version = "3.6.5"
[dev-dependencies.tempfile]
version = "3.26.0"
[dev-dependencies.trybuild]
version = "1.0.116"