mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 08:07:58 +00:00
3717ec3802
Related https://github.com/paritytech/polkadot-sdk/issues/3032 --- Using https://github.com/liamaharon/cargo-workspace-version-tools/ `cargo run -- sync --path ../polkadot-sdk` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
25 lines
823 B
TOML
25 lines
823 B
TOML
[package]
|
|
name = "cumulus-client-cli"
|
|
version = "0.7.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Parachain node CLI utilities."
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
clap = { version = "4.4.18", features = ["derive"] }
|
|
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
|
url = "2.4.0"
|
|
|
|
# Substrate
|
|
sc-cli = { path = "../../../substrate/client/cli" }
|
|
sc-client-api = { path = "../../../substrate/client/api" }
|
|
sc-chain-spec = { path = "../../../substrate/client/chain-spec" }
|
|
sc-service = { path = "../../../substrate/client/service" }
|
|
sp-core = { path = "../../../substrate/primitives/core" }
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime" }
|
|
sp-blockchain = { path = "../../../substrate/primitives/blockchain" }
|