aboutsummaryrefslogtreecommitdiff
path: root/crates/tor-general-addr/fuzz
Commit message (Collapse)AuthorAgeFilesLines
* Switch Cargo.toml files to edition 2024.Nick Mathewson2025-08-071-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.
* Extract general::SocketAddr and its unix friends to their own crate.Nick Mathewson2024-10-294-0/+72
This is mostly code motion.