aboutsummaryrefslogtreecommitdiffstats
path: root/atuin-client/src/api_client.rs (follow)
Commit message (Collapse)AuthorAge
* A few minor tweaks (#314)Conrad Ludgate2022-04-21
| | | | | | | | | * use bail macro replace client database errors remove dead code * fix test
* goodbye warp, hello axum (#296)Conrad Ludgate2022-04-12
|
* feat: login/register no longer blocking (#216)Conrad Ludgate2021-12-08
|
* Fix sync (#95)Ellie Huxtable2021-05-09
| | | | | | | The data part of the add history request is actually a string. I don't want to introduce any structure here, and would rather keep it as "just a blob". Even if that blob has structure secretly! My fault for missing this in the last review
* some changes :shrug: (#83)Conrad Ludgate2021-05-09
| | | | | * make everything a cow * fmt + clippy
* Bugfixes, show time ago, perf improvementsEllie Huxtable2021-04-21
| | | | Also allow unique listing and more ergonomic cwd usage
* Use cargo workspaces (#37)Ellie Huxtable2021-04-20
* Switch to Cargo workspaces Breaking things into "client", "server" and "common" makes managing the codebase much easier! client - anything running on a user's machine for adding history server - handles storing/syncing history and running a HTTP server common - request/response API definitions, common utils, etc * Update dockerfile