forked from AcalaNetwork/Acala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
358 lines (345 loc) · 31.4 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
cargo-features = ["resolver"]
[workspace]
members = [
"node",
"node/cli",
"node/service",
"node/e2e-tests",
"modules/*",
"modules/evm-utility/macro",
"inspect",
"primitives",
"rpc",
"runtime/common",
"runtime/mandala",
"runtime/karura",
"runtime/acala",
"runtime/integration-tests",
"orml/asset-registry",
"orml/auction",
"orml/authority",
"orml/bencher",
"orml/benchmarking",
"orml/currencies",
"orml/gradually-update",
"orml/nft",
"orml/oracle",
"orml/oracle/rpc",
"orml/rewards",
"orml/tokens",
"orml/tokens/rpc",
"orml/tokens/rpc/runtime-api",
"orml/traits",
"orml/unknown-tokens",
"orml/utilities",
"orml/vesting",
"orml/weight-gen",
"orml/weight-meter",
"orml/xcm-support",
"orml/xcm",
"orml/xtokens",
"orml/oracle/rpc/runtime-api",
"ecosystem-modules/stable-asset/lib/stable-asset",
"evm-tests/jsontests",
]
resolver = "2"
[profile.dev]
split-debuginfo = "unpacked"
[profile.release]
# Acala runtime requires unwinding.
panic = "unwind"
[profile.production]
inherits = "release"
lto = true
codegen-units = 1
# The list of dependencies below (which can be both direct and indirect dependencies) are crates
# that are suspected to be CPU-intensive, and that are unlikely to require debugging (as some of
# their debug info might be missing) or to require to be frequently recompiled. We compile these
# dependencies with `opt-level=3` even in "dev" mode in order to make "dev" mode more usable.
# The majority of these crates are cryptographic libraries.
#
# Note that this does **not** affect crates that depend on Substrate. In other words, if you add
# a dependency on Substrate, you have to copy-paste this list in your own `Cargo.toml` (assuming
# that you want the same list). This list is only relevant when running `cargo build` from within
# the Substrate workspace.
#
# If you see an error mentioning "profile package spec ... did not match any packages", it
# probably concerns this list.
#
# This list is ordered alphabetically.
[profile.dev.package]
blake2 = { opt-level = 3 }
blake2b_simd = { opt-level = 3 }
chacha20poly1305 = { opt-level = 3 }
cranelift-codegen = { opt-level = 3 }
cranelift-wasm = { opt-level = 3 }
crc32fast = { opt-level = 3 }
crossbeam-deque = { opt-level = 3 }
crypto-mac = { opt-level = 3 }
curve25519-dalek = { opt-level = 3 }
ed25519-zebra = { opt-level = 3 }
flate2 = { opt-level = 3 }
futures-channel = { opt-level = 3 }
hashbrown = { opt-level = 3 }
hash-db = { opt-level = 3 }
hmac = { opt-level = 3 }
httparse = { opt-level = 3 }
integer-sqrt = { opt-level = 3 }
keccak = { opt-level = 3 }
libm = { opt-level = 3 }
librocksdb-sys = { opt-level = 3 }
libsecp256k1 = { opt-level = 3 }
libz-sys = { opt-level = 3 }
mio = { opt-level = 3 }
nalgebra = { opt-level = 3 }
num-bigint = { opt-level = 3 }
parking_lot = { opt-level = 3 }
parking_lot_core = { opt-level = 3 }
percent-encoding = { opt-level = 3 }
primitive-types = { opt-level = 3 }
ring = { opt-level = 3 }
rustls = { opt-level = 3 }
sha2 = { opt-level = 3 }
sha3 = { opt-level = 3 }
smallvec = { opt-level = 3 }
snow = { opt-level = 3 }
twox-hash = { opt-level = 3 }
uint = { opt-level = 3 }
wasmi = { opt-level = 3 }
x25519-dalek = { opt-level = 3 }
yamux = { opt-level = 3 }
zeroize = { opt-level = 3 }
[patch."https://github.com/paritytech/substrate"]
binary-merkle-tree = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
frame-benchmarking = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
frame-benchmarking-cli = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
frame-election-provider-support = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
frame-executive = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
frame-remote-externalities = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
frame-support = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
frame-support-procedural = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
frame-support-procedural-tools = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
frame-support-procedural-tools-derive = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
frame-system = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
frame-system-benchmarking = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
frame-try-runtime = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
mmr-gadget = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
mmr-rpc = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-asset-tx-payment = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-assets = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-aura = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-authority-discovery = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-authorship = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-babe = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-bags-list = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-balances = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-beefy = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-beefy-mmr = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-bounties = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-child-bounties = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-collective = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-conviction-voting = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-democracy = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-election-provider-multi-phase = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-elections-phragmen = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-fast-unstake = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-grandpa = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-identity = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-im-online = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-indices = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-membership = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-mmr = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-multisig = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-nfts = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-nfts-runtime-api = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-nis = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-nomination-pools = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-nomination-pools-runtime-api = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-offences = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-offences-benchmarking = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-preimage = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-proxy = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-ranked-collective = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-recovery = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-referenda = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-root-testing = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-scheduler = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-session = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-session-benchmarking = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-society = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-staking = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-staking-reward-curve = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-staking-reward-fn = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-staking-runtime-api = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-state-trie-migration = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-sudo = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-timestamp = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-tips = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-transaction-payment = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-treasury = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-uniques = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-utility = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-vesting = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
pallet-whitelist = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-authority-discovery = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-basic-authorship = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-block-builder = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-chain-spec = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-cli = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-client-api = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-client-db = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-consensus = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-consensus-aura = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-consensus-babe = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-consensus-babe-rpc = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-consensus-beefy = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-consensus-epochs = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-consensus-grandpa = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-consensus-grandpa-rpc = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-consensus-manual-seal = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-consensus-slots = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-executor = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-executor-common = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-executor-wasmtime = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-informant = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-keystore = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-network = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-network-common = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-network-gossip = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-network-light = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-network-sync = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-network-transactions = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-offchain = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-peerset = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-rpc = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-rpc-api = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-rpc-server = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-service = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-storage-monitor = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-sync-state-rpc = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-sysinfo = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-telemetry = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-tracing = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-transaction-pool = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-transaction-pool-api = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-utils = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-api = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-application-crypto = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-arithmetic = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-authority-discovery = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-block-builder = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sc-consensus-beefy-rpc = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-blockchain = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-consensus = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-consensus-aura = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-consensus-babe = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-consensus-beefy = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-consensus-grandpa = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-consensus-slots = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-core = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-debug-derive = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-externalities = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-inherents = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-io = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-keyring = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-keystore = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-maybe-compressed-blob = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-mmr-primitives = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-npos-elections = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-offchain = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-rpc = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-runtime = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-runtime-interface = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-runtime-interface-proc-macro = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-session = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-staking = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-state-machine = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-std = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-storage = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-timestamp = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-tracing = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-transaction-pool = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-trie = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-version = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-wasm-interface = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
sp-weights = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
substrate-build-script-utils = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
substrate-frame-rpc-system = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
substrate-prometheus-endpoint = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
substrate-state-trie-migration-rpc = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
substrate-test-client = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
substrate-test-utils = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
substrate-test-utils-derive = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
substrate-wasm-builder = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
try-runtime-cli = { git = "https://github.com/paritytech//substrate", rev = "569aae5341ea0c1d10426fa1ec13a36c0b64393b" }
[patch."https://github.com/paritytech/polkadot"]
kusama-runtime = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
kusama-runtime-constants = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
pallet-xcm = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
pallet-xcm-benchmarks = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-cli = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-client = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-core-primitives = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-network-bridge = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-node-core-av-store = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-node-core-pvf = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-node-metrics = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-node-network-protocol = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-node-primitives = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-node-subsystem = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-node-subsystem-util= { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-overseer = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-parachain = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-primitives = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-rpc = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-runtime = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-runtime-common = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-runtime-constants = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-runtime-parachains = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-service = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-statement-table = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-test-runtime = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-test-service = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
rococo-runtime = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
test-runtime-constants = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
tracing-gum = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
westend-runtime = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
xcm = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
xcm-builder = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
xcm-executor = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
xcm-simulator = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-node-core-runtime-api = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-node-collation-generation = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-collator-protocol = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
polkadot-availability-recovery = { git = "https://github.com/paritytech//polkadot", rev = "9b1fc27cec47f01a2c229532ee7ab79cc5bb28ef" }
[patch."https://github.com/paritytech/cumulus"]
cumulus-client-cli = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-client-consensus-aura = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-client-consensus-common = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-client-consensus-relay-chain = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-client-network = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-client-service = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-pallet-aura-ext = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-pallet-dmp-queue = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-pallet-parachain-system = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-pallet-xcm = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-primitives-core = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-primitives-timestamp = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-primitives-utility = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-relay-chain-interface = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-relay-chain-minimal-node = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-relay-chain-rpc-interface = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-test-relay-sproof-builder = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
cumulus-test-relay-validation-worker-provider = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
parachain-info = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
parachains-common = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
statemine-runtime = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }
statemint-runtime = { git = "https://github.com/paritytech//cumulus", rev = "f603a61ff370fc33740c9373833c3c6ba1486846" }