29 lines
721 B
TOML
29 lines
721 B
TOML
# file: kb-pipeline-demo-scenarios/Cargo.toml
|
|
# version: 2
|
|
|
|
[package]
|
|
name = "kb-pipeline-demo-scenarios"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish.workspace = true
|
|
|
|
[dependencies]
|
|
chrono.workspace = true
|
|
kb-core = { path = "../kb-core" }
|
|
kb-config = { path = "../kb-config" }
|
|
kb-lib = { path = "../kb-lib" }
|
|
kb-onchain-transport = { path = "../kb-onchain-transport" }
|
|
kb-pipeline = { path = "../kb-pipeline" }
|
|
kb-program-ids = { path = "../kb-program-ids" }
|
|
kb-store = { path = "../kb-store" }
|
|
kb-wallet = { path = "../kb-wallet" }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
uuid.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|