diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2023-06-14 21:18:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-14 21:18:24 +0100 |
| commit | ae1709dafd22ac3c64441472e90df8799253292e (patch) | |
| tree | 88d1cb17af6af9948d44ffb7242d69be5743785d /atuin-client/src/lib.rs | |
| parent | Bump debian from bullseye-20230502-slim to bullseye-20230612-slim (#1047) (diff) | |
| download | atuin-ae1709dafd22ac3c64441472e90df8799253292e.zip | |
Key values (#1038)
* wip
* Start testing
* Store host IDs, not hostnames
Why? Hostnames can change a lot, and therefore host filtering can be
funky. Really, all we want is a unique ID per machine + do not care what
it might be.
* Mostly just write a fuckload of tests
* Add a v0 kv store I can push to
* Appending works
* Add next() and iterate, test the pointer chain
* Fix sig
* Make clippy happy and thaw the ICE
* Fix tests'
* Fix tests
* typed builder and cleaner db trait
---------
Co-authored-by: Conrad Ludgate <conrad.ludgate@truelayer.com>
Diffstat (limited to 'atuin-client/src/lib.rs')
| -rw-r--r-- | atuin-client/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/atuin-client/src/lib.rs b/atuin-client/src/lib.rs index 497c5e74..3f12153a 100644 --- a/atuin-client/src/lib.rs +++ b/atuin-client/src/lib.rs @@ -13,5 +13,7 @@ pub mod sync; pub mod database; pub mod history; pub mod import; +pub mod kv; pub mod ordering; +pub mod record; pub mod settings; |
