36 lines
943 B
TOML
36 lines
943 B
TOML
# file: kb-pipeline/Cargo.toml
|
|
# version: 12
|
|
|
|
[package]
|
|
name = "kb-pipeline"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
bs58.workspace = true
|
|
chrono.workspace = true
|
|
futures-util.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-program-ids = { path = "../kb-program-ids" }
|
|
kb-store = { path = "../kb-store" }
|
|
kb-wallet = { path = "../kb-wallet" }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
solana-address-lookup-table-interface.workspace = true
|
|
solana-pubkey.workspace = true
|
|
spl-elgamal-registry-interface.workspace = true
|
|
spl-associated-token-account-interface.workspace = true
|
|
sha2.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
uuid.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|