Note that the --report <id>
argument is available to filter out to use
parameters for one specific report (by id
).
cargo run -p tools -- bench --report full
This obviously takes a long time, but will walk through all feature combinations and generate a report:
cargo run -p tools -- report --release
If you want the faster version for testing, add
--quick
.
This will run all benchmarks, one for each report.
cargo run -p tools -- bench
This will run clippy and sanity check the configuration, one for each report.
cargo run -p tools -- clippy