mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 20:27:58 +00:00
6f3d1a8143
* The message queue * Make fully generic * Refactor * Docs * Refactor * Use iter not slice * Per-origin queues * Multi-queue processing * Introduce MaxReady * Remove MaxReady in favour of ready ring * Cleanups * ReadyRing and tests * Stale page reaping * from_components -> from_parts Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Move WeightCounter to sp_weights Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add MockedWeightInfo Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Deploy to kitchensink Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use WeightCounter Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Small fixes and logging Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add service_page Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Typo Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Move service_page below service_queue Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add service_message Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use correct weight function Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Overweight execution * Refactor * Missing file * Fix WeightCounter usage in scheduler Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix peek_index Take into account that decoding from a mutable slice modifies it. Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add tests and bench service_page_item Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add debug_info Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add no-progress check to service_queues Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add more benches Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Bound from_message and try_append_message Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add PageReaped event Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Rename BookStateOf and BookStateFor Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update tests and remove logging Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove redundant per-message origins; add footprint() and sweep_queue() * Move testing stuff to mock.rs Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add integration test Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix no-progress check Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix debug_info Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fixup merge and tests Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix footprint tracking * Introduce * Formatting * OverweightEnqueued event, auto-servicing config item * Update tests and benchmarks Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Clippy Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add tests Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Provide change handler * Add missing BookStateFor::insert and call QueueChangeHandler Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Docs Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update benchmarks and weights Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * More tests... Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use weight metering functions Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * weightInfo::process_message_payload is gone Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add defensive_saturating_accrue Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Rename WeightCounter to WeightMeter Ctr+Shift+H should do the trick. Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Test on_initialize Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add module docs Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove origin from MaxMessageLen The message origin is not encoded into the heap and does therefore not influence the max message length anymore. Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add BoundedVec::as_slice Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Test Page::{from_message, try_append_message} Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fixup docs Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Docs * Do nothing in sweep_queue if the queue does not exist ... otherwise it inserts default values into the storage. Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Test ring (un)knitting Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Upgrade stress-test Change the test to not assume that all queued messages will be processed in the next block but split it over multiple. Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * More tests... Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Beauty fixes Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * clippy Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Rename BoundedVec::as_slice to as_bounded_slice Conflicts with deref().as_slice() otherwise. Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix imports Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove ReadyRing struct Was used for testing only. Instead use 'fn assert_ring' which also check the service head and backlinks. Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Beauty fixes Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix stale page watermark Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Cleanup Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix test feature and clippy Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * QueueChanged handler is called correctly Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update benches Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Abstract testing functions Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * More tests Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Cleanup Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Clippy Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * fmt Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Simplify tests Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Make stuff compile Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Extend overweight execution benchmark Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove TODOs Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Test service queue with faulty MessageProcessor Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * fmt Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update pallet ui tests to 1.65 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * More docs Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Review doc fixes Co-authored-by: Robert Klotzner <eskimor@users.noreply.github.com> Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add weight_limit to extrinsic weight of execute_overweight * Correctly return unused weight * Return actual weight consumed in do_execute_overweight * Review fixes Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Set version 7.0.0-dev Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Make it compile Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Switch message_size to u64 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Switch message_count to u64 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix benchmarks Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Make CI green Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Docs * Update tests Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * ".git/.scripts/bench-bot.sh" pallet dev pallet_message_queue * Dont mention README.md in the Cargo.toml Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove reference to readme Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: parity-processbot <> Co-authored-by: Robert Klotzner <eskimor@users.noreply.github.com> Co-authored-by: Keith Yeung <kungfukeith11@gmail.com>
318 lines
16 KiB
TOML
318 lines
16 KiB
TOML
[package]
|
|
name = "kitchensink-runtime"
|
|
version = "3.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Substrate node kitchensink runtime."
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
|
|
# third-party dependencies
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [
|
|
"derive",
|
|
"max-encoded-len",
|
|
] }
|
|
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
|
|
static_assertions = "1.1.0"
|
|
log = { version = "0.4.17", default-features = false }
|
|
|
|
# primitives
|
|
sp-authority-discovery = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/authority-discovery" }
|
|
sp-consensus-babe = { version = "0.10.0-dev", default-features = false, path = "../../../primitives/consensus/babe" }
|
|
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "4.0.0-dev" }
|
|
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/inherents" }
|
|
node-primitives = { version = "2.0.0", default-features = false, path = "../primitives" }
|
|
sp-offchain = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/offchain" }
|
|
sp-core = { version = "7.0.0", default-features = false, path = "../../../primitives/core" }
|
|
sp-std = { version = "5.0.0", default-features = false, path = "../../../primitives/std" }
|
|
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/api" }
|
|
sp-runtime = { version = "7.0.0", default-features = false, path = "../../../primitives/runtime" }
|
|
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/staking" }
|
|
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" }
|
|
sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/transaction-pool" }
|
|
sp-version = { version = "5.0.0", default-features = false, path = "../../../primitives/version" }
|
|
sp-io = { version = "7.0.0", default-features = false, path = "../../../primitives/io" }
|
|
|
|
# frame dependencies
|
|
frame-executive = { version = "4.0.0-dev", default-features = false, path = "../../../frame/executive" }
|
|
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/benchmarking", optional = true }
|
|
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../../frame/support" }
|
|
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system" }
|
|
frame-system-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/benchmarking", optional = true }
|
|
frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../../../frame/election-provider-support" }
|
|
frame-system-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
|
|
frame-try-runtime = { version = "0.10.0-dev", default-features = false, path = "../../../frame/try-runtime", optional = true }
|
|
pallet-alliance = { version = "4.0.0-dev", default-features = false, path = "../../../frame/alliance" }
|
|
pallet-assets = { version = "4.0.0-dev", default-features = false, path = "../../../frame/assets" }
|
|
pallet-authority-discovery = { version = "4.0.0-dev", default-features = false, path = "../../../frame/authority-discovery" }
|
|
pallet-authorship = { version = "4.0.0-dev", default-features = false, path = "../../../frame/authorship" }
|
|
pallet-babe = { version = "4.0.0-dev", default-features = false, path = "../../../frame/babe" }
|
|
pallet-bags-list = { version = "4.0.0-dev", default-features = false, path = "../../../frame/bags-list" }
|
|
pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../../../frame/balances" }
|
|
pallet-bounties = { version = "4.0.0-dev", default-features = false, path = "../../../frame/bounties" }
|
|
pallet-child-bounties = { version = "4.0.0-dev", default-features = false, path = "../../../frame/child-bounties" }
|
|
pallet-collective = { version = "4.0.0-dev", default-features = false, path = "../../../frame/collective" }
|
|
pallet-contracts = { version = "4.0.0-dev", default-features = false, path = "../../../frame/contracts" }
|
|
pallet-contracts-primitives = { version = "7.0.0", default-features = false, path = "../../../frame/contracts/primitives/" }
|
|
pallet-conviction-voting = { version = "4.0.0-dev", default-features = false, path = "../../../frame/conviction-voting" }
|
|
pallet-democracy = { version = "4.0.0-dev", default-features = false, path = "../../../frame/democracy" }
|
|
pallet-election-provider-multi-phase = { version = "4.0.0-dev", default-features = false, path = "../../../frame/election-provider-multi-phase" }
|
|
pallet-election-provider-support-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/election-provider-support/benchmarking", optional = true }
|
|
pallet-elections-phragmen = { version = "5.0.0-dev", default-features = false, path = "../../../frame/elections-phragmen" }
|
|
pallet-fast-unstake = { version = "4.0.0-dev", default-features = false, path = "../../../frame/fast-unstake" }
|
|
pallet-nis = { version = "4.0.0-dev", default-features = false, path = "../../../frame/nis" }
|
|
pallet-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../../frame/grandpa" }
|
|
pallet-im-online = { version = "4.0.0-dev", default-features = false, path = "../../../frame/im-online" }
|
|
pallet-indices = { version = "4.0.0-dev", default-features = false, path = "../../../frame/indices" }
|
|
pallet-identity = { version = "4.0.0-dev", default-features = false, path = "../../../frame/identity" }
|
|
pallet-lottery = { version = "4.0.0-dev", default-features = false, path = "../../../frame/lottery" }
|
|
pallet-membership = { version = "4.0.0-dev", default-features = false, path = "../../../frame/membership" }
|
|
pallet-message-queue = { version = "7.0.0-dev", default-features = false, path = "../../../frame/message-queue" }
|
|
pallet-mmr = { version = "4.0.0-dev", default-features = false, path = "../../../frame/merkle-mountain-range" }
|
|
pallet-multisig = { version = "4.0.0-dev", default-features = false, path = "../../../frame/multisig" }
|
|
pallet-nomination-pools = { version = "1.0.0", default-features = false, path = "../../../frame/nomination-pools"}
|
|
pallet-nomination-pools-benchmarking = { version = "1.0.0", default-features = false, optional = true, path = "../../../frame/nomination-pools/benchmarking" }
|
|
pallet-nomination-pools-runtime-api = { version = "1.0.0-dev", default-features = false, path = "../../../frame/nomination-pools/runtime-api" }
|
|
pallet-offences = { version = "4.0.0-dev", default-features = false, path = "../../../frame/offences" }
|
|
pallet-offences-benchmarking = { version = "4.0.0-dev", path = "../../../frame/offences/benchmarking", default-features = false, optional = true }
|
|
pallet-preimage = { version = "4.0.0-dev", default-features = false, path = "../../../frame/preimage" }
|
|
pallet-proxy = { version = "4.0.0-dev", default-features = false, path = "../../../frame/proxy" }
|
|
pallet-randomness-collective-flip = { version = "4.0.0-dev", default-features = false, path = "../../../frame/randomness-collective-flip" }
|
|
pallet-ranked-collective = { version = "4.0.0-dev", default-features = false, path = "../../../frame/ranked-collective" }
|
|
pallet-recovery = { version = "4.0.0-dev", default-features = false, path = "../../../frame/recovery" }
|
|
pallet-referenda = { version = "4.0.0-dev", default-features = false, path = "../../../frame/referenda" }
|
|
pallet-remark = { version = "4.0.0-dev", default-features = false, path = "../../../frame/remark" }
|
|
pallet-root-testing = { version = "1.0.0-dev", default-features = false, path = "../../../frame/root-testing" }
|
|
pallet-session = { version = "4.0.0-dev", features = [ "historical" ], path = "../../../frame/session", default-features = false }
|
|
pallet-session-benchmarking = { version = "4.0.0-dev", path = "../../../frame/session/benchmarking", default-features = false, optional = true }
|
|
pallet-staking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/staking" }
|
|
pallet-staking-reward-curve = { version = "4.0.0-dev", default-features = false, path = "../../../frame/staking/reward-curve" }
|
|
pallet-state-trie-migration = { version = "4.0.0-dev", default-features = false, path = "../../../frame/state-trie-migration" }
|
|
pallet-scheduler = { version = "4.0.0-dev", default-features = false, path = "../../../frame/scheduler" }
|
|
pallet-society = { version = "4.0.0-dev", default-features = false, path = "../../../frame/society" }
|
|
pallet-sudo = { version = "4.0.0-dev", default-features = false, path = "../../../frame/sudo" }
|
|
pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../frame/timestamp" }
|
|
pallet-tips = { version = "4.0.0-dev", default-features = false, path = "../../../frame/tips" }
|
|
pallet-treasury = { version = "4.0.0-dev", default-features = false, path = "../../../frame/treasury" }
|
|
pallet-utility = { version = "4.0.0-dev", default-features = false, path = "../../../frame/utility" }
|
|
pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment" }
|
|
pallet-transaction-payment-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
|
|
pallet-asset-tx-payment = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment/asset-tx-payment/" }
|
|
pallet-transaction-storage = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-storage" }
|
|
pallet-uniques = { version = "4.0.0-dev", default-features = false, path = "../../../frame/uniques" }
|
|
pallet-vesting = { version = "4.0.0-dev", default-features = false, path = "../../../frame/vesting" }
|
|
pallet-whitelist = { version = "4.0.0-dev", default-features = false, path = "../../../frame/whitelist" }
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { version = "5.0.0-dev", path = "../../../utils/wasm-builder" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
with-tracing = ["frame-executive/with-tracing"]
|
|
std = [
|
|
"pallet-whitelist/std",
|
|
"pallet-offences-benchmarking?/std",
|
|
"pallet-election-provider-support-benchmarking?/std",
|
|
"pallet-asset-tx-payment/std",
|
|
"frame-system-benchmarking?/std",
|
|
"frame-election-provider-support/std",
|
|
"sp-authority-discovery/std",
|
|
"pallet-assets/std",
|
|
"pallet-authority-discovery/std",
|
|
"pallet-authorship/std",
|
|
"sp-consensus-babe/std",
|
|
"pallet-babe/std",
|
|
"pallet-bags-list/std",
|
|
"pallet-balances/std",
|
|
"pallet-bounties/std",
|
|
"sp-block-builder/std",
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"pallet-collective/std",
|
|
"pallet-contracts/std",
|
|
"pallet-contracts-primitives/std",
|
|
"pallet-conviction-voting/std",
|
|
"pallet-democracy/std",
|
|
"pallet-elections-phragmen/std",
|
|
"pallet-fast-unstake/std",
|
|
"frame-executive/std",
|
|
"pallet-nis/std",
|
|
"pallet-grandpa/std",
|
|
"pallet-im-online/std",
|
|
"pallet-indices/std",
|
|
"sp-inherents/std",
|
|
"pallet-lottery/std",
|
|
"pallet-membership/std",
|
|
"pallet-message-queue/std",
|
|
"pallet-mmr/std",
|
|
"pallet-multisig/std",
|
|
"pallet-nomination-pools/std",
|
|
"pallet-nomination-pools-runtime-api/std",
|
|
"pallet-nomination-pools-benchmarking?/std",
|
|
"pallet-identity/std",
|
|
"pallet-scheduler/std",
|
|
"node-primitives/std",
|
|
"sp-offchain/std",
|
|
"pallet-offences/std",
|
|
"pallet-preimage/std",
|
|
"pallet-proxy/std",
|
|
"sp-core/std",
|
|
"pallet-randomness-collective-flip/std",
|
|
"sp-std/std",
|
|
"pallet-session/std",
|
|
"pallet-session-benchmarking?/std",
|
|
"sp-api/std",
|
|
"sp-runtime/std",
|
|
"sp-staking/std",
|
|
"pallet-staking/std",
|
|
"pallet-state-trie-migration/std",
|
|
"sp-session/std",
|
|
"pallet-sudo/std",
|
|
"frame-support/std",
|
|
"frame-benchmarking?/std",
|
|
"frame-system-rpc-runtime-api/std",
|
|
"frame-system/std",
|
|
"pallet-election-provider-multi-phase/std",
|
|
"pallet-timestamp/std",
|
|
"pallet-tips/std",
|
|
"pallet-transaction-payment-rpc-runtime-api/std",
|
|
"pallet-transaction-payment/std",
|
|
"pallet-transaction-storage/std",
|
|
"pallet-treasury/std",
|
|
"sp-transaction-pool/std",
|
|
"pallet-utility/std",
|
|
"sp-version/std",
|
|
"pallet-society/std",
|
|
"pallet-ranked-collective/std",
|
|
"pallet-referenda/std",
|
|
"pallet-remark/std",
|
|
"pallet-root-testing/std",
|
|
"pallet-recovery/std",
|
|
"pallet-uniques/std",
|
|
"pallet-vesting/std",
|
|
"log/std",
|
|
"frame-try-runtime?/std",
|
|
"sp-io/std",
|
|
"pallet-child-bounties/std",
|
|
"pallet-alliance/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"pallet-alliance/runtime-benchmarks",
|
|
"pallet-assets/runtime-benchmarks",
|
|
"pallet-babe/runtime-benchmarks",
|
|
"pallet-bags-list/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-bounties/runtime-benchmarks",
|
|
"pallet-child-bounties/runtime-benchmarks",
|
|
"pallet-collective/runtime-benchmarks",
|
|
"pallet-contracts/runtime-benchmarks",
|
|
"pallet-conviction-voting/runtime-benchmarks",
|
|
"pallet-democracy/runtime-benchmarks",
|
|
"pallet-election-provider-multi-phase/runtime-benchmarks",
|
|
"pallet-election-provider-support-benchmarking/runtime-benchmarks",
|
|
"pallet-elections-phragmen/runtime-benchmarks",
|
|
"pallet-fast-unstake/runtime-benchmarks",
|
|
"pallet-nis/runtime-benchmarks",
|
|
"pallet-grandpa/runtime-benchmarks",
|
|
"pallet-identity/runtime-benchmarks",
|
|
"pallet-im-online/runtime-benchmarks",
|
|
"pallet-indices/runtime-benchmarks",
|
|
"pallet-lottery/runtime-benchmarks",
|
|
"pallet-membership/runtime-benchmarks",
|
|
"pallet-message-queue/runtime-benchmarks",
|
|
"pallet-mmr/runtime-benchmarks",
|
|
"pallet-multisig/runtime-benchmarks",
|
|
"pallet-nomination-pools-benchmarking/runtime-benchmarks",
|
|
"pallet-offences-benchmarking/runtime-benchmarks",
|
|
"pallet-preimage/runtime-benchmarks",
|
|
"pallet-proxy/runtime-benchmarks",
|
|
"pallet-scheduler/runtime-benchmarks",
|
|
"pallet-ranked-collective/runtime-benchmarks",
|
|
"pallet-referenda/runtime-benchmarks",
|
|
"pallet-recovery/runtime-benchmarks",
|
|
"pallet-remark/runtime-benchmarks",
|
|
"pallet-session-benchmarking/runtime-benchmarks",
|
|
"pallet-society/runtime-benchmarks",
|
|
"pallet-staking/runtime-benchmarks",
|
|
"pallet-state-trie-migration/runtime-benchmarks",
|
|
"pallet-timestamp/runtime-benchmarks",
|
|
"pallet-tips/runtime-benchmarks",
|
|
"pallet-transaction-storage/runtime-benchmarks",
|
|
"pallet-treasury/runtime-benchmarks",
|
|
"pallet-utility/runtime-benchmarks",
|
|
"pallet-uniques/runtime-benchmarks",
|
|
"pallet-vesting/runtime-benchmarks",
|
|
"pallet-whitelist/runtime-benchmarks",
|
|
"frame-system-benchmarking/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"frame-try-runtime/try-runtime",
|
|
"frame-executive/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"frame-support/try-runtime",
|
|
"pallet-alliance/try-runtime",
|
|
"pallet-assets/try-runtime",
|
|
"pallet-authority-discovery/try-runtime",
|
|
"pallet-authorship/try-runtime",
|
|
"pallet-babe/try-runtime",
|
|
"pallet-bags-list/try-runtime",
|
|
"pallet-balances/try-runtime",
|
|
"pallet-bounties/try-runtime",
|
|
"pallet-child-bounties/try-runtime",
|
|
"pallet-collective/try-runtime",
|
|
"pallet-contracts/try-runtime",
|
|
"pallet-conviction-voting/try-runtime",
|
|
"pallet-democracy/try-runtime",
|
|
"pallet-election-provider-multi-phase/try-runtime",
|
|
"pallet-elections-phragmen/try-runtime",
|
|
"pallet-fast-unstake/try-runtime",
|
|
"pallet-nis/try-runtime",
|
|
"pallet-grandpa/try-runtime",
|
|
"pallet-im-online/try-runtime",
|
|
"pallet-indices/try-runtime",
|
|
"pallet-identity/try-runtime",
|
|
"pallet-lottery/try-runtime",
|
|
"pallet-membership/try-runtime",
|
|
"pallet-message-queue/try-runtime",
|
|
"pallet-mmr/try-runtime",
|
|
"pallet-multisig/try-runtime",
|
|
"pallet-nomination-pools/try-runtime",
|
|
"pallet-offences/try-runtime",
|
|
"pallet-preimage/try-runtime",
|
|
"pallet-proxy/try-runtime",
|
|
"pallet-randomness-collective-flip/try-runtime",
|
|
"pallet-ranked-collective/try-runtime",
|
|
"pallet-recovery/try-runtime",
|
|
"pallet-referenda/try-runtime",
|
|
"pallet-remark/try-runtime",
|
|
"pallet-root-testing/try-runtime",
|
|
"pallet-session/try-runtime",
|
|
"pallet-staking/try-runtime",
|
|
"pallet-state-trie-migration/try-runtime",
|
|
"pallet-scheduler/try-runtime",
|
|
"pallet-society/try-runtime",
|
|
"pallet-sudo/try-runtime",
|
|
"pallet-timestamp/try-runtime",
|
|
"pallet-tips/try-runtime",
|
|
"pallet-treasury/try-runtime",
|
|
"pallet-utility/try-runtime",
|
|
"pallet-transaction-payment/try-runtime",
|
|
"pallet-asset-tx-payment/try-runtime",
|
|
"pallet-transaction-storage/try-runtime",
|
|
"pallet-uniques/try-runtime",
|
|
"pallet-vesting/try-runtime",
|
|
"pallet-whitelist/try-runtime",
|
|
]
|