-
Notifications
You must be signed in to change notification settings - Fork 45
/
Cargo.toml
600 lines (593 loc) · 53.3 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
[workspace.package]
authors = ["Mangata Team"]
edition = "2018"
repository = "https://github.com/mangata-finance/mangata-node.git"
[profile.dev]
split-debuginfo = "unpacked"
[profile.release]
panic = 'unwind'
[profile.production]
inherits = "release"
lto = true
codegen-units = 1
[workspace]
resolver = "2"
members = [
'node',
'pallets/*',
'rpc/nonce',
'runtime/common',
'runtime/mangata-kusama',
'runtime/mangata-rococo',
'runtime/integration-test',
]
# `orml/develop` & `crowdloan/develop` points to versioned `polkadot-sdk/release-mangata-v*`,
# but mangata-node uses `polkadot-sdk/develop` so we need to patch to use the same refs
# patch generated by './scripts/dev_manifest.sh ../polkadot-sdk' & replaced local path with `develop` branch on polkadot-sdk
[patch."https://github.com/mangata-finance/polkadot-sdk"]
pallet-whitelist = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-referenda = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-indices = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-offences = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-transaction-payment = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-asset-tx-payment = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-transaction-payment-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-collective-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-proxy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-identity = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-conviction-voting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-sudo-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
mangata-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-child-bounties = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-beefy-mmr = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-collective = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-preimage = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-multisig = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-scheduler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-nomination-pools = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-nomination-pools-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-society = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-utility-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-authorship = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-bounties = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-fast-unstake = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-transaction-payment-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-transaction-payment-mangata-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-transaction-payment-mangata-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-ranked-collective = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-vesting-mangata = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
frame-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
frame-system-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
frame-system-rpc-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-mmr = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-vesting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
frame-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
frame-support-procedural = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
frame-support-procedural-tools = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
frame-support-procedural-tools-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-im-online = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-staking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-staking-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-staking-reward-fn = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-bags-list = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
frame-election-provider-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
frame-election-provider-solution-type = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-tips = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-balances = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-message-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-nis = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-state-trie-migration = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-sudo = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
frame-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-treasury = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
frame-try-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-elections-phragmen = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-assets = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-election-provider-multi-phase = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-democracy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-membership = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-root-testing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-utility = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
frame-executive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-session = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
substrate-wasm-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
fork-tree = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
substrate-build-script-utils = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
frame-remote-externalities = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
frame-benchmarking-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
try-runtime-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
substrate-frame-rpc-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
substrate-state-trie-migration-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
substrate-rpc-client = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
binary-merkle-tree = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
substrate-prometheus-endpoint = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-database = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-runtime-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-runtime-interface-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-consensus-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-consensus = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-consensus-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-consensus-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-consensus-slots = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-tracing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-maybe-compressed-blob = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-core = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-core-hashing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-core-hashing-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-state-machine = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-keystore = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-metadata-ir = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-statement-store = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-weights = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-io = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-inherents = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-transaction-pool = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-std = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-storage = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-panic-handler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-debug-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-blockchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-externalities = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-trie = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-mmr-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
mangata-types = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-version = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-version-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-block-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-keyring = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-staking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-wasm-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-transaction-storage-proof = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
extrinsic-shuffler = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-arithmetic = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-api-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-offchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-application-crypto = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
ver-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-npos-elections = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-genesis-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sp-session = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-consensus-grandpa = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-consensus-grandpa-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-consensus = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-consensus-epochs = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-consensus-beefy = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-consensus-beefy-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-consensus-babe = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-consensus-babe-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-consensus-slots = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-tracing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-tracing-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-rpc-spec-v2 = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-state-db = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-proposer-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-keystore = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-basic-authorship-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-rpc-server = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-network = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-network-bitswap = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-network-transactions = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-network-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-network-light = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-network-sync = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-informant = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-transaction-pool = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-transaction-pool-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-utils = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-chain-spec = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-chain-spec-derive = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-sync-state-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-basic-authorship = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-block-builder-ver = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
mmr-gadget = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
mmr-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-storage-monitor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-authority-discovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-block-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-allocator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-network-gossip = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-client-db = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-client-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-sysinfo = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-executor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-executor-wasmtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-executor-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-telemetry = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-offchain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
sc-rpc-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
xcm-emulator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-test-relay-sproof-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-primitives-core = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-primitives-parachain-inherent = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-primitives-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-primitives-timestamp = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-primitives-utility = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-pallet-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-pallet-dmp-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-pallet-xcmp-queue = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-pallet-aura-ext = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-pallet-session-benchmarking = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-pallet-parachain-system = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-pallet-parachain-system-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-collator-selection = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-client-consensus-proposer = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-client-consensus-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-client-consensus-relay-chain = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-client-consensus-aura = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-relay-chain-minimal-node = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-relay-chain-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-client-network = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-client-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-relay-chain-inprocess-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-client-pov-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-client-collator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-client-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
cumulus-relay-chain-rpc-interface = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
parachains-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
parachain-info = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-parachain-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
staging-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
staging-xcm-executor = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
staging-xcm-builder = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
xcm-procedural = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
pallet-xcm = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-statement-table = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-erasure-coding = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-runtime-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
rococo-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
rococo-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
staging-kusama-runtime = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
kusama-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-runtime-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
slot-range-helper = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
westend-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-runtime-constants = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-runtime-parachains = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-cli = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-metrics = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
tracing-gum = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
tracing-gum-proc-macro = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-core-candidate-validation = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-core-prospective-parachains = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-core-runtime-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-core-parachains-inherent = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-core-av-store = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-core-approval-voting = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-core-pvf = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-core-pvf-common = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-core-dispute-coordinator = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-core-chain-api = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-core-backing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-core-provisioner = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-core-chain-selection = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-core-bitfield-signing = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-core-pvf-checker = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-subsystem-types = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-collation-generation = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-jaeger = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-availability-bitfield-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-gossip-support = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-network-bridge = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-network-protocol = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-approval-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-statement-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-availability-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-availability-recovery = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-collator-protocol = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-dispute-distribution = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-subsystem = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-node-subsystem-util = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-service = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-overseer = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-rpc = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
polkadot-core-primitives = { git = "https://github.com/mangata-finance//polkadot-sdk", branch = "develop" }
# patch generated by './scripts/dev_manifest.sh ../open-runtime-module-library'
[patch."https://github.com/mangata-finance/open-runtime-module-library"]
orml-xcm = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "develop" }
orml-traits = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "develop" }
orml-xtokens = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "develop" }
orml-asset-registry = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "develop" }
orml-xcm-support = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "develop" }
orml-utilities = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "develop" }
orml-unknown-tokens = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "develop" }
orml-tokens = { git = "https://github.com/mangata-finance//open-runtime-module-library", branch = "develop" }
# # patch generated by './scripts/dev_manifest.sh ../polkadot-sdk'
# [patch."https://github.com/mangata-finance/polkadot-sdk"]
# polkadot-primitives = { path = "../polkadot-sdk/polkadot/primitives" }
# polkadot-rpc = { path = "../polkadot-sdk/polkadot/rpc" }
# polkadot-statement-table = { path = "../polkadot-sdk/polkadot/statement-table" }
# polkadot-node-primitives = { path = "../polkadot-sdk/polkadot/node/primitives" }
# polkadot-node-subsystem = { path = "../polkadot-sdk/polkadot/node/subsystem" }
# polkadot-node-subsystem-util = { path = "../polkadot-sdk/polkadot/node/subsystem-util" }
# polkadot-node-core-runtime-api = { path = "../polkadot-sdk/polkadot/node/core/runtime-api" }
# polkadot-node-core-chain-api = { path = "../polkadot-sdk/polkadot/node/core/chain-api" }
# polkadot-node-core-bitfield-signing = { path = "../polkadot-sdk/polkadot/node/core/bitfield-signing" }
# polkadot-node-core-candidate-validation = { path = "../polkadot-sdk/polkadot/node/core/candidate-validation" }
# polkadot-node-core-parachains-inherent = { path = "../polkadot-sdk/polkadot/node/core/parachains-inherent" }
# polkadot-node-core-chain-selection = { path = "../polkadot-sdk/polkadot/node/core/chain-selection" }
# polkadot-node-core-prospective-parachains = { path = "../polkadot-sdk/polkadot/node/core/prospective-parachains" }
# polkadot-node-core-approval-voting = { path = "../polkadot-sdk/polkadot/node/core/approval-voting" }
# polkadot-node-core-pvf-checker = { path = "../polkadot-sdk/polkadot/node/core/pvf-checker" }
# polkadot-node-core-dispute-coordinator = { path = "../polkadot-sdk/polkadot/node/core/dispute-coordinator" }
# polkadot-node-core-av-store = { path = "../polkadot-sdk/polkadot/node/core/av-store" }
# polkadot-node-core-pvf = { path = "../polkadot-sdk/polkadot/node/core/pvf" }
# polkadot-node-core-pvf-common = { path = "../polkadot-sdk/polkadot/node/core/pvf/common" }
# polkadot-node-core-provisioner = { path = "../polkadot-sdk/polkadot/node/core/provisioner" }
# polkadot-node-core-backing = { path = "../polkadot-sdk/polkadot/node/core/backing" }
# polkadot-service = { path = "../polkadot-sdk/polkadot/node/service" }
# polkadot-node-subsystem-types = { path = "../polkadot-sdk/polkadot/node/subsystem-types" }
# polkadot-overseer = { path = "../polkadot-sdk/polkadot/node/overseer" }
# polkadot-node-jaeger = { path = "../polkadot-sdk/polkadot/node/jaeger" }
# polkadot-node-collation-generation = { path = "../polkadot-sdk/polkadot/node/collation-generation" }
# polkadot-availability-recovery = { path = "../polkadot-sdk/polkadot/node/network/availability-recovery" }
# polkadot-statement-distribution = { path = "../polkadot-sdk/polkadot/node/network/statement-distribution" }
# polkadot-approval-distribution = { path = "../polkadot-sdk/polkadot/node/network/approval-distribution" }
# polkadot-node-network-protocol = { path = "../polkadot-sdk/polkadot/node/network/protocol" }
# polkadot-dispute-distribution = { path = "../polkadot-sdk/polkadot/node/network/dispute-distribution" }
# polkadot-collator-protocol = { path = "../polkadot-sdk/polkadot/node/network/collator-protocol" }
# polkadot-gossip-support = { path = "../polkadot-sdk/polkadot/node/network/gossip-support" }
# polkadot-availability-distribution = { path = "../polkadot-sdk/polkadot/node/network/availability-distribution" }
# polkadot-network-bridge = { path = "../polkadot-sdk/polkadot/node/network/bridge" }
# polkadot-availability-bitfield-distribution = { path = "../polkadot-sdk/polkadot/node/network/bitfield-distribution" }
# polkadot-node-metrics = { path = "../polkadot-sdk/polkadot/node/metrics" }
# tracing-gum = { path = "../polkadot-sdk/polkadot/node/gum" }
# tracing-gum-proc-macro = { path = "../polkadot-sdk/polkadot/node/gum/proc-macro" }
# polkadot-runtime-parachains = { path = "../polkadot-sdk/polkadot/runtime/parachains" }
# rococo-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/rococo/constants" }
# rococo-runtime = { path = "../polkadot-sdk/polkadot/runtime/rococo" }
# polkadot-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/polkadot/constants" }
# kusama-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/kusama/constants" }
# staging-kusama-runtime = { path = "../polkadot-sdk/polkadot/runtime/kusama" }
# polkadot-runtime-metrics = { path = "../polkadot-sdk/polkadot/runtime/metrics" }
# polkadot-runtime-common = { path = "../polkadot-sdk/polkadot/runtime/common" }
# slot-range-helper = { path = "../polkadot-sdk/polkadot/runtime/common/slot_range_helper" }
# westend-runtime-constants = { path = "../polkadot-sdk/polkadot/runtime/westend/constants" }
# polkadot-erasure-coding = { path = "../polkadot-sdk/polkadot/erasure-coding" }
# staging-xcm-executor = { path = "../polkadot-sdk/polkadot/xcm/xcm-executor" }
# xcm-procedural = { path = "../polkadot-sdk/polkadot/xcm/procedural" }
# staging-xcm = { path = "../polkadot-sdk/polkadot/xcm" }
# staging-xcm-builder = { path = "../polkadot-sdk/polkadot/xcm/xcm-builder" }
# pallet-xcm = { path = "../polkadot-sdk/polkadot/xcm/pallet-xcm" }
# polkadot-parachain-primitives = { path = "../polkadot-sdk/polkadot/parachain" }
# polkadot-cli = { path = "../polkadot-sdk/polkadot/cli" }
# polkadot-core-primitives = { path = "../polkadot-sdk/polkadot/core-primitives" }
# cumulus-test-relay-sproof-builder = { path = "../polkadot-sdk/cumulus/test/relay-sproof-builder" }
# cumulus-primitives-timestamp = { path = "../polkadot-sdk/cumulus/primitives/timestamp" }
# cumulus-primitives-core = { path = "../polkadot-sdk/cumulus/primitives/core" }
# cumulus-primitives-utility = { path = "../polkadot-sdk/cumulus/primitives/utility" }
# cumulus-primitives-aura = { path = "../polkadot-sdk/cumulus/primitives/aura" }
# cumulus-primitives-parachain-inherent = { path = "../polkadot-sdk/cumulus/primitives/parachain-inherent" }
# parachain-info = { path = "../polkadot-sdk/cumulus/parachains/pallets/parachain-info" }
# parachains-common = { path = "../polkadot-sdk/cumulus/parachains/common" }
# cumulus-pallet-dmp-queue = { path = "../polkadot-sdk/cumulus/pallets/dmp-queue" }
# cumulus-pallet-session-benchmarking = { path = "../polkadot-sdk/cumulus/pallets/session-benchmarking" }
# cumulus-pallet-xcmp-queue = { path = "../polkadot-sdk/cumulus/pallets/xcmp-queue" }
# cumulus-pallet-parachain-system = { path = "../polkadot-sdk/cumulus/pallets/parachain-system" }
# cumulus-pallet-parachain-system-proc-macro = { path = "../polkadot-sdk/cumulus/pallets/parachain-system/proc-macro" }
# pallet-collator-selection = { path = "../polkadot-sdk/cumulus/pallets/collator-selection" }
# cumulus-pallet-xcm = { path = "../polkadot-sdk/cumulus/pallets/xcm" }
# cumulus-pallet-aura-ext = { path = "../polkadot-sdk/cumulus/pallets/aura-ext" }
# cumulus-relay-chain-inprocess-interface = { path = "../polkadot-sdk/cumulus/client/relay-chain-inprocess-interface" }
# cumulus-relay-chain-interface = { path = "../polkadot-sdk/cumulus/client/relay-chain-interface" }
# cumulus-client-collator = { path = "../polkadot-sdk/cumulus/client/collator" }
# cumulus-client-service = { path = "../polkadot-sdk/cumulus/client/service" }
# cumulus-client-network = { path = "../polkadot-sdk/cumulus/client/network" }
# cumulus-relay-chain-rpc-interface = { path = "../polkadot-sdk/cumulus/client/relay-chain-rpc-interface" }
# cumulus-client-cli = { path = "../polkadot-sdk/cumulus/client/cli" }
# cumulus-relay-chain-minimal-node = { path = "../polkadot-sdk/cumulus/client/relay-chain-minimal-node" }
# cumulus-client-pov-recovery = { path = "../polkadot-sdk/cumulus/client/pov-recovery" }
# cumulus-client-consensus-aura = { path = "../polkadot-sdk/cumulus/client/consensus/aura" }
# cumulus-client-consensus-proposer = { path = "../polkadot-sdk/cumulus/client/consensus/proposer" }
# cumulus-client-consensus-relay-chain = { path = "../polkadot-sdk/cumulus/client/consensus/relay-chain" }
# cumulus-client-consensus-common = { path = "../polkadot-sdk/cumulus/client/consensus/common" }
# xcm-emulator = { path = "../polkadot-sdk/cumulus/xcm/xcm-emulator" }
# sp-storage = { path = "../polkadot-sdk/substrate/primitives/storage" }
# sp-std = { path = "../polkadot-sdk/substrate/primitives/std" }
# sp-maybe-compressed-blob = { path = "../polkadot-sdk/substrate/primitives/maybe-compressed-blob" }
# sp-database = { path = "../polkadot-sdk/substrate/primitives/database" }
# sp-state-machine = { path = "../polkadot-sdk/substrate/primitives/state-machine" }
# sp-rpc = { path = "../polkadot-sdk/substrate/primitives/rpc" }
# sp-blockchain = { path = "../polkadot-sdk/substrate/primitives/blockchain" }
# sp-api = { path = "../polkadot-sdk/substrate/primitives/api" }
# sp-api-proc-macro = { path = "../polkadot-sdk/substrate/primitives/api/proc-macro" }
# sp-externalities = { path = "../polkadot-sdk/substrate/primitives/externalities" }
# extrinsic-shuffler = { path = "../polkadot-sdk/substrate/primitives/shuffler" }
# sp-transaction-pool = { path = "../polkadot-sdk/substrate/primitives/transaction-pool" }
# sp-session = { path = "../polkadot-sdk/substrate/primitives/session" }
# sp-timestamp = { path = "../polkadot-sdk/substrate/primitives/timestamp" }
# sp-inherents = { path = "../polkadot-sdk/substrate/primitives/inherents" }
# sp-io = { path = "../polkadot-sdk/substrate/primitives/io" }
# sp-transaction-storage-proof = { path = "../polkadot-sdk/substrate/primitives/transaction-storage-proof" }
# sp-ver = { path = "../polkadot-sdk/substrate/primitives/ver" }
# sp-tracing = { path = "../polkadot-sdk/substrate/primitives/tracing" }
# sp-mmr-primitives = { path = "../polkadot-sdk/substrate/primitives/merkle-mountain-range" }
# sp-application-crypto = { path = "../polkadot-sdk/substrate/primitives/application-crypto" }
# sp-panic-handler = { path = "../polkadot-sdk/substrate/primitives/panic-handler" }
# sp-core-hashing = { path = "../polkadot-sdk/substrate/primitives/core/hashing" }
# sp-core-hashing-proc-macro = { path = "../polkadot-sdk/substrate/primitives/core/hashing/proc-macro" }
# sp-core = { path = "../polkadot-sdk/substrate/primitives/core" }
# sp-offchain = { path = "../polkadot-sdk/substrate/primitives/offchain" }
# sp-weights = { path = "../polkadot-sdk/substrate/primitives/weights" }
# sp-npos-elections = { path = "../polkadot-sdk/substrate/primitives/npos-elections" }
# sp-keystore = { path = "../polkadot-sdk/substrate/primitives/keystore" }
# mangata-types = { path = "../polkadot-sdk/substrate/primitives/mangata-types" }
# sp-version = { path = "../polkadot-sdk/substrate/primitives/version" }
# sp-version-proc-macro = { path = "../polkadot-sdk/substrate/primitives/version/proc-macro" }
# sp-runtime = { path = "../polkadot-sdk/substrate/primitives/runtime" }
# sp-wasm-interface = { path = "../polkadot-sdk/substrate/primitives/wasm-interface" }
# sp-authority-discovery = { path = "../polkadot-sdk/substrate/primitives/authority-discovery" }
# sp-genesis-builder = { path = "../polkadot-sdk/substrate/primitives/genesis-builder" }
# sp-block-builder = { path = "../polkadot-sdk/substrate/primitives/block-builder" }
# ver-api = { path = "../polkadot-sdk/substrate/primitives/ver-api" }
# sp-runtime-interface = { path = "../polkadot-sdk/substrate/primitives/runtime-interface" }
# sp-runtime-interface-proc-macro = { path = "../polkadot-sdk/substrate/primitives/runtime-interface/proc-macro" }
# sp-debug-derive = { path = "../polkadot-sdk/substrate/primitives/debug-derive" }
# sp-statement-store = { path = "../polkadot-sdk/substrate/primitives/statement-store" }
# sp-staking = { path = "../polkadot-sdk/substrate/primitives/staking" }
# sp-trie = { path = "../polkadot-sdk/substrate/primitives/trie" }
# sp-metadata-ir = { path = "../polkadot-sdk/substrate/primitives/metadata-ir" }
# sp-keyring = { path = "../polkadot-sdk/substrate/primitives/keyring" }
# sp-consensus-slots = { path = "../polkadot-sdk/substrate/primitives/consensus/slots" }
# sp-consensus-grandpa = { path = "../polkadot-sdk/substrate/primitives/consensus/grandpa" }
# sp-consensus-aura = { path = "../polkadot-sdk/substrate/primitives/consensus/aura" }
# sp-consensus-beefy = { path = "../polkadot-sdk/substrate/primitives/consensus/beefy" }
# sp-consensus = { path = "../polkadot-sdk/substrate/primitives/consensus/common" }
# sp-consensus-babe = { path = "../polkadot-sdk/substrate/primitives/consensus/babe" }
# sp-arithmetic = { path = "../polkadot-sdk/substrate/primitives/arithmetic" }
# sc-rpc = { path = "../polkadot-sdk/substrate/client/rpc" }
# sc-client-api = { path = "../polkadot-sdk/substrate/client/api" }
# sc-chain-spec-derive = { path = "../polkadot-sdk/substrate/client/chain-spec/derive" }
# sc-chain-spec = { path = "../polkadot-sdk/substrate/client/chain-spec" }
# sc-basic-authorship-ver = { path = "../polkadot-sdk/substrate/client/basic-authorship-ver" }
# sc-transaction-pool-api = { path = "../polkadot-sdk/substrate/client/transaction-pool/api" }
# sc-transaction-pool = { path = "../polkadot-sdk/substrate/client/transaction-pool" }
# sc-storage-monitor = { path = "../polkadot-sdk/substrate/client/storage-monitor" }
# sc-tracing = { path = "../polkadot-sdk/substrate/client/tracing" }
# sc-tracing-proc-macro = { path = "../polkadot-sdk/substrate/client/tracing/proc-macro" }
# sc-telemetry = { path = "../polkadot-sdk/substrate/client/telemetry" }
# mmr-rpc = { path = "../polkadot-sdk/substrate/client/merkle-mountain-range/rpc" }
# mmr-gadget = { path = "../polkadot-sdk/substrate/client/merkle-mountain-range" }
# sc-service = { path = "../polkadot-sdk/substrate/client/service" }
# sc-offchain = { path = "../polkadot-sdk/substrate/client/offchain" }
# sc-allocator = { path = "../polkadot-sdk/substrate/client/allocator" }
# sc-rpc-server = { path = "../polkadot-sdk/substrate/client/rpc-servers" }
# sc-keystore = { path = "../polkadot-sdk/substrate/client/keystore" }
# sc-executor = { path = "../polkadot-sdk/substrate/client/executor" }
# sc-executor-common = { path = "../polkadot-sdk/substrate/client/executor/common" }
# sc-executor-wasmtime = { path = "../polkadot-sdk/substrate/client/executor/wasmtime" }
# sc-informant = { path = "../polkadot-sdk/substrate/client/informant" }
# sc-rpc-spec-v2 = { path = "../polkadot-sdk/substrate/client/rpc-spec-v2" }
# sc-sync-state-rpc = { path = "../polkadot-sdk/substrate/client/sync-state-rpc" }
# sc-network-transactions = { path = "../polkadot-sdk/substrate/client/network/transactions" }
# sc-network-sync = { path = "../polkadot-sdk/substrate/client/network/sync" }
# sc-network-bitswap = { path = "../polkadot-sdk/substrate/client/network/bitswap" }
# sc-network-light = { path = "../polkadot-sdk/substrate/client/network/light" }
# sc-network = { path = "../polkadot-sdk/substrate/client/network" }
# sc-network-common = { path = "../polkadot-sdk/substrate/client/network/common" }
# sc-authority-discovery = { path = "../polkadot-sdk/substrate/client/authority-discovery" }
# sc-basic-authorship = { path = "../polkadot-sdk/substrate/client/basic-authorship" }
# sc-block-builder = { path = "../polkadot-sdk/substrate/client/block-builder" }
# sc-utils = { path = "../polkadot-sdk/substrate/client/utils" }
# sc-proposer-metrics = { path = "../polkadot-sdk/substrate/client/proposer-metrics" }
# sc-cli = { path = "../polkadot-sdk/substrate/client/cli" }
# sc-block-builder-ver = { path = "../polkadot-sdk/substrate/client/block-builder-ver" }
# sc-sysinfo = { path = "../polkadot-sdk/substrate/client/sysinfo" }
# sc-client-db = { path = "../polkadot-sdk/substrate/client/db" }
# sc-state-db = { path = "../polkadot-sdk/substrate/client/state-db" }
# sc-rpc-api = { path = "../polkadot-sdk/substrate/client/rpc-api" }
# sc-consensus-slots = { path = "../polkadot-sdk/substrate/client/consensus/slots" }
# sc-consensus-grandpa-rpc = { path = "../polkadot-sdk/substrate/client/consensus/grandpa/rpc" }
# sc-consensus-grandpa = { path = "../polkadot-sdk/substrate/client/consensus/grandpa" }
# sc-consensus-epochs = { path = "../polkadot-sdk/substrate/client/consensus/epochs" }
# sc-consensus-aura = { path = "../polkadot-sdk/substrate/client/consensus/aura" }
# sc-consensus-beefy-rpc = { path = "../polkadot-sdk/substrate/client/consensus/beefy/rpc" }
# sc-consensus-beefy = { path = "../polkadot-sdk/substrate/client/consensus/beefy" }
# sc-consensus = { path = "../polkadot-sdk/substrate/client/consensus/common" }
# sc-consensus-babe-rpc = { path = "../polkadot-sdk/substrate/client/consensus/babe/rpc" }
# sc-consensus-babe = { path = "../polkadot-sdk/substrate/client/consensus/babe" }
# sc-network-gossip = { path = "../polkadot-sdk/substrate/client/network-gossip" }
# pallet-asset-tx-payment = { path = "../polkadot-sdk/substrate/frame/transaction-payment/asset-tx-payment" }
# pallet-transaction-payment-rpc-runtime-api = { path = "../polkadot-sdk/substrate/frame/transaction-payment/rpc/runtime-api" }
# pallet-transaction-payment-rpc = { path = "../polkadot-sdk/substrate/frame/transaction-payment/rpc" }
# pallet-transaction-payment = { path = "../polkadot-sdk/substrate/frame/transaction-payment" }
# pallet-democracy = { path = "../polkadot-sdk/substrate/frame/democracy" }
# pallet-multisig = { path = "../polkadot-sdk/substrate/frame/multisig" }
# pallet-election-provider-multi-phase = { path = "../polkadot-sdk/substrate/frame/election-provider-multi-phase" }
# frame-system-rpc-runtime-api = { path = "../polkadot-sdk/substrate/frame/system/rpc/runtime-api" }
# frame-system = { path = "../polkadot-sdk/substrate/frame/system" }
# frame-system-benchmarking = { path = "../polkadot-sdk/substrate/frame/system/benchmarking" }
# pallet-state-trie-migration = { path = "../polkadot-sdk/substrate/frame/state-trie-migration" }
# pallet-vesting = { path = "../polkadot-sdk/substrate/frame/vesting" }
# pallet-recovery = { path = "../polkadot-sdk/substrate/frame/recovery" }
# pallet-society = { path = "../polkadot-sdk/substrate/frame/society" }
# pallet-child-bounties = { path = "../polkadot-sdk/substrate/frame/child-bounties" }
# pallet-proxy = { path = "../polkadot-sdk/substrate/frame/proxy" }
# pallet-scheduler = { path = "../polkadot-sdk/substrate/frame/scheduler" }
# pallet-tips = { path = "../polkadot-sdk/substrate/frame/tips" }
# pallet-session = { path = "../polkadot-sdk/substrate/frame/session" }
# pallet-message-queue = { path = "../polkadot-sdk/substrate/frame/message-queue" }
# pallet-timestamp = { path = "../polkadot-sdk/substrate/frame/timestamp" }
# pallet-preimage = { path = "../polkadot-sdk/substrate/frame/preimage" }
# frame-election-provider-support = { path = "../polkadot-sdk/substrate/frame/election-provider-support" }
# frame-election-provider-solution-type = { path = "../polkadot-sdk/substrate/frame/election-provider-support/solution-type" }
# pallet-bounties = { path = "../polkadot-sdk/substrate/frame/bounties" }
# pallet-grandpa = { path = "../polkadot-sdk/substrate/frame/grandpa" }
# pallet-identity = { path = "../polkadot-sdk/substrate/frame/identity" }
# pallet-beefy-mmr = { path = "../polkadot-sdk/substrate/frame/beefy-mmr" }
# pallet-treasury = { path = "../polkadot-sdk/substrate/frame/treasury" }
# pallet-indices = { path = "../polkadot-sdk/substrate/frame/indices" }
# pallet-ranked-collective = { path = "../polkadot-sdk/substrate/frame/ranked-collective" }
# pallet-mmr = { path = "../polkadot-sdk/substrate/frame/merkle-mountain-range" }
# pallet-offences = { path = "../polkadot-sdk/substrate/frame/offences" }
# frame-try-runtime = { path = "../polkadot-sdk/substrate/frame/try-runtime" }
# pallet-assets = { path = "../polkadot-sdk/substrate/frame/assets" }
# pallet-im-online = { path = "../polkadot-sdk/substrate/frame/im-online" }
# pallet-conviction-voting = { path = "../polkadot-sdk/substrate/frame/conviction-voting" }
# pallet-fast-unstake = { path = "../polkadot-sdk/substrate/frame/fast-unstake" }
# pallet-root-testing = { path = "../polkadot-sdk/substrate/frame/root-testing" }
# pallet-vesting-mangata = { path = "../polkadot-sdk/substrate/frame/vesting-mangata" }
# pallet-utility = { path = "../polkadot-sdk/substrate/frame/utility" }
# pallet-balances = { path = "../polkadot-sdk/substrate/frame/balances" }
# pallet-aura = { path = "../polkadot-sdk/substrate/frame/aura" }
# pallet-referenda = { path = "../polkadot-sdk/substrate/frame/referenda" }
# pallet-whitelist = { path = "../polkadot-sdk/substrate/frame/whitelist" }
# pallet-collective-mangata = { path = "../polkadot-sdk/substrate/frame/collective-mangata" }
# frame-support-procedural-tools-derive = { path = "../polkadot-sdk/substrate/frame/support/procedural/tools/derive" }
# frame-support-procedural-tools = { path = "../polkadot-sdk/substrate/frame/support/procedural/tools" }
# frame-support-procedural = { path = "../polkadot-sdk/substrate/frame/support/procedural" }
# frame-support = { path = "../polkadot-sdk/substrate/frame/support" }
# pallet-authority-discovery = { path = "../polkadot-sdk/substrate/frame/authority-discovery" }
# pallet-beefy = { path = "../polkadot-sdk/substrate/frame/beefy" }
# pallet-collective = { path = "../polkadot-sdk/substrate/frame/collective" }
# pallet-membership = { path = "../polkadot-sdk/substrate/frame/membership" }
# pallet-nomination-pools-runtime-api = { path = "../polkadot-sdk/substrate/frame/nomination-pools/runtime-api" }
# pallet-nomination-pools = { path = "../polkadot-sdk/substrate/frame/nomination-pools" }
# pallet-babe = { path = "../polkadot-sdk/substrate/frame/babe" }
# frame-executive = { path = "../polkadot-sdk/substrate/frame/executive" }
# frame-benchmarking = { path = "../polkadot-sdk/substrate/frame/benchmarking" }
# pallet-sudo-mangata = { path = "../polkadot-sdk/substrate/frame/sudo-mangata" }
# pallet-nis = { path = "../polkadot-sdk/substrate/frame/nis" }
# pallet-elections-phragmen = { path = "../polkadot-sdk/substrate/frame/elections-phragmen" }
# pallet-utility-mangata = { path = "../polkadot-sdk/substrate/frame/utility-mangata" }
# pallet-bags-list = { path = "../polkadot-sdk/substrate/frame/bags-list" }
# pallet-staking-runtime-api = { path = "../polkadot-sdk/substrate/frame/staking/runtime-api" }
# pallet-staking-reward-fn = { path = "../polkadot-sdk/substrate/frame/staking/reward-fn" }
# pallet-staking = { path = "../polkadot-sdk/substrate/frame/staking" }
# pallet-transaction-payment-mangata-rpc-runtime-api = { path = "../polkadot-sdk/substrate/frame/transaction-payment-mangata/rpc/runtime-api" }
# pallet-transaction-payment-mangata-rpc = { path = "../polkadot-sdk/substrate/frame/transaction-payment-mangata/rpc" }
# pallet-transaction-payment-mangata = { path = "../polkadot-sdk/substrate/frame/transaction-payment-mangata" }
# pallet-authorship = { path = "../polkadot-sdk/substrate/frame/authorship" }
# mangata-support = { path = "../polkadot-sdk/substrate/frame/mangata-support" }
# pallet-sudo = { path = "../polkadot-sdk/substrate/frame/sudo" }
# binary-merkle-tree = { path = "../polkadot-sdk/substrate/utils/binary-merkle-tree" }
# substrate-build-script-utils = { path = "../polkadot-sdk/substrate/utils/build-script-utils" }
# substrate-wasm-builder = { path = "../polkadot-sdk/substrate/utils/wasm-builder" }
# fork-tree = { path = "../polkadot-sdk/substrate/utils/fork-tree" }
# substrate-frame-rpc-system = { path = "../polkadot-sdk/substrate/utils/frame/rpc/system" }
# substrate-rpc-client = { path = "../polkadot-sdk/substrate/utils/frame/rpc/client" }
# substrate-state-trie-migration-rpc = { path = "../polkadot-sdk/substrate/utils/frame/rpc/state-trie-migration-rpc" }
# try-runtime-cli = { path = "../polkadot-sdk/substrate/utils/frame/try-runtime/cli" }
# frame-remote-externalities = { path = "../polkadot-sdk/substrate/utils/frame/remote-externalities" }
# frame-benchmarking-cli = { path = "../polkadot-sdk/substrate/utils/frame/benchmarking-cli" }
# substrate-prometheus-endpoint = { path = "../polkadot-sdk/substrate/utils/prometheus" }