diff options
| author | Michelle Tilley <michelle@michelletilley.net> | 2025-05-06 08:36:32 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-06 08:36:32 -0700 |
| commit | a1433e0cefe3ad001d5473faf4312c25bdeea968 (patch) | |
| tree | ee8bc10e1438641338b8ef7f5de00a52e6c7f074 /Cargo.lock | |
| parent | chore(deps): update minspan to 0.1.5 (#2729) (diff) | |
| download | atuin-a1433e0cefe3ad001d5473faf4312c25bdeea968.zip | |
feat: Implement KV as a write-through cache (#2732)
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -230,6 +230,7 @@ dependencies = [ "atuin-daemon", "atuin-dotfiles", "atuin-history", + "atuin-kv", "atuin-scripts", "atuin-server", "atuin-server-postgres", @@ -396,6 +397,22 @@ dependencies = [ ] [[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" dependencies = [ |
