[dependencies.ahash]
version = "0.8"
[dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[dependencies.fastrand]
version = "2.0"
[dependencies.jemallocator]
version = "0.5"
[dependencies.libc]
version = "0.2"
[dependencies.lockfree]
version = "0.5"
[dependencies.num_cpus]
version = "1.16"
[[example]]
name = "custom_benchmark"
path = "examples/custom_benchmark.rs"
[[example]]
name = "memory_benchmarks"
path = "examples/memory_benchmarks.rs"
[[example]]
name = "real_comparison"
path = "examples/real_comparison.rs"
[[example]]
name = "simple_benchmark_example"
path = "examples/simple_benchmark_example.rs"
[lib]
bench = false
name = "hft_benchmarks"
path = "src/lib.rs"
[package]
authors = ["HFT Framework Team <hft@rustquant.tech>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools::profiling", "algorithms", "finance"]
description = "High-precision benchmarking tools for high-frequency trading systems with nanosecond-level timing accuracy"
documentation = "https://docs.rs/hft-benchmarks"
edition = "2021"
exclude = ["BENCHMARKING_GUIDE.md", "BENCHMARK_ROADMAP.md", "QUICK_REFERENCE.md", "benches/"]
homepage = "https://github.com/hft-framework/hft-benchmarks"
keywords = ["benchmark", "hft", "trading", "performance", "timing"]
license = "GPL-3.0-or-later"
name = "hft-benchmarks"
readme = "README.md"
repository = "https://github.com/hft-framework/hft-benchmarks"
version = "0.1.2"
[profile.bench]
debug = 2
inherits = "release"
[profile.release]
codegen-units = 1
debug = 0
lto = "fat"
opt-level = 3
overflow-checks = false
panic = "abort"