mirror of
https://github.com/atuinsh/atuin.git
synced 2025-02-17 02:40:50 +01:00
* 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>
6 lines
69 B
Rust
6 lines
69 B
Rust
#![forbid(unsafe_code)]
|
|
|
|
pub mod api;
|
|
pub mod record;
|
|
pub mod utils;
|