summaryrefslogtreecommitdiff
path: root/src/utils/path.rs
AgeCommit message (Collapse)Author
2024-08-01Fix build for rust 1.80Thomas Otto
Upgrade "time" (and its dependency chain rooted at "plist"), the previous version did not build with 1.80. Tell the new 'unexpected_cfgs' lint that 'tarpaulin_include' is okay Mark one clippy lint as a false positive
2024-07-09Make relativize_path_maybe directly update the path argumentThomas Otto
This simplifies the call sites. Also skip updating if the path is already absolute, and handle '/dev/null' on Windows so it is no longer converted to '\dev\null'.
2022-11-13Fix clippy warnings (#1236)clnoll
2022-02-14Fix hyperlink absolute paths (#939)Dan Davison
Fix file paths and hyperlinks With this commit the target of a hyperlink should always be an absolute path. This should be true for all file hyperlinks, e.g. - File hyperlink - Hunk header hyperlink - Line number hyperlink Fixes #890