summaryrefslogtreecommitdiff
path: root/crates/test-temp-dir
Commit message (Collapse)AuthorAgeFilesLines
* Bump patchlevel versions on non-{tor/arti} crates.Nick Mathewson2024-04-021-1/+1
| | | | | | | | | | | | | | | | These have all had backward-compatible changes. Generated with: ``` cargo set-version --bump patch -p fs-mistrust cargo set-version --bump patch -p test-temp-dir cargo set-version --bump patch -p fslock-guard cargo set-version --bump patch -p hashx cargo set-version --bump patch -p equix cargo set-version --bump patch -p caret cargo set-version --bump patch -p safelog cargo set-version --bump patch -p retry-error ```
* 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
|/
* Bump minor versionsIan Jackson2024-02-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bump the minor version of these crates, and update the in-tree dependencies. Recently published as fresh crates, let's just assume there are breaking changes: fslock-guard test-temp-dir Breaking API change affecting many many downstream crates: tor-rtcompat Downstream crates which we're (conservatively) assuming have tor-rtcompat types in their APIs: tor-rtmock tor-log-ratelim tor-rpcbase tor-llcrypto tor-protover tor-bytes tor-hscrypto tor-hspow tor-socksproto tor-checkable tor-cert tor-linkspec tor-cell tor-proto tor-netdoc tor-consdiff tor-netdir tor-congestion tor-persist tor-chanmgr tor-ptmgr tor-guardmgr tor-circmgr tor-dirclient tor-dirmgr tor-keymgr tor-hsclient tor-hsservice tor-hsrproxy arti-client arti-rpcserver arti-config arti-hyper arti-bench arti-testing
* test-temp-dir: Plan when we think we'll do 1.xIan Jackson2024-01-251-0/+1
|
* test-temp-dir: Drop a TODO/allowIan Jackson2024-01-251-3/+0
|
* test-temp-dir: Update docs for it being a crateIan Jackson2024-01-251-5/+5
|
* test-temp-dir: Improve the docs and fix broken linksIan Jackson2024-01-251-9/+22
|
* test-temp-dir: New crateIan Jackson2024-01-253-0/+413
Introduce the crate, move the code motion, and make minimal necessary changes.