mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 08:47:57 +00:00
04fcc71809
* primitives/sr-primitives -> primitives/runtime * update
32 lines
1.7 KiB
TOML
32 lines
1.7 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]
|
|
balances = { package = "pallet-balances", path = "../../../frame/balances" }
|
|
client = { package = "sc-client", path = "../../../client/" }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
contracts = { package = "pallet-contracts", path = "../../../frame/contracts" }
|
|
grandpa = { package = "pallet-grandpa", path = "../../../frame/grandpa" }
|
|
indices = { package = "pallet-indices", path = "../../../frame/indices" }
|
|
keyring = { package = "sp-keyring", path = "../../../primitives/keyring" }
|
|
node-executor = { path = "../executor" }
|
|
node-primitives = { path = "../primitives" }
|
|
node-runtime = { path = "../runtime" }
|
|
primitives = { package = "sp-core", path = "../../../primitives/core" }
|
|
runtime-io = { package = "sp-io", path = "../../../primitives/sr-io" }
|
|
runtime_support = { package = "frame-support", path = "../../../frame/support" }
|
|
session = { package = "pallet-session", path = "../../../frame/session" }
|
|
sp-runtime = { path = "../../../primitives/runtime" }
|
|
staking = { package = "pallet-staking", path = "../../../frame/staking" }
|
|
sc-executor = { path = "../../../client/executor" }
|
|
system = { package = "frame-system", path = "../../../frame/system" }
|
|
test-client = { package = "substrate-test-client", path = "../../../test/utils/client" }
|
|
timestamp = { package = "pallet-timestamp", path = "../../../frame/timestamp" }
|
|
transaction-payment = { package = "pallet-transaction-payment", path = "../../../frame/transaction-payment" }
|
|
treasury = { package = "pallet-treasury", path = "../../../frame/treasury" }
|
|
wabt = "0.9.2"
|