Files
pezkuwi-subxt/substrate/bin/node/testing/Cargo.toml
T
Jon Häggblad acef22bbd2 Migrate pallet-grandpa to attribute macros (#8724)
* frame/grandpa: migrate Config

* frame/grandpa: migrate decl_module

* frame/grandpa: migrate decl_event

* frame/grandpa: migrate decl_error

* frame/grandpa: migrate decl_storage

* frame/grandpa: make report_equivocation_unsigned pub(super)

* frame/grandpa: remove unused imports

* frame/grandpa: replace deprecated Module with Pallet

* frame/grandpa: add RawEvent for compatibility

* frame/grandpa: create migration to new storage prefix

* frame/grandpa: bump version to 4.0.0

* frame/grandpa: address review comments

* Try using version 3.1 instead

* frame/grandpa: tweak log text to say cancelled
2021-05-26 16:26:15 +00:00

56 lines
3.0 KiB
TOML

[package]
name = "node-testing"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Test utilities for Substrate node."
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
publish = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
pallet-balances = { version = "3.0.0", path = "../../../frame/balances" }
sc-service = { version = "0.9.0", features = ["test-helpers", "db"], path = "../../../client/service" }
sc-client-db = { version = "0.9.0", path = "../../../client/db/", features = ["kvdb-rocksdb", "parity-db"] }
sc-client-api = { version = "3.0.0", path = "../../../client/api/" }
codec = { package = "parity-scale-codec", version = "2.0.0" }
pallet-contracts = { version = "3.0.0", path = "../../../frame/contracts" }
pallet-grandpa = { version = "3.1.0", path = "../../../frame/grandpa" }
pallet-indices = { version = "3.0.0", path = "../../../frame/indices" }
sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" }
node-executor = { version = "2.0.0", path = "../executor" }
node-primitives = { version = "2.0.0", path = "../primitives" }
node-runtime = { version = "2.0.0", path = "../runtime" }
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
sp-io = { version = "3.0.0", path = "../../../primitives/io" }
frame-support = { version = "3.0.0", path = "../../../frame/support" }
pallet-session = { version = "3.0.0", path = "../../../frame/session" }
pallet-society = { version = "3.0.0", path = "../../../frame/society" }
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
pallet-staking = { version = "3.0.0", path = "../../../frame/staking" }
sc-executor = { version = "0.9.0", path = "../../../client/executor", features = ["wasmtime"] }
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
frame-system = { version = "3.0.0", path = "../../../frame/system" }
substrate-test-client = { version = "2.0.0", path = "../../../test-utils/client" }
pallet-timestamp = { version = "3.0.0", path = "../../../frame/timestamp" }
pallet-transaction-payment = { version = "3.0.0", path = "../../../frame/transaction-payment" }
pallet-treasury = { version = "3.0.0", path = "../../../frame/treasury" }
sp-api = { version = "3.0.0", path = "../../../primitives/api" }
sp-timestamp = { version = "3.0.0", default-features = false, path = "../../../primitives/timestamp" }
sp-block-builder = { version = "3.0.0", path = "../../../primitives/block-builder" }
sc-block-builder = { version = "0.9.0", path = "../../../client/block-builder" }
sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" }
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
log = "0.4.8"
tempfile = "3.1.0"
fs_extra = "1"
futures = "0.3.1"
[dev-dependencies]
criterion = "0.3.0"
sc-cli = { version = "0.9.0", path = "../../../client/cli" }