19 lines
366 B
TOML
19 lines
366 B
TOML
# file: kb_worker/Cargo.toml
|
|
# version: 1
|
|
|
|
[package]
|
|
name = "kb_worker"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish.workspace = true
|
|
|
|
[dependencies]
|
|
kb_core = { path = "../kb_core" }
|
|
kb_logging = { path = "../kb_logging" }
|
|
kb_model = { path = "../kb_model" }
|
|
kb_pipeline = { path = "../kb_pipeline" }
|
|
|
|
[lints]
|
|
workspace = true
|