Skip to content

Commit

Permalink
rerun zepter without deps sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
ermalkaleci committed Jun 23, 2024
1 parent f13967c commit 071b3fd
Show file tree
Hide file tree
Showing 36 changed files with 403 additions and 19 deletions.
32 changes: 31 additions & 1 deletion bin/collator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,37 @@ runtime-benchmarks = [
"sp-keyring",
"polkadot-runtime-common",
"astar-primitives/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"frame-benchmarking-cli?/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"pallet-ethereum/runtime-benchmarks",
"pallet-evm/runtime-benchmarks",
"polkadot-parachain/runtime-benchmarks",
"polkadot-primitives/runtime-benchmarks",
"polkadot-runtime-common?/runtime-benchmarks",
"polkadot-service/runtime-benchmarks",
"sc-client-db/runtime-benchmarks",
"sc-service/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
cli = ["try-runtime-cli"]
try-runtime = ["local-runtime/try-runtime", "try-runtime-cli/try-runtime"]
try-runtime = [
"local-runtime/try-runtime",
"try-runtime-cli/try-runtime",
"astar-primitives/try-runtime",
"astar-runtime/try-runtime",
"frame-system/try-runtime",
"frame-try-runtime/try-runtime",
"pallet-ethereum/try-runtime",
"pallet-evm/try-runtime",
"pallet-transaction-payment/try-runtime",
"polkadot-cli?/try-runtime",
"polkadot-runtime-common?/try-runtime",
"polkadot-service/try-runtime",
"shibuya-runtime/try-runtime",
"shiden-runtime/try-runtime",
"sp-runtime/try-runtime",
]
evm-tracing = [
"moonbeam-rpc-debug",
"moonbeam-rpc-primitives-debug",
Expand All @@ -177,5 +205,7 @@ evm-tracing = [
"moonbeam-rpc-txpool",
"shibuya-runtime/evm-tracing",
"shiden-runtime/evm-tracing",
"astar-runtime/evm-tracing",
"local-runtime/evm-tracing",
]
manual-seal = ["sc-consensus-manual-seal"]
17 changes: 15 additions & 2 deletions chain-extensions/pallet-assets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,19 @@ std = [
"pallet-assets/std",
"assets-chain-extension-types/std",
"pallet-balances/std",
"log/std",
]
try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
"pallet-assets/try-runtime",
"pallet-contracts/try-runtime",
"sp-runtime/try-runtime",
]
runtime-benchmarks = [
"pallet-assets/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"pallet-contracts/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
try-runtime = ["frame-support/try-runtime"]
runtime-benchmarks = ["pallet-assets/runtime-benchmarks"]
1 change: 1 addition & 0 deletions chain-extensions/unified-accounts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,5 @@ std = [
"astar-primitives/std",
"pallet-unified-accounts/std",
"unified-accounts-chain-extension-types/std",
"log/std",
]
2 changes: 2 additions & 0 deletions chain-extensions/xvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,6 @@ std = [
"sp-runtime/std",
# Astar
"astar-primitives/std",
"log/std",
"xvm-chain-extension-types/std",
]
14 changes: 13 additions & 1 deletion pallets/astar-xcm-benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,18 @@ std = [
"sp-std/std",
"sp-runtime/std",
"xcm/std",
"log/std",
"scale-info/std",
"serde?/std",
"xcm-executor/std",
]

try-runtime = ["frame-support/try-runtime"]
try-runtime = [
"frame-support/try-runtime",
"astar-primitives/try-runtime",
"frame-system/try-runtime",
"sp-runtime/try-runtime",
]

runtime-benchmarks = [
"frame-benchmarking",
Expand All @@ -64,4 +73,7 @@ runtime-benchmarks = [
"pallet-xcm-benchmarks/runtime-benchmarks",
"parity-scale-codec",
"xcm-executor/runtime-benchmarks",
"astar-primitives/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
12 changes: 11 additions & 1 deletion pallets/collator-selection/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ runtime-benchmarks = [
"frame-benchmarking",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"sp-staking/runtime-benchmarks",
]
std = [
"parity-scale-codec/std",
Expand All @@ -60,6 +63,13 @@ std = [
"pallet-session/std",
"pallet-aura/std",
"pallet-balances/std",
"serde/std",
]

try-runtime = ["frame-support/try-runtime"]
try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
"pallet-authorship/try-runtime",
"pallet-session/try-runtime",
"sp-runtime/try-runtime",
]
10 changes: 9 additions & 1 deletion pallets/dapp-staking-migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ std = [
"astar-primitives/std",
"sp-core/std",
"pallet-balances/std",
"sp-runtime/std",
]
runtime-benchmarks = [
"frame-benchmarking",
Expand All @@ -50,5 +51,12 @@ runtime-benchmarks = [
"sp-runtime/runtime-benchmarks",
"pallet-dapp-staking-v3/runtime-benchmarks",
"astar-primitives/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
]
try-runtime = [
"frame-support/try-runtime",
"astar-primitives/try-runtime",
"frame-system/try-runtime",
"pallet-dapp-staking-v3/try-runtime",
"sp-runtime/try-runtime",
]
try-runtime = ["frame-support/try-runtime"]
8 changes: 7 additions & 1 deletion pallets/dapp-staking-v3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,11 @@ runtime-benchmarks = [
"sp-runtime/runtime-benchmarks",
"astar-primitives/runtime-benchmarks",
"assert_matches",
"frame-benchmarking/runtime-benchmarks",
]
try-runtime = [
"frame-support/try-runtime",
"astar-primitives/try-runtime",
"frame-system/try-runtime",
"sp-runtime/try-runtime",
]
try-runtime = ["frame-support/try-runtime"]
2 changes: 2 additions & 0 deletions pallets/dynamic-evm-base-fee/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,11 @@ runtime-benchmarks = [
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
]
try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
"pallet-transaction-payment/try-runtime",
"sp-runtime/try-runtime",
]
11 changes: 10 additions & 1 deletion pallets/ethereum-checked/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ std = [
"pallet-evm/std",
"pallet-ethereum/std",
"astar-primitives/std",
"frame-benchmarking?/std",
]
runtime-benchmarks = [
"hex",
Expand All @@ -64,5 +65,13 @@ runtime-benchmarks = [
"sp-runtime/runtime-benchmarks",
"pallet-ethereum/runtime-benchmarks",
"astar-primitives/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"pallet-evm/runtime-benchmarks",
]
try-runtime = [
"frame-support/try-runtime",
"astar-primitives/try-runtime",
"frame-system/try-runtime",
"pallet-evm/try-runtime",
"sp-runtime/try-runtime",
]
try-runtime = ["frame-support/try-runtime"]
10 changes: 9 additions & 1 deletion pallets/inflation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,20 @@ std = [
"frame-system/std",
"pallet-balances/std",
"astar-primitives/std",
"frame-benchmarking?/std",
"sp-runtime/std",
]
runtime-benchmarks = [
"frame-benchmarking",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"astar-primitives/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
]
try-runtime = [
"frame-support/try-runtime",
"astar-primitives/try-runtime",
"frame-system/try-runtime",
"sp-runtime/try-runtime",
]
try-runtime = ["frame-support/try-runtime"]
11 changes: 10 additions & 1 deletion pallets/oracle-benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,21 @@ std = [
"sp-arithmetic/std",
"orml-traits/std",
"orml-oracle/std",
"frame-benchmarking?/std",
"sp-runtime/std",
]
runtime-benchmarks = [
"frame-benchmarking",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"astar-primitives/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
]
try-runtime = [
"frame-support/try-runtime",
"astar-primitives/try-runtime",
"frame-system/try-runtime",
"orml-oracle/try-runtime",
"sp-runtime/try-runtime",
]
try-runtime = ["frame-support/try-runtime"]
10 changes: 9 additions & 1 deletion pallets/price-aggregator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,20 @@ std = [
"astar-primitives/std",
"sp-arithmetic/std",
"orml-traits/std",
"frame-benchmarking?/std",
"sp-runtime/std",
]
runtime-benchmarks = [
"frame-benchmarking",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"astar-primitives/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
]
try-runtime = [
"frame-support/try-runtime",
"astar-primitives/try-runtime",
"frame-system/try-runtime",
"sp-runtime/try-runtime",
]
try-runtime = ["frame-support/try-runtime"]
10 changes: 9 additions & 1 deletion pallets/static-price-provider/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,20 @@ std = [
"pallet-balances/std",
"astar-primitives/std",
"sp-arithmetic/std",
"frame-benchmarking?/std",
"sp-runtime/std",
]
runtime-benchmarks = [
"frame-benchmarking",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"astar-primitives/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
]
try-runtime = [
"frame-support/try-runtime",
"astar-primitives/try-runtime",
"frame-system/try-runtime",
"sp-runtime/try-runtime",
]
try-runtime = ["frame-support/try-runtime"]
10 changes: 9 additions & 1 deletion pallets/unified-accounts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ std = [
"pallet-balances/std",
"pallet-timestamp/std",
"pallet-ethereum/std",
"frame-benchmarking?/std",
]
runtime-benchmarks = [
"libsecp256k1/hmac",
Expand All @@ -72,5 +73,12 @@ runtime-benchmarks = [
"astar-primitives/runtime-benchmarks",
"pallet-ethereum/runtime-benchmarks",
"pallet-evm/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
]
try-runtime = [
"frame-support/try-runtime",
"pallet-evm/try-runtime",
"astar-primitives/try-runtime",
"frame-system/try-runtime",
"sp-runtime/try-runtime",
]
try-runtime = ["frame-support/try-runtime", "pallet-evm/try-runtime"]
12 changes: 11 additions & 1 deletion pallets/xc-asset-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,19 @@ std = [
"xcm/std",
"pallet-balances/std",
"frame-benchmarking?/std",
"log/std",
"serde?/std",
]

runtime-benchmarks = [
"frame-benchmarking",
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
"sp-runtime/try-runtime",
]
try-runtime = ["frame-support/try-runtime"]
12 changes: 12 additions & 0 deletions pallets/xvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,25 @@ std = [
"sp-runtime/std",
"sp-std/std",
"astar-primitives/std",
"frame-benchmarking?/std",
"serde?/std",
]

runtime-benchmarks = [
"frame-benchmarking",
"astar-primitives/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"pallet-contracts/runtime-benchmarks",
"pallet-evm/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
try-runtime = [
"frame-support/try-runtime",
"pallet-contracts/try-runtime",
"pallet-evm/try-runtime",
"astar-primitives/try-runtime",
"frame-system/try-runtime",
"sp-runtime/try-runtime",
]
11 changes: 10 additions & 1 deletion precompiles/assets-erc20/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,14 @@ std = [
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
"log/std",
"num_enum/std",
]
runtime-benchmarks = [
"pallet-assets/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"pallet-balances/runtime-benchmarks",
"pallet-evm/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
runtime-benchmarks = ["pallet-assets/runtime-benchmarks"]
11 changes: 10 additions & 1 deletion precompiles/dapp-staking-v3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,14 @@ std = [
"precompile-utils/std",
"pallet-balances/std",
"sp-arithmetic/std",
"log/std",
"num_enum/std",
]
runtime-benchmarks = [
"pallet-dapp-staking-v3/runtime-benchmarks",
"astar-primitives/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"pallet-evm/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
runtime-benchmarks = ["pallet-dapp-staking-v3/runtime-benchmarks"]
Loading

0 comments on commit 071b3fd

Please sign in to comment.