27 lines
575 B
TOML
27 lines
575 B
TOML
# file: kb-onchain-transport/Cargo.toml
|
|
# version: 4
|
|
|
|
[package]
|
|
name = "kb-onchain-transport"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish.workspace = true
|
|
|
|
[dependencies]
|
|
futures-util.workspace = true
|
|
base64.workspace = true
|
|
bs58.workspace = true
|
|
kb-config = { path = "../kb-config" }
|
|
kb-core = { path = "../kb-core" }
|
|
kb-lib = { path = "../kb-lib" }
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
tokio-tungstenite.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|