mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 16:17:59 +00:00
14766804c0
* Switch from using the substrate_test_runtime Extrinsic to the polkadot_test_runtime one * Copy genesismap into test-runtime * Add UncheckedExtrinsics * Fix tests :^) * Remove unused functions from genesismap * DRY, clean up * Clean up * Update service/src/grandpa_support.rs Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> * Fix indentation * Update runtime/test-runtime/src/genesismap.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
23 lines
1.1 KiB
TOML
23 lines
1.1 KiB
TOML
[package]
|
|
name = "polkadot-network-test"
|
|
version = "0.8.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
log = "0.4.8"
|
|
parking_lot = "0.10.0"
|
|
futures = "0.3.1"
|
|
rand = "0.7.2"
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-network-test = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
polkadot-test-runtime-client = { path = "../../runtime/test-runtime/client" }
|