mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 06:37:56 +00:00
a4fa71ed17
Fixes #833
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.0.0" }
|
|
|
|
# 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" }
|