Files
pezkuwi-subxt/substrate/bin/node/testing/Cargo.toml
T
Tomasz Drwięga 8778ca7dc8 [big refactor] Remove crate aliasing. (#4395)
* 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.
2019-12-16 20:36:49 +08:00

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"