Skip to content

Commit 83c5606

Browse files
committedJun 23, 2024
remove taplo in favor of zepter
1 parent 7c334fb commit 83c5606

File tree

46 files changed

+1045
-704
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1045
-704
lines changed
 

‎.github/workflows/static-analysis.yml

-9
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,6 @@ jobs:
2424
- name: Check fmt
2525
run: cargo fmt -- --check
2626

27-
- name: Check Cargo.toml format
28-
run: |
29-
if taplo --version &> /dev/null; then
30-
echo "taplo-cli is already installed"
31-
else
32-
cargo install taplo-cli
33-
fi
34-
taplo fmt --check
35-
3627
clippy:
3728
if: github.event.pull_request.draft == false
3829
runs-on: [self-hosted, Linux, X64]

‎bin/collator/Cargo.toml

+41-11
Original file line numberDiff line numberDiff line change
@@ -154,28 +154,58 @@ sc-service = { workspace = true, optional = true }
154154
substrate-build-script-utils = { workspace = true }
155155

156156
[features]
157-
default = ["sc-cli", "polkadot-cli", "sc-service", "sc-service/rocksdb"]
157+
default = [ "polkadot-cli", "sc-cli", "sc-service", "sc-service/rocksdb" ]
158158
runtime-benchmarks = [
159+
"astar-primitives/runtime-benchmarks",
160+
"astar-runtime/runtime-benchmarks",
159161
"frame-benchmarking-cli",
162+
"frame-benchmarking-cli?/runtime-benchmarks",
163+
"frame-benchmarking/runtime-benchmarks",
164+
"frame-system/runtime-benchmarks",
160165
"local-runtime/runtime-benchmarks",
161-
"shibuya-runtime/runtime-benchmarks",
162-
"shiden-runtime/runtime-benchmarks",
163-
"astar-runtime/runtime-benchmarks",
166+
"pallet-ethereum/runtime-benchmarks",
167+
"pallet-evm/runtime-benchmarks",
164168
"polkadot-cli/runtime-benchmarks",
169+
"polkadot-parachain/runtime-benchmarks",
170+
"polkadot-primitives/runtime-benchmarks",
171+
"polkadot-runtime-common",
165172
"polkadot-runtime-common/std",
173+
"polkadot-runtime-common?/runtime-benchmarks",
174+
"polkadot-service/runtime-benchmarks",
175+
"sc-client-db/runtime-benchmarks",
176+
"sc-service/runtime-benchmarks",
177+
"shibuya-runtime/runtime-benchmarks",
178+
"shiden-runtime/runtime-benchmarks",
166179
"sp-keyring",
167-
"polkadot-runtime-common",
168-
"astar-primitives/runtime-benchmarks",
180+
"sp-runtime/runtime-benchmarks",
181+
]
182+
cli = [ "try-runtime-cli" ]
183+
try-runtime = [
184+
"astar-primitives/try-runtime",
185+
"astar-runtime/try-runtime",
186+
"frame-system/try-runtime",
187+
"frame-try-runtime/try-runtime",
188+
"local-runtime/try-runtime",
189+
"pallet-ethereum/try-runtime",
190+
"pallet-evm/try-runtime",
191+
"pallet-transaction-payment/try-runtime",
192+
"polkadot-cli?/try-runtime",
193+
"polkadot-runtime-common?/try-runtime",
194+
"polkadot-service/try-runtime",
195+
"shibuya-runtime/try-runtime",
196+
"shiden-runtime/try-runtime",
197+
"sp-runtime/try-runtime",
198+
"try-runtime-cli/try-runtime",
169199
]
170-
cli = ["try-runtime-cli"]
171-
try-runtime = ["local-runtime/try-runtime", "try-runtime-cli/try-runtime"]
172200
evm-tracing = [
201+
"astar-runtime/evm-tracing",
202+
"local-runtime/evm-tracing",
173203
"moonbeam-rpc-debug",
174204
"moonbeam-rpc-primitives-debug",
175205
"moonbeam-rpc-primitives-txpool",
176206
"moonbeam-rpc-trace",
177207
"moonbeam-rpc-txpool",
208+
"shibuya-runtime/evm-tracing",
209+
"shiden-runtime/evm-tracing",
178210
]
179-
manual-seal = [
180-
"sc-consensus-manual-seal",
181-
]
211+
manual-seal = [ "sc-consensus-manual-seal" ]

0 commit comments

Comments
 (0)