blob: 97f180d8e6b9f58ddba012c6373966a96dd7ed39 (
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.13.6" }
atuin-common = { path = "../atuin-common", version = "18.13.6" }
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 }
|