| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2025-09-08 | Fix lint `clippy::implicit_clone` | Markus Pettersson | 1 | -2/+2 | |
| 2025-07-15 | Fix `collapsible_if` clippy lint | Markus Pettersson | 1 | -4/+4 | |
| 2025-07-10 | Run `cargo fmt` | Sebastian Holmin | 3 | -6/+8 | |
| 2025-03-18 | Remove needsless cloning of objects | Linus Färnstrand | 1 | -2/+1 | |
| 2025-01-14 | Fix new `clippy` warnings | Markus Pettersson | 1 | -2/+1 | |
| 2024-09-02 | Fix rustc nightly error: `elided lifetime has a name` | Markus Pettersson | 1 | -3/+3 | |
| 2024-08-27 | Use std LazyLock instead of once_cell Lazy | David Lönnhager | 3 | -7/+11 | |
| 2024-06-14 | Adapt to new never type fallback by explicitly stating unit types | Linus Färnstrand | 2 | -3/+6 | |
| 2024-04-03 | Enable single-use-lifetimes rustc lint | Linus Färnstrand | 1 | -13/+10 | |
| Removes superfluous lifetime definitions. Simplifying the code | |||||
| 2024-02-27 | Replace err_derive with thiserror | Joakim Hulthe | 4 | -51/+48 | |
| `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. | |||||
| 2024-02-19 | Fix redundant imports | David Lönnhager | 1 | -1/+0 | |
| 2024-01-16 | Add rust-version to all Cargo.toml | Linus Färnstrand | 1 | -0/+1 | |
| 2024-01-09 | Remove version and publish cargo metadata | Linus Färnstrand | 1 | -2/+0 | |
| Since Rust 1.75.0 the `version` field is optional. The version defaults to "0.0.0" if it's not specified, and `publish` defaults to false if no version has been given. So by not specifying a version we get both `version = "0.0.0" and `publish = false` "for free" | |||||
| 2024-01-04 | Add workspace level lints | Linus Färnstrand | 2 | -1/+4 | |
| 2023-10-11 | Make `once_cell` a workspace dependency | Markus Pettersson | 1 | -1/+1 | |
| 2023-09-11 | Move log depedency to workspace toml file | David Lönnhager | 1 | -1/+1 | |
| 2023-09-11 | Make err-derive a workspace dependency | David Lönnhager | 1 | -1/+1 | |
| 2023-08-04 | Replace all use of `lazy_static` with `once_cell` | Markus Pettersson | 3 | -9/+8 | |
| To align more with the upcoming standardizations within the Rust ecosystem which started with the release of `1.70.0` and the inevitable deprecation of `lazy_static`. | |||||
| 2023-07-14 | Move tokio dependency to be a workspace dependency | Linus Färnstrand | 1 | -1/+1 | |
| 2023-07-14 | Set package fields in workspace and inherit in packages | Linus Färnstrand | 1 | -5/+6 | |
| 2023-03-27 | Fix many typos | Alexander Seiler | 1 | -1/+1 | |
| Signed-off-by: Alexander Seiler <seileralex@gmail.com> | |||||
| 2022-11-07 | Split up talpid-core | Emīls Piņķis | 1 | -0/+6 | |
| 2022-10-10 | Set all Rust crate versions to 0.0.0 | Linus Färnstrand | 1 | -1/+1 | |
| 2022-09-27 | Fix clippy complaints | Emīls Piņķis | 1 | -4/+4 | |
| 2022-09-21 | Add systemd module to talpid-dbus | Emīls Piņķis | 2 | -0/+68 | |
| 2022-07-01 | Add the license field to talpid-dbus crate | Linus Färnstrand | 1 | -0/+1 | |
| 2022-06-21 | Fix the large majority of clippy warnings | Jonathan | 2 | -6/+5 | |
| 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-06-14 | Manually fix the simpler non-semantic clippy warns | Jonathan | 1 | -1/+1 | |
| 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. | |||||
| 2022-06-13 | Perform a clippy --fix | jonathan | 2 | -11/+11 | |
| This is a giant commit which performs only a clippy --fix. Auditing can happen in two ways, either by reading every line or by running a `cargo clippy --fix` on the previous commit and make sure that the result is the same. | |||||
| 2022-05-13 | Fix small typo | Emīls | 1 | -2/+2 | |
| 2022-02-15 | Upgrade err-derive to at least 0.3.1 | Linus Färnstrand | 1 | -1/+1 | |
| 2022-01-11 | Use ": " as delimiter instead of " - " between messages and value | Linus Färnstrand | 2 | -6/+6 | |
| 2021-12-14 | Fix some cargo doc warnings | David Lönnhager | 1 | -1/+1 | |
| 2021-11-29 | Reformat code without blank_lines_upper_bound = 2 | Linus Färnstrand | 3 | -9/+0 | |
| 2021-11-08 | Set all Rust crates to edition 2021 | Linus Färnstrand | 1 | -1/+1 | |
| 2021-09-15 | Fix Rust nightly errors | David Lönnhager | 1 | -24/+4 | |
| 2021-08-12 | Remove unused talpid-types dependency | Linus Färnstrand | 1 | -1/+0 | |
| 2021-08-09 | Always disable DNS over TLS in systemd-resolved | Emīls | 1 | -0/+28 | |
| 2021-07-13 | Update tokio dependencies | David Lönnhager | 1 | -1/+1 | |
| 2021-06-21 | Fix unused borrow | David Lönnhager | 1 | -2/+2 | |
| 2021-06-09 | Work around issue where systemd-resolved only replaces a single existing DNS ↵ | David Lönnhager | 1 | -1/+28 | |
| server on an interface | |||||
| 2021-06-09 | Fix D-Bus errors by using a separate connection for the route monitor | David Lönnhager | 1 | -0/+11 | |
| 2021-06-09 | Infer and monitor interfaces for DNS config | David Lönnhager | 2 | -17/+140 | |
| 2021-03-26 | Fix deadlock in systemd-resolved | Emīls | 1 | -5/+9 | |
| 2021-03-02 | Watch DNS config changes in systemd-resolved | Emīls | 4 | -0/+413 | |
| Certain NM versions will overwrite systemd-resovled config when they're reapplying existing config, this can be invoked `nmcli general reload dns-full` or by receiving a new DHCP lease. NM will just wipe the config for interfaces it doesn't have the config for in systemd-resolved, and since our daemon prefers systemd-resolved over NM, our config would be wiped. To fix this, I've changed the systemd-resolved DNS code to listen to changes to the global DNS config and reapply the tunnel interface DNS config if it's changed in any way. To better seperate the conecrns, the systemd-resolved DBus specific code was moved to the `talpid-dbus` crate, and the DNS code that manages the state and applies changes remains in `talpid-core`. One other solution that was considered was to just prefer NM over systemd-resolved, and we already kind of could do that, but the coming NM versions (1.28 and up) seem to not be able to manage DNS via it's own /etc/resolv.conf. | |||||
| 2021-03-01 | Stop using NM if it's too new | Emīls | 1 | -18/+64 | |
| 2021-02-05 | Upgrade err-derive dependency to 0.3.0 | Linus Färnstrand | 1 | -1/+1 | |
| 2021-01-12 | Expose NM version | Emīls | 1 | -4/+8 | |
| 2021-01-12 | Add talpid-dbus crate | Emīls | 3 | -0/+743 | |
