summaryrefslogtreecommitdiffstats
path: root/openpgp/benches/encrypt_message.rs
AgeCommit message (Collapse)Author
2021-11-29openpgp: Remove unnecessary factors.Nora Widdecke
- Clippy lint: clippy::identity_op.
2021-11-29Remove unnecessary borrows.Nora Widdecke
- Fixed with the help of clippy::needless_borrow.
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 encrypt benchmark.Nora Widdecke
- Prevent the compiler from optimizing for the inputs by using bench_with_input.