| Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
`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.
|
|
|
|
|
|
|
|
This commit tries to manually fix the clippy warnings that are fairly
straightforward and do not have rippling effects on the codebase nor
have a very high chance of causing bugs.
|
|
|
|
|
|
|
|
|
|
`mullvad-exclude` seems to fail on NixOS with a permissions error when
trying to open /sys/fs/cgroup/net_cls/mullvad-exclude/cgroup.procs. I
noticed that the daemon did not have such issues, so I presumed it's the
options with which the procs file is opened with that are to blame. As
such, I've set the changed the code to use the same options in
`mullvad-exclude` as in `talpid-core`.
|
|
|
|
|