28 lines
603 B
TOML
28 lines
603 B
TOML
# file: kb_rpc/Cargo.toml
|
|
# version: 5
|
|
|
|
[package]
|
|
name = "kb_rpc"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish.workspace = true
|
|
|
|
[dependencies]
|
|
base64.workspace = true
|
|
bs58.workspace = true
|
|
kb_config = { path = "../kb_config" }
|
|
kb_core = { path = "../kb_core" }
|
|
kb_execution_api = { path = "../kb_execution_api" }
|
|
kb_model = { path = "../kb_model" }
|
|
futures-util.workspace = true
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
tokio-tungstenite.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|