mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-07 01:28:07 +00:00
f4ec9b0341
* Companion for substrate#10632 Signed-off-by: koushiro <koushiro.cqx@gmail.com> * cargo format Signed-off-by: koushiro <koushiro.cqx@gmail.com> * Fix bags-list Signed-off-by: koushiro <koushiro.cqx@gmail.com> * Update Substrate * Fix Signed-off-by: koushiro <koushiro.cqx@gmail.com> * Fix bridges test * FMT Co-authored-by: Keith Yeung <kungfukeith11@gmail.com> Co-authored-by: Bastian Köcher <info@kchr.de>
43 lines
1.6 KiB
TOML
43 lines
1.6 KiB
TOML
[package]
|
|
name = "polkadot-test-malus"
|
|
description = "Misbehaving nodes for local testnets, system and Simnet tests."
|
|
license = "GPL-3.0-only"
|
|
version = "0.9.13"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "malus"
|
|
path = "src/malus.rs"
|
|
|
|
[dependencies]
|
|
polkadot-cli = { path = "../../cli", default-features = false, features = ["cli", "malus"] }
|
|
polkadot-node-subsystem = { path = "../subsystem" }
|
|
polkadot-node-subsystem-util = { path = "../subsystem-util" }
|
|
polkadot-node-subsystem-types = { path = "../subsystem-types" }
|
|
polkadot-node-core-dispute-coordinator = { path = "../core/dispute-coordinator" }
|
|
polkadot-node-core-candidate-validation = { path = "../core/candidate-validation" }
|
|
polkadot-node-core-backing = { path = "../core/backing" }
|
|
polkadot-node-primitives = { path = "../primitives" }
|
|
polkadot-primitives = { path = "../../primitives" }
|
|
polkadot-node-core-pvf = { path = "../core/pvf" }
|
|
parity-util-mem = { version = "0.10.0", default-features = false, features = ["jemalloc-global"] }
|
|
color-eyre = { version = "0.5.11", default-features = false }
|
|
assert_matches = "1.5"
|
|
async-trait = "0.1.52"
|
|
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
clap = { version = "3.0", features = ["derive"] }
|
|
futures = "0.3.19"
|
|
futures-timer = "3.0.2"
|
|
tracing = "0.1.26"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dev-dependencies]
|
|
polkadot-node-subsystem-test-helpers = { path = "../subsystem-test-helpers" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
futures = { version = "0.3.19", features = ["thread-pool"] }
|