23 lines
418 B
TOML
23 lines
418 B
TOML
# file: kb_app_cli/Cargo.toml
|
|
# version: 2
|
|
|
|
[package]
|
|
name = "kb_app_cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish.workspace = true
|
|
|
|
[[bin]]
|
|
name = "kb_app_cli"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
kb_core = { path = "../kb_core" }
|
|
kb_model = { path = "../kb_model" }
|
|
kb_pipeline = { path = "../kb_pipeline" }
|
|
kb_logging = { path = "../kb_logging" }
|
|
|
|
[lints]
|
|
workspace = true
|