summaryrefslogtreecommitdiffhomepage
path: root/mullvad-daemon/src/cleanup.rs
AgeCommit message (Collapse)AuthorFilesLines
2024-02-27Replace err_derive with thiserrorJoakim Hulthe1-14/+13
`err_derive` is unmaintained and will probably stop working with rust edition 2024. `thiserror` is almost a drop-in replacement. This commit simply replaces all occurences of `derive(err_derive::Error)` with `derive(thiserror::Error)` and fixes the attributes, but the Error and Display impls should be identical.
2022-06-21Fix the large majority of clippy warningsJonathan1-16/+15
This commit fixes most of the remaining clippy warnings in the codebase. These warnings were the more semantically difficult ones to fix. There are some warnings that remain from the rebase that will be fixed in the upcoming PR.
2022-05-09Move directory cleanup to cleanup moduleDavid Lönnhager1-0/+83