Files
pezkuwi-subxt/substrate/test-utils/test-runner/Cargo.toml
T
Arkadiy Paronyan f56232602f Warp sync part I (#9227)
* Started warp sync

* BABE & GRANDPA recovery

* Warp sync protocol

* Sync warp proofs first

* Added basic documentation

* Apply suggestions from code review

Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>

* Style changes

* Apply suggestions from code review

Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>

* fmt

* Apply suggestions from code review

Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>

* Fixed chage trie pruning wrt missing blocks

* Restore parent finalization

* fmt

* fmt

* Revert pwasm-utils bump

* Change error type & check API version

* Apply suggestions from code review

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>

* Build fix

* Fixed target block check

* Formatting

Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>
Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
2021-08-02 08:27:18 +00:00

56 lines
2.3 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-finality-grandpa = { path = "../../primitives/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"