summaryrefslogtreecommitdiff
path: root/crates/test-temp-dir/src
Commit message (Collapse)AuthorAgeFilesLines
* clippy: deny `mod_module_files`Steven Engler2025-01-061-0/+1
| | | | | | Denies 'mod.rs' files for consistency. https://rust-lang.github.io/rust-clippy/master/index.html#mod_module_files
* add_warnings, *: Allow clippy::needless_lifetimesNick Mathewson2024-12-031-0/+1
| | | | | | | | In 1.83, this warning triggers on many of our crates. We're thinking of fixing them all, but for now, we're going to disable the warning. This is part of #1765.
* Re-run maint/add_warning.Nick Mathewson2024-05-061-2/+2
| | | | This commit is automatically generated.
* Fix typos in doc commentsTobias Stoeckmann2024-03-061-1/+1
|
* test-temp-dir: Allow use of Path::display in test diagnostic outputIan Jackson2024-03-051-1/+8
| | | | | | We're going to tell clippy to forbid Path::display. But we can't have the PathExt from tor-basic-utils, here. We can't put the allow on the function call expression, only a block or function.
* Merge branch 'windows_comments' into 'main'Ian Jackson2024-03-051-1/+1
|\ | | | | | | | | Fix Windows documentation See merge request tpo/core/arti!2011
| * test-temp-dir: Fix commentTobias Stoeckmann2024-03-011-1/+1
| | | | | | | | | | Windows systems use comma instead of proclaimed colon. The code is correct, just the comment has to be fixed.
* | deny clippy::unchecked_duration_subtractiontrinity-1686a2024-02-291-0/+1
|/
* test-temp-dir: Drop a TODO/allowIan Jackson2024-01-251-3/+0
|
* test-temp-dir: New crateIan Jackson2024-01-251-0/+333
Introduce the crate, move the code motion, and make minimal necessary changes.