diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2022-11-04 09:08:20 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-04 09:08:20 +0000 |
| commit | e297b98f721bf32d8d4331677eefe49823db32b9 (patch) | |
| tree | e30910e2e1e82a0e15fcbc3d8869e35ae99936f8 /atuin-client/src/lib.rs | |
| parent | Build ARM64 releases & update runners (#593) (diff) | |
| download | atuin-e297b98f721bf32d8d4331677eefe49823db32b9.zip | |
Add local event log storage (#390)
* Add event data structures
This adds the data structures required to start syncing events, rather
than syncing history directly.
Adjust event
Fix
Add event data structure to client
* Add server event table sql
* Add client event table migration
Adjust migration
* Insert into event table from client
* Add event merge function
Right now this just ensures we have the right amount of events given the
history we have
BUT it will also be used to merge CREATE/DELETE events, resulting in
history being deleted :)
* Make CI happy
* Adjust
* we don't limit history length any more
* Update atuin-client/src/database.rs
Co-authored-by: Conrad Ludgate <conradludgate@gmail.com>
* fix usage
* Fix typo
* New Rust, new clippy stuff
Co-authored-by: Conrad Ludgate <conradludgate@gmail.com>
Diffstat (limited to '')
| -rw-r--r-- | atuin-client/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/atuin-client/src/lib.rs b/atuin-client/src/lib.rs index 497c5e74..37d1b0f0 100644 --- a/atuin-client/src/lib.rs +++ b/atuin-client/src/lib.rs @@ -11,6 +11,7 @@ pub mod encryption; pub mod sync; pub mod database; +pub mod event; pub mod history; pub mod import; pub mod ordering; |
