aboutsummaryrefslogtreecommitdiffstats
path: root/atuin-common/Cargo.toml
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2023-06-19 09:02:15 +0100
committerGitHub <noreply@github.com>2023-06-19 09:02:15 +0100
commit9558fec211299fa51f1df72e32e75e4ba0365349 (patch)
tree4a24fef8cf3532fb367fe6ea808f9c865aedad90 /atuin-common/Cargo.toml
parentfix: fixes unix specific impl of shutdown_signal (#1061) (diff)
downloadatuin-9558fec211299fa51f1df72e32e75e4ba0365349.zip
Add RecordIndex data structure (#1059)
* Add RecordIndex data structure This allows us to compare two sets of record stores, and return a list of diffs. With these diffs, we should be able to sync the two stores * Remove server handler, will follow up with this * Make clippy happy * Add tests and docs for diffs in both directions * Update atuin-common/src/record.rs Co-authored-by: Conrad Ludgate <conradludgate@gmail.com> --------- Co-authored-by: Conrad Ludgate <conradludgate@gmail.com>
Diffstat (limited to 'atuin-common/Cargo.toml')
-rw-r--r--atuin-common/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/atuin-common/Cargo.toml b/atuin-common/Cargo.toml
index 918b5b5f..b693a464 100644
--- a/atuin-common/Cargo.toml
+++ b/atuin-common/Cargo.toml
@@ -17,3 +17,4 @@ serde = { workspace = true }
uuid = { workspace = true }
rand = { workspace = true }
typed-builder = { workspace = true }
+pretty_assertions = "1.3.0"