Files
tls-pq-bench/runner/Cargo.toml
Kristofers Solo 1c6625a04c feat(runner): add TOML config file support for matrix benchmarks
- Add toml and serde dependencies
- Create config module with Config and BenchmarkConfig structs
- Add --config CLI option for matrix benchmarks
- Refactor `run_benchmark()` to accept BenchmarkConfig
2026-02-06 17:43:46 +02:00

22 lines
418 B
TOML

[package]
name = "runner"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
clap.workspace = true
common.workspace = true
miette.workspace = true
rustls.workspace = true
tokio-rustls.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
uuid.workspace = true
serde.workspace = true
toml.workspace = true
[lints]
workspace = true