mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 09:57:56 +00:00
7e9b8d278e
Remove unneeded dependencies and dev-dependencies. Made self_destruct test not dependent on wasm bin size. Updated code related to deprecated warning on tracing-subscriber `scope()` ( See https://github.com/tokio-rs/tracing/issues/1429 )
29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[package]
|
|
name = "test-runner-example"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
test-runner = { path = "../../../test-utils/test-runner" }
|
|
|
|
frame-system = { path = "../../../frame/system" }
|
|
frame-benchmarking = { path = "../../../frame/benchmarking" }
|
|
pallet-transaction-payment = { path = "../../../frame/transaction-payment" }
|
|
|
|
node-runtime = { path = "../runtime" }
|
|
node-primitives = { path = "../primitives" }
|
|
node-cli = { path = "../cli" }
|
|
|
|
grandpa = { package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
|
|
sp-consensus-babe = { path = "../../../primitives/consensus/babe" }
|
|
sc-consensus-babe = { path = "../../../client/consensus/babe" }
|
|
sc-consensus-manual-seal = { path = "../../../client/consensus/manual-seal" }
|
|
sc-service = { default-features = false, path = "../../../client/service" }
|
|
sc-executor = { path = "../../../client/executor" }
|
|
sc-consensus = { path = "../../../client/consensus/common" }
|
|
|
|
sp-runtime = { path = "../../../primitives/runtime" }
|
|
sp-keyring = { path = "../../../primitives/keyring" }
|