Files
pezkuwi-subxt/substrate/bin/node/test-runner-example/Cargo.toml
T
Seun Lanlege 1cb3590f49 Clean test runner up (#8485)
* bump scale-codec in test runner

* refactor config

* Update test-utils/test-runner/Cargo.toml

Co-authored-by: Andronik Ordian <write@reusable.software>

* bump cargo.lock

* add reasonable defaults

Co-authored-by: Andronik Ordian <write@reusable.software>
2021-04-07 14:54:31 +02:00

40 lines
2.0 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", version = "0.9.0" }
frame-system = { version = "3.0.0", path = "../../../frame/system" }
frame-support = { path = "../../../frame/support", version = "3.0.0" }
frame-benchmarking = { path = "../../../frame/benchmarking", version = "3.0.0" }
pallet-balances = { path = "../../../frame/balances", version = "3.0.0" }
pallet-sudo = { path = "../../../frame/sudo", version = "3.0.0" }
pallet-transaction-payment = { version = "3.0.0", path = "../../../frame/transaction-payment" }
node-runtime = { path = "../runtime", version = "2.0.1" }
node-primitives = { version = "2.0.0", path = "../primitives" }
node-cli = { path = "../cli", version = "2.0.0" }
grandpa = { version = "0.9.0", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
sp-consensus-babe = { version = "0.9.0", path = "../../../primitives/consensus/babe" }
sc-consensus-babe = { version = "0.9.0", path = "../../../client/consensus/babe" }
sc-consensus-manual-seal = { version = "0.9.0", path = "../../../client/consensus/manual-seal" }
sc-service = { version = "0.9.0", default-features = false, path = "../../../client/service" }
sc-executor = { version = "0.9.0", path = "../../../client/executor" }
sc-client-api = { version = "3.0.0", path = "../../../client/api" }
sc-network = { version = "0.9.0", path = "../../../client/network" }
sc-informant = { version = "0.9.0", path = "../../../client/informant" }
sc-consensus = { version = "0.9.0", path = "../../../client/consensus/common" }
sp-runtime = { path = "../../../primitives/runtime", version = "3.0.0" }
sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" }
sp-api = { version = "3.0.0", path = "../../../primitives/api" }
sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" }
sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" }
log = "0.4.14"