forked from moonbeam-foundation/moonbeam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
470 lines (443 loc) · 33.8 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
[workspace]
exclude = ["bin/utils/moonkey"]
members = [
"bin/utils/moonkey",
"client/rpc/finality",
"client/rpc/manual-xcm",
"client/vrf",
"node",
"node/cli",
"node/service",
"pallets/erc20-xcm-bridge",
"pallets/moonbeam-orbiters",
"pallets/precompile-benchmarks",
"pallets/proxy-genesis-companion",
"pallets/moonbeam-lazy-migrations",
"precompiles/balances-erc20",
"precompiles/batch",
"precompiles/call-permit",
"precompiles/collective",
"precompiles/conviction-voting",
"precompiles/crowdloan-rewards",
"precompiles/gmp",
"precompiles/identity",
"precompiles/parachain-staking",
"precompiles/precompile-registry",
"precompiles/preimage",
"precompiles/proxy",
"precompiles/referenda",
"precompiles/relay-encoder",
"precompiles/relay-data-verifier",
"precompiles/utils",
"precompiles/utils/macro",
"precompiles/utils/tests-external",
"precompiles/xcm-transactor",
"precompiles/xtokens",
"primitives/storage-proof",
"runtime/moonbase",
"runtime/moonbeam",
"runtime/moonriver",
"runtime/relay-encoder",
"runtime/summarize-precompile-checks",
]
resolver = "2"
[workspace.package]
authors = ["PureStake"]
repository = "https://github.com/PureStake/moonbeam"
[workspace.dependencies]
# Dependencies are split into 2 groups: wasm and client.
# - "wasm" dependencies requires to be no_std compatible, which often requires
# `default-features = false`. When used in a client-side crate the "std" feature should be enabled
# there if it exists.
# - "client" dependencies are only used in the client, and thus don't need to be no_std compatible.
# Moonbeam (wasm)
account = {path = "primitives/account", default-features = false}
evm-tracing-events = {path = "primitives/rpc/evm-tracing-events", default-features = false}
moonbeam-core-primitives = {path = "core-primitives", default-features = false}
moonbeam-primitives-ext = {path = "primitives/ext", default-features = false}
moonbeam-rpc-primitives-debug = {path = "primitives/rpc/debug", default-features = false}
moonbeam-rpc-primitives-txpool = {path = "primitives/rpc/txpool", default-features = false}
storage-proof-primitives = {path = "primitives/storage-proof", default-features = false}
moonbeam-evm-tracer = {path = "runtime/evm_tracer", default-features = false}
moonbeam-relay-encoder = {path = "runtime/relay-encoder", default-features = false}
moonbeam-runtime-common = {path = "runtime/common", default-features = false}
moonbeam-xcm-benchmarks = {path = "pallets/moonbeam-xcm-benchmarks", default-features = false}
pallet-asset-manager = {path = "pallets/asset-manager", default-features = false}
pallet-erc20-xcm-bridge = {path = "pallets/erc20-xcm-bridge", default-features = false}
pallet-ethereum-xcm = {path = "pallets/ethereum-xcm", default-features = false}
pallet-evm-precompile-author-mapping = {path = "precompiles/author-mapping", default-features = false}
pallet-evm-precompile-balances-erc20 = {path = "precompiles/balances-erc20", default-features = false}
pallet-evm-precompile-batch = {path = "precompiles/batch", default-features = false}
pallet-evm-precompile-call-permit = {path = "precompiles/call-permit", default-features = false}
pallet-evm-precompile-collective = {path = "precompiles/collective", default-features = false}
pallet-evm-precompile-conviction-voting = {path = "precompiles/conviction-voting", default-features = false}
pallet-evm-precompile-crowdloan-rewards = {path = "precompiles/crowdloan-rewards", default-features = false}
pallet-evm-precompile-gmp = {path = "precompiles/gmp", default-features = false}
pallet-evm-precompile-identity = {path = "precompiles/identity", default-features = false}
pallet-evm-precompile-parachain-staking = {path = "precompiles/parachain-staking", default-features = false}
pallet-evm-precompile-preimage = {path = "precompiles/preimage", default-features = false}
pallet-evm-precompile-proxy = {path = "precompiles/proxy", default-features = false}
pallet-evm-precompile-randomness = {path = "precompiles/randomness", default-features = false}
pallet-evm-precompile-referenda = {path = "precompiles/referenda", default-features = false}
pallet-evm-precompile-registry = {path = "precompiles/precompile-registry", default-features = false}
pallet-evm-precompile-relay-encoder = {path = "precompiles/relay-encoder", default-features = false}
pallet-evm-precompile-relay-verifier = {path = "precompiles/relay-data-verifier", default-features = false}
pallet-evm-precompile-xcm-transactor = {path = "precompiles/xcm-transactor", default-features = false}
pallet-evm-precompile-xcm-utils = {path = "precompiles/xcm-utils", default-features = false}
pallet-evm-precompile-xtokens = {path = "precompiles/xtokens", default-features = false}
pallet-evm-precompileset-assets-erc20 = {path = "precompiles/assets-erc20", default-features = false}
pallet-moonbeam-lazy-migrations = {path = "pallets/moonbeam-lazy-migrations", default-features = false}
pallet-moonbeam-orbiters = {path = "pallets/moonbeam-orbiters", default-features = false}
pallet-parachain-staking = {path = "pallets/parachain-staking", default-features = false}
pallet-precompile-benchmarks = {path = "pallets/precompile-benchmarks", default-features = false}
pallet-proxy-genesis-companion = {path = "pallets/proxy-genesis-companion", default-features = false}
pallet-xcm-transactor = {path = "pallets/xcm-transactor", default-features = false}
precompile-utils = {path = "precompiles/utils", default-features = false}
xcm-primitives = {path = "primitives/xcm", default-features = false}
pallet-crowdloan-rewards = {git = "https://github.com/moonbeam-foundation/crowdloan-rewards", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
# Moonbeam (client)
moonbeam-cli = {path = "node/cli", default-features = false}
moonbeam-cli-opt = {path = "node/cli-opt", default-features = false}
moonbeam-service = {path = "node/service", default-features = false}
manual-xcm-rpc = {path = "client/rpc/manual-xcm"}
moonbeam-client-evm-tracing = {path = "client/evm-tracing"}
moonbeam-finality-rpc = {path = "client/rpc/finality"}
moonbeam-rpc-core-debug = {path = "client/rpc-core/debug"}
moonbeam-rpc-core-trace = {path = "client/rpc-core/trace"}
moonbeam-rpc-core-txpool = {path = "client/rpc-core/txpool"}
moonbeam-rpc-core-types = {path = "client/rpc-core/types"}
moonbeam-rpc-debug = {path = "client/rpc/debug"}
moonbeam-rpc-trace = {path = "client/rpc/trace"}
moonbeam-rpc-txpool = {path = "client/rpc/txpool"}
moonbeam-vrf = {path = "client/vrf"}
moonbase-runtime = {path = "runtime/moonbase"}
moonbeam-runtime = {path = "runtime/moonbeam"}
moonriver-runtime = {path = "runtime/moonriver"}
# Substrate (wasm)
frame-benchmarking = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
frame-executive = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
frame-support = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
frame-system = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
frame-system-benchmarking = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
frame-system-rpc-runtime-api = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
frame-try-runtime = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-assets = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-balances = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-collective = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-conviction-voting = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-identity = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-message-queue = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
pallet-multisig = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-preimage = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-proxy = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-referenda = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-root-testing = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-scheduler = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-society = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-staking = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-sudo = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-timestamp = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-transaction-payment = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-transaction-payment-rpc-runtime-api = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-treasury = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-utility = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-whitelist = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
parity-scale-codec = {version = "3.2.2", default-features = false, features = [
"derive",
]}
scale-info = {version = "2.0", default-features = false, features = [
"derive",
]}
sp-api = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-application-crypto = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-block-builder = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-consensus-babe = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-consensus-slots = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-core = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-debug-derive = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-externalities = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-inherents = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-io = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-keystore = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-offchain = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-runtime = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-runtime-interface = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-session = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-state-machine = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-std = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-transaction-pool = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-trie = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-version = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
sp-weights = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
substrate-fixed = {git = "https://github.com/encointer/substrate-fixed", default-features = false}
# Substrate (client)
frame-benchmarking-cli = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
pallet-transaction-payment-rpc = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-basic-authorship = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-block-builder = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-chain-spec = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-cli = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-client-api = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-client-db = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-consensus = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-consensus-grandpa = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-consensus-manual-seal = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-executor = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-informant = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-network = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-network-common = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-network-sync = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-offchain = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-rpc = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-rpc-api = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-service = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-sysinfo = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-telemetry = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-tracing = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-transaction-pool = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-transaction-pool-api = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sc-utils = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sp-blockchain = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sp-consensus = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sp-storage = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sp-timestamp = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
sp-wasm-interface = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
substrate-build-script-utils = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
substrate-frame-rpc-system = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
substrate-prometheus-endpoint = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
substrate-test-client = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
substrate-test-runtime = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
substrate-test-runtime-client = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
substrate-wasm-builder = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
try-runtime-cli = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
# Frontier (wasm)
ethereum = {version = "0.14.0", default-features = false, features = [
"with-codec",
]}
ethereum-types = {version = "0.14", default-features = false}
evm = {git = "https://github.com/moonbeam-foundation/evm", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
evm-gasometer = {git = "https://github.com/moonbeam-foundation/evm", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
evm-runtime = {git = "https://github.com/moonbeam-foundation/evm", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
fp-ethereum = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
fp-evm = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
fp-rpc = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
fp-self-contained = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-ethereum = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0", default-features = false, features = [
"forbid-evm-reentrancy",
]}
pallet-evm = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0", default-features = false, features = [
"forbid-evm-reentrancy",
]}
pallet-evm-chain-id = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-evm-precompile-blake2 = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-evm-precompile-bn128 = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-evm-precompile-dispatch = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-evm-precompile-modexp = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-evm-precompile-sha3fips = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-evm-precompile-simple = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
# Frontier (client)
fc-api = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0"}
fc-consensus = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0"}
fc-db = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0"}
fc-mapping-sync = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0"}
fc-rpc = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0", features = [
"rpc-binary-search-estimate",
]}
fc-rpc-core = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0"}
fc-storage = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0"}
fp-consensus = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0"}
fp-storage = {git = "https://github.com/moonbeam-foundation/frontier", branch = "moonbeam-polkadot-v1.3.0"}
# Cumulus (wasm)
cumulus-pallet-dmp-queue = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
cumulus-pallet-parachain-system = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false, features = [
"parameterized-consensus-hook",
]}
cumulus-pallet-xcm = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
cumulus-pallet-xcmp-queue = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
cumulus-primitives-core = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
cumulus-primitives-parachain-inherent = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
cumulus-primitives-timestamp = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
cumulus-primitives-utility = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
cumulus-test-relay-sproof-builder = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
parachain-info = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
# Cumulus (client)
cumulus-client-cli = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
cumulus-client-collator = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
cumulus-client-consensus-common = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
cumulus-client-consensus-proposer = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
cumulus-client-consensus-relay-chain = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
cumulus-client-network = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
cumulus-client-service = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
cumulus-relay-chain-inprocess-interface = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
cumulus-relay-chain-interface = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
cumulus-relay-chain-minimal-node = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
cumulus-relay-chain-rpc-interface = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
# Polkadot / XCM (wasm)
orml-traits = {git = "https://github.com/moonbeam-foundation/open-runtime-module-library", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
orml-xcm-support = {git = "https://github.com/moonbeam-foundation/open-runtime-module-library", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
orml-xtokens = {git = "https://github.com/moonbeam-foundation/open-runtime-module-library", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-xcm = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-xcm-benchmarks = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
polkadot-core-primitives = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
polkadot-parachain = {package = "polkadot-parachain-primitives", git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
polkadot-runtime-common = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
polkadot-runtime-parachains = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
xcm = {package = "staging-xcm", git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
xcm-builder = {package = "staging-xcm-builder", git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
xcm-executor = {package = "staging-xcm-executor", git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
# Polkadot / XCM (client)
#kusama-runtime = { package = "staging-kusama-runtime", git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0" }
polkadot-cli = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
polkadot-primitives = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
#polkadot-runtime = { git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0" }
polkadot-service = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
rococo-runtime = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
westend-runtime = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
xcm-simulator = {git = "https://github.com/moonbeam-foundation/polkadot-sdk", branch = "moonbeam-polkadot-v1.3.0"}
# Moonkit (wasm)
async-backing-primitives = {git = "https://github.com/Moonsong-Labs/moonkit", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
moonkit-xcm-primitives = {package = "xcm-primitives", git = "https://github.com/Moonsong-Labs/moonkit", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
nimbus-primitives = {git = "https://github.com/Moonsong-Labs/moonkit", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-async-backing = {git = "https://github.com/Moonsong-Labs/moonkit", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-author-inherent = {git = "https://github.com/Moonsong-Labs/moonkit", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-author-mapping = {git = "https://github.com/Moonsong-Labs/moonkit", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-author-slot-filter = {git = "https://github.com/Moonsong-Labs/moonkit", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-maintenance-mode = {git = "https://github.com/Moonsong-Labs/moonkit", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-migrations = {git = "https://github.com/Moonsong-Labs/moonkit", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-randomness = {git = "https://github.com/Moonsong-Labs/moonkit", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
pallet-relay-storage-roots = {git = "https://github.com/Moonsong-Labs/moonkit", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
session-keys-primitives = {git = "https://github.com/Moonsong-Labs/moonkit", branch = "moonbeam-polkadot-v1.3.0", default-features = false}
# Moonkit (client)
nimbus-consensus = {git = "https://github.com/Moonsong-Labs/moonkit", branch = "moonbeam-polkadot-v1.3.0"}
# Other (wasm)
affix = "0.1.2"
async-trait = {version = "0.1.42"}
blake2-rfc = {version = "0.2.18", default-features = false}
derive_more = "0.99"
environmental = {version = "1.1.2", default-features = false}
frame-metadata = {version = "16.0.0", default-features = false, features = [
"current",
]}
hex = {version = "0.4.3", default-features = false}
hex-literal = {version = "0.3.4"}
impl-serde = {version = "0.3.1", default-features = false}
impl-trait-for-tuples = "0.2.1"
libsecp256k1 = {version = "0.7", default-features = false}
log = {version = "0.4", default-features = false}
num_enum = {version = "0.5.3", default-features = false}
paste = "1.0.6"
rlp = {version = "0.5", default-features = false}
rustc-hex = {version = "2.0.1", default-features = false}
serde = {version = "1.0.101", default-features = false}
sha3 = {version = "0.10", default-features = false}
slices = "0.2.0"
smallvec = "1.8.0"
strum = {version = "0.24", default-features = false, features = ["derive"]}
strum_macros = "0.24"
# Other (client)
ansi_term = "0.12.1"
assert_cmd = "2.0.10"
async-io = "1.3"
bip32 = {version = "0.5.1", default-features = false, features = ["bip39"]}
clap = {version = "4.0.9", features = ["derive"]}
exit-future = "0.2"
flume = "0.10.9"
futures = {version = "0.3.21"}
jsonrpsee = {version = "0.16.2", default-features = false}
maplit = "1.0.2"
nix = "0.23"
parking_lot = "0.12.0"
primitive-types = "0.12.0"
prometheus = {version = "0.13.0", default-features = false}
rand = "0.7.3"
schnorrkel = {version = "0.9.1", default-features = false, features = [
"preaudit_deprecated",
"u64_backend",
]}
serde_json = {version = "1.0"}
similar-asserts = "1.1.0"
tempfile = "3.2.0"
tiny-bip39 = {version = "0.8", default-features = false}
tokio = {version = "1.13"}
tracing = "0.1.34"
tracing-core = "0.1.29"
trie-root = "0.15.2"
url = "2.2.2"
# 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 Moonbeam. In other words, if you add
# a dependency on Moonbeam, 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 Moonbeam 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}
hash-db = {opt-level = 3}
hashbrown = {opt-level = 3}
hmac = {opt-level = 3}
httparse = {opt-level = 3}
integer-sqrt = {opt-level = 3}
k256 = {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}
secp256k1 = {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}
# make sure dev builds with backtrace do
# not slow us down
[profile.dev.package.backtrace]
inherits = "release"
[profile.production]
codegen-units = 1
incremental = false
inherits = "release"
lto = true
[profile.release]
debug-assertions = true # Enable debug-assert! for non-production profiles
opt-level = 3
# Moonbeam runtime requires unwinding.
panic = "unwind"
[profile.testnet]
debug = 1 # debug symbols are useful for profilers
debug-assertions = true # Enable debug-assert! for non-production profiles
inherits = "release"
overflow-checks = true