24 lines
452 B
TOML
24 lines
452 B
TOML
# file: kb-store/Cargo.toml
|
|
# version: 2
|
|
|
|
[package]
|
|
name = "kb-store"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
chrono.workspace = true
|
|
kb-core = { path = "../kb-core" }
|
|
kb-lib = { path = "../kb-lib" }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sqlx.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|