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 /crates/atuin-kv/Cargo.toml | |
| 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 'crates/atuin-kv/Cargo.toml')
| -rw-r--r-- | crates/atuin-kv/Cargo.toml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/crates/atuin-kv/Cargo.toml b/crates/atuin-kv/Cargo.toml new file mode 100644 index 00000000..ec4f9228 --- /dev/null +++ b/crates/atuin-kv/Cargo.toml @@ -0,0 +1,27 @@ +[package] +name = "atuin-kv" +edition = "2024" +version = { workspace = true } +description = "The kv crate for Atuin" + +authors.workspace = true +rust-version.workspace = true +license.workspace = true +homepage.workspace = true +repository.workspace = true +readme.workspace = true + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +atuin-client = { path = "../atuin-client", version = "18.6.0-beta.1" } +atuin-common = { path = "../atuin-common", version = "18.6.0-beta.1" } + +tracing = { workspace = true } +tracing-subscriber = { workspace = true } +rmp = { version = "0.8.14" } +eyre = { workspace = true } +tokio = { workspace = true } +typed-builder = { workspace = true } +pretty_assertions = { workspace = true } +sqlx = { workspace = true } |
