aboutsummaryrefslogtreecommitdiff
path: root/crates/tor-proto/benches/client_decrypt.rs
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade rand crates to 0.10.Wesley Aptekar-Cassels2026-05-121-1/+1
| | | | | | | | | | | When the circ-padding feature is enabled, we use maybenot, which does not yet support rand 0.10. In the meantime, enabling this feature pulls in rand 0.9. This is not ideal, but should be okay as a temporary situation. This also replaces the use of ReseedingRng (which was removed in 0.10) with the reseeding_rng crate. This is somewhat less performant, but it should be okay.
* Switch Cargo.toml files to edition 2024.Nick Mathewson2025-08-071-3/+3
| | | | | | | | | | | | | | First, run ``` git grep -l "^edition =" | xargs perl -i -pe 's/^edition *=.*/edition = "2024"/;' ``` Second, manually verify that all Cargo.toml files have changed, and nothing else has changed. Third, run cargo fmt again.
* proto: Let benchmarks build correctly on non-intelNick Mathewson2025-06-091-2/+6
| | | | | | | (criterion-cycles-per-byte, though quite helpful, doesn't work on non-intel CPUs) Closes #2029.
* proto: fix bench featuresLionel Goffaux2025-05-271-34/+35
|
* proto: remove bench pub wrappersLionel Goffaux2025-05-221-26/+29
|
* proto: use consts for bench throuputsLionel Goffaux2025-05-141-2/+2
|
* proto: fix doc typosLionel Goffaux2025-05-141-2/+2
|
* proto: change bench measurementLionel Goffaux2025-05-131-7/+12
|
* proto: use of Aes{128,256}{Dec,Enc} in the benchmarksLionel Goffaux2025-05-081-5/+5
|
* proto: fix typo s(t)ateLionel Goffaux2025-05-081-4/+4
|
* proto: extend benchmarksLionel Goffaux2025-05-081-0/+124