mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 19:47: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-test-runtime-client"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
polkadot-test-runtime = { path = ".." }
|
|
polkadot-runtime-common = { path = "../../common" }
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
futures = "0.3.1"
|