18 lines
342 B
TOML
18 lines
342 B
TOML
# file: kb_store_sqlite/Cargo.toml
|
|
# version: 1
|
|
|
|
[package]
|
|
name = "kb_store_sqlite"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish.workspace = true
|
|
|
|
[dependencies]
|
|
kb_core = { path = "../kb_core" }
|
|
kb_model = { path = "../kb_model" }
|
|
kb_store_core = { path = "../kb_store_core" }
|
|
|
|
[lints]
|
|
workspace = true
|