mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 13:27:57 +00:00
3f951cce16
* Begin removing `parity-util-mem`; remove `collect_memory_stats`
* Update some dependencies that were using `parity-util-mem`
* Remove `trie-memory-tracker` feature
* Update Cargo.lock
* Update `kvdb-shared-tests`
* Add back jemalloc
* Add missing license header
* update lockfile for {"substrate"}
Co-authored-by: parity-processbot <>
Co-authored-by: Andronik <write@reusable.software>
45 lines
1.7 KiB
TOML
45 lines
1.7 KiB
TOML
[package]
|
|
name = "polkadot-test-malus"
|
|
description = "Misbehaving nodes for local testnets, system and Simnet tests."
|
|
license = "GPL-3.0-only"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
readme = "README.md"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "malus"
|
|
path = "src/malus.rs"
|
|
|
|
[dependencies]
|
|
polkadot-cli = { path = "../../cli", features = [ "malus", "rococo-native", "kusama-native", "westend-native", "polkadot-native" ] }
|
|
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" }
|
|
color-eyre = { version = "0.6.1", default-features = false }
|
|
assert_matches = "1.5"
|
|
async-trait = "0.1.57"
|
|
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
clap = { version = "4.0.9", features = ["derive"] }
|
|
futures = "0.3.21"
|
|
futures-timer = "3.0.2"
|
|
gum = { package = "tracing-gum", path = "../gum/" }
|
|
erasure = { package = "polkadot-erasure-coding", path = "../../erasure-coding" }
|
|
rand = "0.8.5"
|
|
|
|
[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.21", features = ["thread-pool"] }
|