blob: e41c7b47349e6f8bb26cf23950f16138790366c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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.11.0" }
atuin-common = { path = "../atuin-common", version = "18.11.0" }
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 }
|