mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
df59596ec0
* moved client code out of primitives * bump ci * Fixup from merge. * Removed unused deps thanks to review feedback * Removing unneeded deps * updating lock file * note about rustfmt * fixed typo to bump ci * Move lonely CacheKeyId to parent * cargo fmt * updating import style * Update docs/STYLE_GUIDE.md Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com> Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>
41 lines
1.6 KiB
TOML
41 lines
1.6 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-support = { path = "../../../frame/support" }
|
|
frame-benchmarking = { path = "../../../frame/benchmarking" }
|
|
pallet-balances = { path = "../../../frame/balances" }
|
|
pallet-sudo = { path = "../../../frame/sudo" }
|
|
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-client-api = { path = "../../../client/api" }
|
|
sc-network = { path = "../../../client/network" }
|
|
sc-informant = { path = "../../../client/informant" }
|
|
sc-consensus = { path = "../../../client/consensus/common" }
|
|
|
|
sp-runtime = { path = "../../../primitives/runtime" }
|
|
sp-keyring = { path = "../../../primitives/keyring" }
|
|
sp-timestamp = { path = "../../../primitives/timestamp" }
|
|
sp-api = { path = "../../../primitives/api" }
|
|
sp-inherents = { path = "../../../primitives/inherents" }
|
|
sp-keystore = { path = "../../../primitives/keystore" }
|
|
|
|
log = "0.4.14"
|