mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
b9d03f25da
* Refactor remote_externalities::rpc_api * try-runtime-cli: Adde `execute-block` subcommand * Trivial * Address some comments * Use required_if & remove header-at usage * Improve doc * Update comment * small tweaks * add overwrite-code to shared params * Update utils/frame/try-runtime/cli/src/lib.rs Co-authored-by: Peter Goodspeed-Niklaus <coriolinus@users.noreply.github.com> * make url a shared param * add helper for block_at (#9153) * add helper for block_at * remove redundant bound * doc for fn block_at * Update error message Co-authored-by: kianenigma <kian@parity.io> Co-authored-by: Peter Goodspeed-Niklaus <coriolinus@users.noreply.github.com>
37 lines
1.6 KiB
TOML
37 lines
1.6 KiB
TOML
[package]
|
|
name = "try-runtime-cli"
|
|
version = "0.9.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Cli command runtime testing and dry-running"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
log = "0.4.8"
|
|
parity-scale-codec = { version = "2.0.0" }
|
|
serde = "1.0.0"
|
|
structopt = "0.3.8"
|
|
|
|
sc-service = { version = "0.9.0", default-features = false, path = "../../../../client/service" }
|
|
sc-cli = { version = "0.9.0", path = "../../../../client/cli" }
|
|
sc-executor = { version = "0.9.0", path = "../../../../client/executor" }
|
|
sc-client-api = { version = "3.0.0", path = "../../../../client/api" }
|
|
sc-chain-spec = { version = "3.0.0", path = "../../../../client/chain-spec" }
|
|
sp-state-machine = { version = "0.9.0", path = "../../../../primitives/state-machine" }
|
|
sp-api = { version = "3.0.0", path = "../../../../primitives/api" }
|
|
sp-blockchain = { version = "3.0.0", path = "../../../../primitives/blockchain" }
|
|
sp-runtime = { version = "3.0.0", path = "../../../../primitives/runtime" }
|
|
sp-externalities = { version = "0.9.0", path = "../../../../primitives/externalities" }
|
|
sp-core = { version = "3.0.0", path = "../../../../primitives/core" }
|
|
sp-io = { version = "3.0.0", path = "../../../../primitives/io" }
|
|
sp-keystore = { version = "0.9.0", path = "../../../../primitives/keystore" }
|
|
frame-try-runtime = { version = "0.9.0", path = "../../../../frame/try-runtime" }
|
|
|
|
remote-externalities = { version = "0.9.0", path = "../../remote-externalities" }
|