mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 13:27:57 +00:00
2f31602896
* better apis * .... * ... * Genensis -> UnimportedGenesis * adds rpc for runtime upgrades * simplify test-runner * clean up test-runner api * remove unused imports * fix doc-test * fix line width * correct Node::clean * correct Node::clean * add deny rules * remove unused extern crates * remove mutex from node * Update test-utils/test-runner/Cargo.toml Co-authored-by: Andronik Ordian <write@reusable.software> * adds docs, removes Node::clean Co-authored-by: Andronik Ordian <write@reusable.software> Co-authored-by: Seun Lanlege <seun@parity.io>
55 lines
2.2 KiB
TOML
55 lines
2.2 KiB
TOML
[package]
|
|
name = "test-runner"
|
|
version = "0.9.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
# client deps
|
|
sc-executor = { path = "../../client/executor" }
|
|
sc-service = { path = "../../client/service" }
|
|
sc-informant = { path = "../../client/informant" }
|
|
sc-network = { path = "../../client/network" }
|
|
sc-cli = { path = "../../client/cli" }
|
|
sc-basic-authorship = { path = "../../client/basic-authorship" }
|
|
sc-rpc = { path = "../../client/rpc" }
|
|
sc-transaction-pool = { path = "../../client/transaction-pool" }
|
|
grandpa = { package = "sc-finality-grandpa", path = "../../client/finality-grandpa" }
|
|
sp-consensus-babe = { path = "../../primitives/consensus/babe" }
|
|
sc-consensus-babe = { path = "../../client/consensus/babe" }
|
|
sc-consensus = { path = "../../client/consensus/common" }
|
|
sc-transaction-pool-api = { path = "../../client/transaction-pool/api" }
|
|
sc-client-api = { path = "../../client/api" }
|
|
sc-rpc-server = { path = "../../client/rpc-servers" }
|
|
manual-seal = { package = "sc-consensus-manual-seal", path = "../../client/consensus/manual-seal" }
|
|
|
|
# primitive deps
|
|
sp-core = { path = "../../primitives/core" }
|
|
sp-blockchain = { path = "../../primitives/blockchain" }
|
|
sp-block-builder = { path = "../../primitives/block-builder" }
|
|
sp-api = { path = "../../primitives/api" }
|
|
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
|
|
sp-consensus = { path = "../../primitives/consensus/common" }
|
|
sp-keystore = { path = "../../primitives/keystore" }
|
|
sp-runtime = { path = "../../primitives/runtime" }
|
|
sp-session = { path = "../../primitives/session" }
|
|
sp-offchain = { path = "../../primitives/offchain" }
|
|
sp-inherents = { path = "../../primitives/inherents" }
|
|
sp-keyring = { path = "../../primitives/keyring" }
|
|
|
|
sp-externalities = { path = "../../primitives/externalities" }
|
|
sp-state-machine = { path = "../../primitives/state-machine" }
|
|
sp-wasm-interface = { path = "../../primitives/wasm-interface" }
|
|
sp-runtime-interface = { path = "../../primitives/runtime-interface" }
|
|
|
|
# pallets
|
|
frame-system = { path = "../../frame/system" }
|
|
|
|
log = "0.4.8"
|
|
futures = { package = "futures", version = "0.3", features = ["compat"] }
|
|
tokio = { version = "0.2", features = ["signal"] }
|
|
# Calling RPC
|
|
jsonrpc-core = "15.1"
|
|
num-traits = "0.2.14"
|