mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-20 16:21:02 +00:00
cc8b861271
* rename: MsgFilter -> MessageInterceptor * feat: add dispute metrics * fixup * test fixins * fix metrics * dummysubsystem export and trait fn fix * chore: fmt * undo unwanted changes * foo * pfmt * fixup * fixup * revert * some more * Update node/malus/Cargo.toml Co-authored-by: Andronik Ordian <write@reusable.software> * Update node/core/dispute-coordinator/src/metrics.rs Co-authored-by: Andronik Ordian <write@reusable.software> * Update node/core/dispute-coordinator/src/metrics.rs Co-authored-by: Andronik Ordian <write@reusable.software> * Update node/core/dispute-coordinator/src/metrics.rs Co-authored-by: Andronik Ordian <write@reusable.software> * add license header * fix lockfile * new with opts * fmt * Update node/core/dispute-coordinator/src/metrics.rs * feature gate Co-authored-by: Andronik Ordian <write@reusable.software>
35 lines
1.2 KiB
TOML
35 lines
1.2 KiB
TOML
[lib]
|
|
name = "malus"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "malus-variant-a"
|
|
path = "src/variant-a.rs"
|
|
|
|
[package]
|
|
name = "polkadot-test-malus"
|
|
description = "Misbehaving nodes for local testnets, system and Simnet tests."
|
|
license = "GPL-3.0-only"
|
|
version = "0.9.9"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
publish = false
|
|
|
|
[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-core-candidate-validation = { path = "../core/candidate-validation" }
|
|
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"
|
|
structopt = "0.3.23"
|
|
async-trait = "0.1.51"
|
|
|
|
[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.17", features = ["thread-pool"] }
|