aboutsummaryrefslogtreecommitdiffstats
path: root/crates/turtle/src (unfollow)
Commit message (Collapse)Author
2026-06-14fix(client/settings): Trim sync user_id and encryption_keyBenedikt Peetz
The files might be newline delimited, which we should remove before we try to parse the contents.
2026-06-13fix({client,server}/settings): Don't fail, when there is no config fileBenedikt Peetz
2026-06-13chore(treewide): Remove glob importsBenedikt Peetz
2026-06-13fix(config): Don't write non-TOML default config filesBenedikt Peetz
2026-06-13chore(daemon): Remove the `autostart` featureBenedikt Peetz
A service manager should deal with that.
2026-06-13fix(sqlite): Ensure that database migration runs sequentiallyBenedikt Peetz
Otherwise, we might run migration from multiple db-connections.
2026-06-13chore(treewide): Also fix all `clippy` warningsBenedikt Peetz
2026-06-13chore(treewide): Fix some of `clippy`'s errorBenedikt Peetz
Just a run of `cargo clippy --fix`
2026-06-13chore(treewide): Remove `cargo` warnings to 0Benedikt Peetz
There are still the `clippy` warnings, but they are for a future date.
2026-06-12chore(treewide): Cleanup themesBenedikt Peetz
2026-06-12feat(server): Really make users stateless (with tests)Benedikt Peetz
This commit also remove another load of unneeded features.
2026-06-11feat(server): Make user stuff statelessBenedikt Peetz
2026-06-11chore(server): Remove the last remnants of the "hub" sync-server thingyBenedikt Peetz
2026-06-11chore(server): Simplify the database supportBenedikt Peetz
2026-06-11chore: Remove all `pub`sBenedikt Peetz
They will not be marked by rustc/cargo as unused, and as atuin doesn't expose an API all of them _should_ be `pub(crate)`
2026-06-11chore: Restore db migrationsBenedikt Peetz
2026-06-11chore: Move everything into one big crateBenedikt Peetz
That helps remove duplicated code and rustc/cargo will now also show dead code correctly.