mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
8778ca7dc8
* Rename: Phase 1. * Unify codec. * Fixing: Phase 2 * Fixing: Phase 3. * Fixing: Phase 4. * Fixing: Phase 5. * Fixing: Phase 6. * Fixing: Phase 7. * Fixing: Phase 8. Tests * Fixing: Phase 9. Tests!!! * Fixing: Phase 10. Moar tests! * Finally done! * More fixes. * Rename primitives:: to sp_core:: * Apply renames in finality-grandpa. * Fix benches. * Fix benches 2. * Revert node-template. * Fix frame-system in our modules.
32 lines
1.3 KiB
TOML
32 lines
1.3 KiB
TOML
[package]
|
|
name = "node-testing"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Test utilities for Substrate node."
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
pallet-balances = { path = "../../../frame/balances" }
|
|
sc-client = { path = "../../../client/" }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
pallet-contracts = { path = "../../../frame/contracts" }
|
|
pallet-grandpa = { path = "../../../frame/grandpa" }
|
|
pallet-indices = { path = "../../../frame/indices" }
|
|
sp-keyring = { path = "../../../primitives/keyring" }
|
|
node-executor = { path = "../executor" }
|
|
node-primitives = { path = "../primitives" }
|
|
node-runtime = { path = "../runtime" }
|
|
sp-core = { path = "../../../primitives/core" }
|
|
sp-io = { path = "../../../primitives/io" }
|
|
frame-support = { path = "../../../frame/support" }
|
|
pallet-session = { path = "../../../frame/session" }
|
|
sp-runtime = { path = "../../../primitives/runtime" }
|
|
pallet-staking = { path = "../../../frame/staking" }
|
|
sc-executor = { path = "../../../client/executor" }
|
|
frame-system = { path = "../../../frame/system" }
|
|
substrate-test-client = { path = "../../../test-utils/client" }
|
|
pallet-timestamp = { path = "../../../frame/timestamp" }
|
|
pallet-transaction-payment = { path = "../../../frame/transaction-payment" }
|
|
pallet-treasury = { path = "../../../frame/treasury" }
|
|
wabt = "0.9.2"
|