27 lines
575 B
TOML
27 lines
575 B
TOML
# file: ks-onchain-transport/Cargo.toml
|
|
# version: 5
|
|
|
|
[package]
|
|
name = "ks-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
|
|
ks-config = { path = "../ks-config" }
|
|
ks-core = { path = "../ks-core" }
|
|
ks-lib = { path = "../ks-lib" }
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
tokio-tungstenite.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|