Cargo.toml 4.06 KiB
Newer Older
[package]
name = "polkadot-test-service"
version = "0.8.2"
authors = ["Parity Technologies <[email protected]>"]
edition = "2018"

[dependencies]
futures = "0.3.4"
futures01 = { package = "futures", version = "0.1.29" }
hex = "0.4"
log = "0.4.8"
rand = "0.7.3"
tempfile = "3.1.0"

# Polkadot dependencies
av_store = { package = "polkadot-availability-store", path = "../../availability-store" }
consensus = { package = "polkadot-validation", path = "../../validation" }
polkadot-network = { path = "../../network" }
polkadot-primitives = { path = "../../primitives" }
polkadot-rpc = { path = "../../rpc" }
polkadot-runtime-common = { path = "../../runtime/common" }
polkadot-service = { path = "../../service" }
polkadot-test-runtime = { path = "../../runtime/test-runtime" }

# Substrate dependencies
Tomasz Drwięga's avatar
Tomasz Drwięga committed
authority-discovery = { package = "sc-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sc-informant = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
Tomasz Drwięga's avatar
Tomasz Drwięga committed
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor", default-features = false }
serde_json = "1.0"
tokio = { version = "0.2", features = ["macros"] }