From a1433e0cefe3ad001d5473faf4312c25bdeea968 Mon Sep 17 00:00:00 2001 From: Michelle Tilley Date: Tue, 6 May 2025 08:36:32 -0700 Subject: feat: Implement KV as a write-through cache (#2732) --- Cargo.lock | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'Cargo.lock') diff --git a/Cargo.lock b/Cargo.lock index a60cb6ac..d0c51784 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -230,6 +230,7 @@ dependencies = [ "atuin-daemon", "atuin-dotfiles", "atuin-history", + "atuin-kv", "atuin-scripts", "atuin-server", "atuin-server-postgres", @@ -395,6 +396,22 @@ dependencies = [ "unicode-segmentation", ] +[[package]] +name = "atuin-kv" +version = "18.6.0-beta.1" +dependencies = [ + "atuin-client", + "atuin-common", + "eyre", + "pretty_assertions", + "rmp", + "sqlx", + "tokio", + "tracing", + "tracing-subscriber", + "typed-builder", +] + [[package]] name = "atuin-scripts" version = "18.6.0-beta.1" -- cgit v1.3.1