This repository has been archived by the owner on Mar 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
383 lines (370 loc) · 44.6 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
[profile.release]
panic = "unwind"
[profile.inc]
incremental = true
inherits = "release"
[workspace]
members = [
"core/*",
"node",
"pallet/*",
"precompile/*",
"runtime/*",
]
[workspace.package]
authors = ["Darwinia Network <[email protected]>"]
edition = "2021"
homepage = "https://darwinia.network"
license = "GPL-3.0"
repository = "https://github.com/darwinia-network/darwinia"
version = "6.0.0"
[workspace.dependencies]
# crates.io
array-bytes = { version = "6.0" }
codec = { package = "parity-scale-codec", version = "3.3", default-features = false, features = ["derive"] }
libsecp256k1 = { version = "0.7" }
scale-info = { version = "2.3", default-features = false, features = ["derive"] }
sha3 = { version = "0.9" }
static_assertions = { version = "1.1" }
# cumulus
cumulus-client-cli = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" }
cumulus-client-collator = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" }
cumulus-client-consensus-aura = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" }
cumulus-client-consensus-common = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" }
cumulus-client-network = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" }
cumulus-client-service = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" }
cumulus-pallet-aura-ext = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
cumulus-pallet-dmp-queue = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
cumulus-pallet-parachain-system = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
cumulus-pallet-session-benchmarking = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
cumulus-pallet-xcm = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
cumulus-pallet-xcmp-queue = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
cumulus-primitives-core = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" }
cumulus-primitives-timestamp = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
cumulus-primitives-utility = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
cumulus-relay-chain-interface = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" }
parachain-info = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" }
# darwinia
crab-runtime = { path = "runtime/crab" }
darwinia-account-migration = { default-features = false, path = "pallet/account-migration" }
darwinia-common-runtime = { default-features = false, path = "runtime/common" }
darwinia-deposit = { default-features = false, path = "pallet/deposit" }
darwinia-ecdsa-authority = { default-features = false, path = "pallet/ecdsa-authority" }
darwinia-message-gadget = { default-features = false, path = "pallet/message-gadget" }
darwinia-message-transact = { default-features = false, path = "pallet/message-transact" }
darwinia-precompile-assets = { default-features = false, path = "precompile/assets" }
darwinia-precompile-bls12-381 = { default-features = false, path = "precompile/bls12-381" }
darwinia-precompile-deposit = { default-features = false, path = "precompile/deposit" }
darwinia-precompile-staking = { default-features = false, path = "precompile/staking" }
darwinia-precompile-state-storage = { default-features = false, path = "precompile/state-storage" }
darwinia-runtime = { path = "runtime/darwinia" }
darwinia-staking = { default-features = false, path = "pallet/staking" }
dc-inflation = { default-features = false, path = "core/inflation" }
dc-primitives = { default-features = false, path = "core/primitives" }
dc-types = { path = "core/types" }
pangolin-runtime = { path = "runtime/pangolin" }
pangoro-runtime = { path = "runtime/pangoro" }
# darwinia-messages-substrate
bp-darwinia-core = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" }
bp-message-dispatch = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" }
bp-messages = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" }
bp-polkadot-core = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" }
bp-runtime = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" }
bridge-runtime-common = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" }
pallet-bridge-dispatch = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" }
pallet-bridge-grandpa = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" }
pallet-bridge-messages = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" }
pallet-bridge-parachains = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" }
pallet-fee-market = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" }
# frontier
fc-cli = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
fc-consensus = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
fc-db = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
fc-mapping-sync = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
fc-rpc = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
fc-rpc-core = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
fp-ethereum = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
fp-evm = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
fp-rpc = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
fp-self-contained = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
fp-storage = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
pallet-ethereum = { default-features = false, features = ["forbid-evm-reentrancy"], git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
pallet-evm = { default-features = false, features = ["forbid-evm-reentrancy"], git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
pallet-evm-precompile-blake2 = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
pallet-evm-precompile-bn128 = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
pallet-evm-precompile-dispatch = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
pallet-evm-precompile-modexp = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" }
# moonbeam
account = { default-features = false, git = "https://github.com/darwinia-network/moonbeam", branch = "polkadot-v0.9.37" }
precompile-utils = { default-features = false, git = "https://github.com/darwinia-network/moonbeam", branch = "polkadot-v0.9.37" }
xcm-primitives = { default-features = false, git = "https://github.com/darwinia-network/moonbeam", branch = "polkadot-v0.9.37" }
# polkadot
pallet-xcm = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }
polkadot-parachain = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }
polkadot-runtime-common = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }
xcm = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }
xcm-builder = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }
xcm-executor = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" }
# substrate
frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
frame-executive = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
frame-system-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
frame-try-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-assets = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-collective = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-democracy = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-elections-phragmen = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-identity = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-membership = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-preimage = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-proxy = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-scheduler = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-sudo = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-tips = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-treasury = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-utility = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
pallet-vesting = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-block-builder = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-inherents = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-keyring = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-offchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-transaction-pool = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
sp-version = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
[patch."https://github.com/paritytech/substrate"]
beefy-gadget = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
beefy-gadget-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
beefy-merkle-tree = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
frame-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
frame-benchmarking-cli = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
frame-election-provider-solution-type = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
frame-election-provider-support = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
frame-executive = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
frame-support = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
frame-support-procedural = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
frame-support-procedural-tools = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
frame-support-procedural-tools-derive = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
frame-system = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
frame-system-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
frame-system-rpc-runtime-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
frame-try-runtime = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
mmr-gadget = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
mmr-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-assets = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-aura = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-authority-discovery = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-authorship = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-babe = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-bags-list = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-balances = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-beefy = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-beefy-mmr = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-bounties = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-child-bounties = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-collective = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-conviction-voting = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-democracy = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-election-provider-multi-phase = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-election-provider-support-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-elections-phragmen = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-fast-unstake = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-grandpa = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-identity = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-im-online = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-indices = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-membership = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-mmr = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-nis = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-nomination-pools = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-nomination-pools-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-nomination-pools-runtime-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-offences = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-offences-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-preimage = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-proxy = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-ranked-collective = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-recovery = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-referenda = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-scheduler = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-session = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-session-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-society = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-staking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-staking-reward-curve = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-staking-reward-fn = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-state-trie-migration = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-sudo = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-timestamp = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-tips = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-transaction-payment = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-transaction-payment-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-treasury = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-utility = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-vesting = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
pallet-whitelist = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-allocator = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-authority-discovery = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-basic-authorship = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-block-builder = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-chain-spec = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-chain-spec-derive = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-cli = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-client-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-client-db = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-consensus = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-consensus-aura = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-consensus-babe = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-consensus-babe-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-consensus-epochs = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-consensus-slots = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-executor = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-executor-common = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-executor-wasmi = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-executor-wasmtime = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-finality-grandpa = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-finality-grandpa-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-informant = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-keystore = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-network = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-network-common = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-network-gossip = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-offchain = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-peerset = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-proposer-metrics = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-rpc-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-rpc-server = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-service = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-state-db = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-sync-state-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-sysinfo = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-telemetry = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-tracing = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-tracing-proc-macro = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-transaction-pool = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-transaction-pool-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sc-utils = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-api-proc-macro = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-application-crypto = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-arithmetic = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-authority-discovery = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-beefy = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-block-builder = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-blockchain = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-consensus = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-consensus-aura = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-consensus-babe = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-consensus-slots = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-consensus-vrf = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-core = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-database = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-debug-derive = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-externalities = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-finality-grandpa = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-inherents = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-io = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-keyring = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-keystore = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-maybe-compressed-blob = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-mmr-primitives = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-npos-elections = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-offchain = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-panic-handler = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-runtime = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-runtime-interface = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-runtime-interface-proc-macro = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-session = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-staking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-state-machine = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-std = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-storage = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-timestamp = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-tracing = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-transaction-pool = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-transaction-storage-proof = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-trie = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-version = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-version-proc-macro = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-wasm-interface = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
sp-weights = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
substrate-build-script-utils = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
substrate-frame-rpc-system = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
substrate-prometheus-endpoint = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
substrate-rpc-client = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
substrate-state-trie-migration-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
substrate-wasm-builder = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
try-runtime-cli = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" }
[patch."https://github.com/paritytech/cumulus"]
cumulus-client-cli = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-client-collator = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-client-consensus-aura = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-client-consensus-common = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-client-network = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-client-service = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-pallet-aura-ext = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-pallet-dmp-queue = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-pallet-parachain-system = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-pallet-session-benchmarking = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-pallet-xcm = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-pallet-xcmp-queue = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-primitives-core = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-primitives-parachain-inherent = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-primitives-timestamp = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-primitives-utility = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
cumulus-relay-chain-interface = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }
parachain-info = { git = "https://github.com/darwinia-network/cumulus", branch = "remove-assertion-v0.9.37" }