| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Switch Cargo.toml files to edition 2024. | Nick Mathewson | 2025-08-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | 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. | ||||
| * | Typo fixes (automatic and hand-verified) | Nick Mathewson | 2025-07-09 | 1 | -1/+1 |
| | | | | | Made with https://crates.io/crates/typos-cli | ||||
| * | tor-hsservice: Change unclear names in ReplayLog. | Wesley Aptekar-Cassels | 2025-02-10 | 1 | -7/+7 |
| | | |||||
| * | tor-hsservice: Assert that hash length is correct in ReplayLog. | Wesley Aptekar-Cassels | 2025-02-10 | 1 | -0/+3 |
| | | |||||
| * | tor-hsservice: Change ReplayLog parse_log_leafname API. | Wesley Aptekar-Cassels | 2025-02-10 | 1 | -2/+2 |
| | | | | | | This previously returned a &str for sort of unclear reasons, which was only used in logging. Remove that. | ||||
| * | tor-hsservice: Remove ReplayLog HASH_LEN constant. | Wesley Aptekar-Cassels | 2025-02-10 | 1 | -9/+8 |
| | | | | | | This needed to be the same as the MESSAGE_LEN constant, so we should just use the same constant for both. | ||||
| * | tor-hsservice: Clean up replay::ipt::hash types. | Wesley Aptekar-Cassels | 2025-02-10 | 1 | -9/+6 |
| | | | | | | I don't think a newtype here was really buying us anything. Might as well get rid of it. | ||||
| * | tor-hsservice: Move replay::hash into replay::ipt::hash. | Wesley Aptekar-Cassels | 2025-02-10 | 1 | -4/+56 |
| | | | | | The IPT log is the only one that will need hashing, so move that code. | ||||
| * | tor-hsservice: Move ReplayLog hashing out of generic code. | Wesley Aptekar-Cassels | 2025-02-10 | 1 | -3/+6 |
| | | |||||
| * | tor-hsservice: Make ReplayLog magic bytes generic. | Wesley Aptekar-Cassels | 2025-02-10 | 1 | -1/+5 |
| | | | | | This will ensure that we can't confuse different types of replay logs. | ||||
| * | tor-hsservice: Make ReplayLog generic. | Wesley Aptekar-Cassels | 2025-02-10 | 1 | -0/+42 |
