mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 08:07:58 +00:00
a14d28150d
* Initial inspect. * WiP * Add parsing tests. * Finalize CLI. * Update to latest substrate. * Remove unused imports. * Support ImportParams as well, to get the right pruning setting. * Mention in docs that hash is no 0x. * Move bytes above extrinsics. * Switch to fill helper from sc_cli. * Remove overwrite. * Fix error. * Fix error message. * Remove extra allow. * init_config
18 lines
693 B
TOML
18 lines
693 B
TOML
[package]
|
|
name = "node-inspect"
|
|
version = "0.8.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
derive_more = "0.99"
|
|
log = "0.4.8"
|
|
sc-cli = { version = "0.8.0", path = "../../../client/cli" }
|
|
sc-client-api = { version = "2.0.0", path = "../../../client/api" }
|
|
sc-service = { version = "0.8", default-features = false, path = "../../../client/service" }
|
|
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
|
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
|
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
|
structopt = "0.3.8"
|