aboutsummaryrefslogtreecommitdiffstats
path: root/crates (unfollow)
Commit message (Collapse)Author
2026-08-23daemon/api/{start,end}_history: Improve loggingHEADmainBenedikt Peetz
2026-08-23daemon/api: Remove `add_history`Benedikt Peetz
This request is a footgun, as it will leave commands that never return (e.g. `shutdown`, `exit`, etc.) unrecorded.
2026-08-23crates/turtle/client/history: Set a higher rpc message limitBenedikt Peetz
The history message can become quite large.
2026-08-23crates/daemon/api/history: Remove pointless sleepBenedikt Peetz
That was forgotten here during testing.
2026-08-23crates/daemon/aclient/history: Don't panic on negative command durationBenedikt Peetz
The old atuin code, used a negative duration as no-duration sentinel.
2026-08-23crates/client/daemon/status: Fail, when connection to daemon failsBenedikt Peetz
2026-08-22crates/client: Rename to turtle-clientBenedikt Peetz
`turtle` is already taken on crates.io
2026-08-22treewide: Upgrade and update dependenciesBenedikt Peetz
`rusty_paseto` was left explicitly on v0.8 because the v0.10 is no longer compatible with `rusty_paserk`.
2026-08-22treewide: Update Cargo.toml metadataBenedikt Peetz
2026-08-22treewide: Fix most `cargo check` warningsBenedikt Peetz
The remaining ones, require actual work to resolve.
2026-08-22crates/turtle/list: Restore the history listing code from atuinBenedikt Peetz
_That_ was actually useful to have.
2026-07-24feat: Finalize design for fish-shell integrationBenedikt Peetz
2026-07-20chore: Last big refactoringBenedikt Peetz
2026-07-20chore: CommitBenedikt Peetz
2026-07-20chore: CommitBenedikt Peetz
2026-07-20chore(server): Remove warningsBenedikt Peetz
2026-07-20chore: Remove some warnings (cargo fix)Benedikt Peetz
2026-07-20chore(atuin): Remove unused crate dependenciesBenedikt Peetz
2026-07-20chore: All compilesBenedikt Peetz
2026-07-20chore: CommitBenedikt Peetz
2026-07-20chore: CommitBenedikt Peetz
2026-07-20chore: CommitBenedikt Peetz
2026-07-09chore: Move more stuff out of atuin-clientBenedikt Peetz
2026-07-09chore: Add more thingsBenedikt Peetz
2026-07-09chore: Separate daemon, client, server, and lib into cratesBenedikt Peetz
2026-06-14fix(client/sync): Pass through precise error on `SyncError::WrongKey`Benedikt Peetz
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.
2026-06-10chore: Somewhat simplify sync codeBenedikt Peetz
2026-06-10chore: Remove more (kinda) useless stuffBenedikt Peetz
2026-06-10chore: Turn all `allow`s into into `expect`sBenedikt Peetz
2026-06-10chore: Remove more useless codeBenedikt Peetz
2026-06-10chore: Remove some unused rust codeBenedikt Peetz
2026-06-08feat: Capture command output + expose to new `atuin_output` tool (#3510)Michelle Tilley
2026-06-04chore: update GitHub app token formatChris Rose