mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 04:37:57 +00:00
b8bd49961a
* fix: adds new execution strategy nativeElseWasm and replace nativeWhenPossible with it * feat: adds cmd line params for execution strategies * fix: uses of cmd line execution strategies * chore: remove white spaces * chore: remove println * chore: remove whitespace * fix: generating functions with context * feat: add function to generate with_context declarations * fix: add implementation for with_context function calls * fix: add execution context to call_api_at function * fix: making use of context to select strategy for block_builder * chore: cleaning up * fix: merging issues * fix tests * add wasm files * chore: small doc for context fields * chore: delete redundant docs * fix: use full path for ExecutionContext * fix: add context functions from inside fold_item_impl * chore: remove clone * fix: moving generative function to utils, remove unused imports * fix: add missing full path for ExecutionContext * fix: merge issues * update wasm files * fix: update to keep up with changes in master * chore: remove unused functions, clean up * fix test * fix grumbles * fix: add more tests * fix: some refactorings * feat: add execution strategy to call * chore: small improvements * fix: add message to panic * fix tests
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "substrate-cli"
|
|
version = "0.3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Substrate CLI interface."
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
clap = "~2.32"
|
|
env_logger = "0.6"
|
|
error-chain = "0.12"
|
|
log = "0.4"
|
|
atty = "0.2"
|
|
regex = "1"
|
|
time = "0.1"
|
|
ansi_term = "0.11"
|
|
lazy_static = "1.0"
|
|
app_dirs = "1.2"
|
|
tokio = "0.1.7"
|
|
futures = "0.1.17"
|
|
fdlimit = "0.1"
|
|
exit-future = "0.1"
|
|
sysinfo = "0.8.0"
|
|
panic-handler = { package = "substrate-panic-handler", path = "../../core/panic-handler" }
|
|
client = { package = "substrate-client", path = "../../core/client" }
|
|
network = { package = "substrate-network", path = "../../core/network" }
|
|
runtime_primitives = { package = "sr-primitives", path = "../../core/sr-primitives" }
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives" }
|
|
service = { package = "substrate-service", path = "../../core/service" }
|
|
state-machine = { package = "substrate-state-machine", path = "../../core/state-machine" }
|
|
substrate-telemetry = { path = "../../core/telemetry" }
|
|
names = "0.11.0"
|
|
structopt = "0.2"
|