summaryrefslogtreecommitdiffstats
path: root/openpgp/benches/parse_cert.rs
AgeCommit message (Collapse)Author
2021-11-29openpgp: Use next() instead of nth(0).Nora Widdecke
- Found with clippy::iter_nth_zero.
2021-04-13bench: Restructure.Nora Widdecke
- Move all benchmarks into a single binary. This prevents dead_code warnings for common functions not used in a specific benchmark, and makes adding new benchmarks a little less surprising. - Cargo would autimatically try to compile all .rs files in /benches as benchmarks. Prevent this with `autobenches = false`.
2021-04-13bench: Add benchmarks for parsing keys.Nora Widdecke
- Generate a flooded cert before the benchmark is run.