mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 04:37:57 +00:00
8f3317d056
* Update scale codec to latest version to fix bug in future rustc version Companion of: https://github.com/paritytech/substrate/pull/6746 * 'Update substrate' Co-authored-by: parity-processbot <>
30 lines
1.5 KiB
TOML
30 lines
1.5 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]
|
|
futures = "0.3.1"
|
|
codec = { package = "parity-scale-codec", version = "1.3.4" }
|
|
|
|
# Polkadot dependencies
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
polkadot-runtime-common = { path = "../../common" }
|
|
polkadot-test-runtime = { path = ".." }
|
|
polkadot-test-service = { path = "../../../node/test-service" }
|
|
|
|
# Substrate dependencies
|
|
pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-light = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["test-helpers"], default-features = false }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
|