This repository was archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathCargo.toml
More file actions
495 lines (477 loc) · 35.5 KB
/
Cargo.toml
File metadata and controls
495 lines (477 loc) · 35.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
[[bin]]
name = "polkadot"
path = "src/main.rs"
[package]
name = "polkadot"
description = "Implementation of a `https://polkadot.network` node in Rust based on the Substrate framework."
license = "GPL-3.0-only"
rust-version = "1.64.0" # workspace properties
readme = "README.md"
authors.workspace = true
edition.workspace = true
version.workspace = true
[workspace.package]
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
repository = "https://github.com/paritytech/polkadot.git"
version = "0.9.41"
[dependencies]
color-eyre = { version = "0.6.1", default-features = false }
tikv-jemallocator = "0.5.0"
# Crates in our workspace, defined as dependencies so we can pass them feature flags.
polkadot-cli = { path = "cli", features = [ "kusama-native", "westend-native", "rococo-native" ] }
polkadot-node-core-pvf-prepare-worker = { path = "node/core/pvf/prepare-worker" }
polkadot-overseer = { path = "node/overseer" }
[dev-dependencies]
assert_cmd = "2.0.4"
nix = { version = "0.26.1", features = ["signal"] }
tempfile = "3.2.0"
tokio = "1.24.2"
substrate-rpc-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
polkadot-core-primitives = { path = "core-primitives" }
[workspace]
members = [
"cli",
"core-primitives",
"erasure-coding",
"erasure-coding/fuzzer",
"primitives",
"primitives/test-helpers",
"runtime/common",
"runtime/common/slot_range_helper",
"runtime/metrics",
"runtime/parachains",
"runtime/polkadot",
"runtime/polkadot/constants",
"runtime/kusama",
"runtime/kusama/constants",
"runtime/rococo",
"runtime/rococo/constants",
"runtime/westend",
"runtime/westend/constants",
"runtime/test-runtime",
"runtime/test-runtime/constants",
"statement-table",
"xcm",
"xcm/xcm-builder",
"xcm/xcm-executor",
"xcm/xcm-executor/integration-tests",
"xcm/xcm-simulator",
"xcm/xcm-simulator/example",
"xcm/xcm-simulator/fuzzer",
"xcm/pallet-xcm",
"xcm/pallet-xcm-benchmarks",
"xcm/procedural",
"node/client",
"node/collation-generation",
"node/core/approval-voting",
"node/core/av-store",
"node/core/backing",
"node/core/bitfield-signing",
"node/core/candidate-validation",
"node/core/chain-api",
"node/core/chain-selection",
"node/core/dispute-coordinator",
"node/core/parachains-inherent",
"node/core/provisioner",
"node/core/pvf",
"node/core/pvf/common",
"node/core/pvf/execute-worker",
"node/core/pvf/prepare-worker",
"node/core/pvf-checker",
"node/core/runtime-api",
"node/network/approval-distribution",
"node/network/bridge",
"node/network/protocol",
"node/network/statement-distribution",
"node/network/bitfield-distribution",
"node/network/availability-distribution",
"node/network/availability-recovery",
"node/network/collator-protocol",
"node/network/gossip-support",
"node/network/dispute-distribution",
"node/overseer",
"node/malus",
"node/primitives",
"node/service",
"node/subsystem",
"node/subsystem-types",
"node/subsystem-test-helpers",
"node/subsystem-util",
"node/jaeger",
"node/gum",
"node/gum/proc-macro",
"node/metrics",
"node/test/client",
"node/test/performance-test",
"node/test/service",
"node/zombienet-backchannel",
"rpc",
"parachain",
"parachain/test-parachains",
"parachain/test-parachains/adder",
"parachain/test-parachains/adder/collator",
"parachain/test-parachains/halt",
"parachain/test-parachains/undying",
"parachain/test-parachains/undying/collator",
"utils/staking-miner",
"utils/remote-ext-tests/bags-list",
"utils/generate-bags",
]
[badges]
maintenance = { status = "actively-developed" }
# 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.
#
# 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-dalek = { 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 }
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 }
reed-solomon-novelpoly = { 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 }
substrate-bip39 = {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 }
[profile.release]
# Polkadot runtime requires unwinding.
panic = "unwind"
opt-level = 3
# make sure dev builds with backtrace do
# not slow us down
[profile.dev.package.backtrace]
inherits = "release"
[profile.production]
inherits = "release"
lto = true
codegen-units = 1
[profile.testnet]
inherits = "release"
debug = 1 # debug symbols are useful for profilers
debug-assertions = true
overflow-checks = true
[features]
runtime-benchmarks= [ "polkadot-cli/runtime-benchmarks" ]
try-runtime = [ "polkadot-cli/try-runtime" ]
fast-runtime = [ "polkadot-cli/fast-runtime" ]
runtime-metrics = [ "polkadot-cli/runtime-metrics" ]
pyroscope = ["polkadot-cli/pyroscope"]
jemalloc-allocator = ["polkadot-node-core-pvf-prepare-worker/jemalloc-allocator", "polkadot-overseer/jemalloc-allocator"]
[patch."https://github.com/paritytech/substrate"]
node-template = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/bin/node-template/node" }
frame-benchmarking = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/benchmarking" }
frame-support = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/support" }
frame-support-procedural = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/support/procedural" }
frame-support-procedural-tools = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/support/procedural/tools" }
frame-support-procedural-tools-derive = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/support/procedural/tools/derive" }
sp-api = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/api" }
sp-api-proc-macro = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/api/proc-macro" }
sp-core = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/core" }
sp-core-hashing = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/core/hashing" }
sp-std = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/std" }
sp-debug-derive = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/debug-derive" }
sp-externalities = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/externalities" }
sp-storage = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/storage" }
sp-runtime-interface = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/runtime-interface" }
sp-runtime-interface-proc-macro = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/runtime-interface/proc-macro" }
sp-tracing = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/tracing" }
sp-wasm-interface = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/wasm-interface" }
sp-io = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/io" }
sp-keystore = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/keystore" }
sp-state-machine = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/state-machine" }
sp-panic-handler = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/panic-handler" }
sp-trie = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/trie" }
sp-runtime = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/runtime" }
sp-application-crypto = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/application-crypto" }
sp-arithmetic = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/arithmetic" }
sp-weights = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/weights" }
substrate-test-runtime-client = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/test-utils/runtime/client" }
sc-block-builder = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/block-builder" }
sc-client-api = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/api" }
substrate-prometheus-endpoint = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/utils/prometheus" }
sc-executor = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/executor" }
sc-executor-common = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/executor/common" }
sc-allocator = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/allocator" }
sp-maybe-compressed-blob = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/maybe-compressed-blob" }
sc-executor-wasmtime = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/executor/wasmtime" }
sc-runtime-test = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/executor/runtime-test" }
substrate-wasm-builder = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/utils/wasm-builder" }
sp-version = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/version" }
sp-core-hashing-proc-macro = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/core/hashing/proc-macro" }
sp-version-proc-macro = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/version/proc-macro" }
sc-tracing = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/tracing" }
sc-rpc-server = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/rpc-servers" }
sc-tracing-proc-macro = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/tracing/proc-macro" }
sp-blockchain = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/blockchain" }
sp-consensus = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/consensus/common" }
sp-inherents = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/inherents" }
sp-test-primitives = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/test-primitives" }
sp-database = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/database" }
sp-rpc = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/rpc" }
substrate-test-runtime = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/test-utils/runtime" }
frame-executive = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/executive" }
frame-system = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/system" }
frame-try-runtime = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/try-runtime" }
pallet-balances = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/balances" }
pallet-transaction-payment = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/transaction-payment" }
frame-system-rpc-runtime-api = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/system/rpc/runtime-api" }
pallet-babe = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/babe" }
pallet-authorship = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/authorship" }
pallet-session = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/session" }
pallet-timestamp = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/timestamp" }
sp-timestamp = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/timestamp" }
sp-session = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/session" }
sp-staking = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/staking" }
sp-consensus-babe = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/consensus/babe" }
sp-consensus-slots = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/consensus/slots" }
frame-election-provider-support = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/election-provider-support" }
frame-election-provider-solution-type = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/election-provider-support/solution-type" }
sp-npos-elections = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/npos-elections" }
substrate-test-utils = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/test-utils" }
substrate-test-utils-derive = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/test-utils/derive" }
sc-service = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/service" }
sc-chain-spec = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/chain-spec" }
sc-chain-spec-derive = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/chain-spec/derive" }
sc-network = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/network" }
sc-consensus = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/consensus/common" }
sc-utils = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/utils" }
sc-network-common = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/network/common" }
sp-consensus-grandpa = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/consensus/grandpa" }
sc-network-light = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/network/light" }
sc-network-sync = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/network/sync" }
fork-tree = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/utils/fork-tree" }
sc-telemetry = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/telemetry" }
sc-client-db = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/db" }
sc-state-db = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/state-db" }
kitchensink-runtime = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/bin/node/runtime" }
frame-benchmarking-pallet-pov = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/benchmarking/pov" }
frame-system-benchmarking = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/system/benchmarking" }
node-primitives = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/bin/node/primitives" }
pallet-alliance = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/alliance" }
pallet-collective = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/collective" }
pallet-identity = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/identity" }
pallet-asset-conversion = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/asset-conversion" }
pallet-assets = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/assets" }
pallet-asset-rate = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/asset-rate" }
pallet-asset-tx-payment = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/transaction-payment/asset-tx-payment" }
pallet-authority-discovery = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/authority-discovery" }
sp-authority-discovery = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/authority-discovery" }
pallet-bags-list = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/bags-list" }
pallet-bounties = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/bounties" }
pallet-treasury = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/treasury" }
pallet-utility = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/utility" }
pallet-root-testing = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/root-testing" }
pallet-child-bounties = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/child-bounties" }
pallet-contracts = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/contracts" }
pallet-contracts-primitives = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/contracts/primitives" }
pallet-contracts-proc-macro = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/contracts/proc-macro" }
pallet-insecure-randomness-collective-flip = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/insecure-randomness-collective-flip" }
pallet-proxy = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/proxy" }
pallet-conviction-voting = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/conviction-voting" }
pallet-scheduler = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/scheduler" }
pallet-preimage = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/preimage" }
pallet-core-fellowship = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/core-fellowship" }
pallet-democracy = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/democracy" }
pallet-election-provider-multi-phase = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/election-provider-multi-phase" }
pallet-election-provider-support-benchmarking = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/election-provider-support/benchmarking" }
pallet-elections-phragmen = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/elections-phragmen" }
pallet-fast-unstake = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/fast-unstake" }
pallet-staking = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/staking" }
pallet-staking-reward-curve = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/staking/reward-curve" }
pallet-glutton = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/glutton" }
pallet-grandpa = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/grandpa" }
pallet-offences = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/offences" }
sp-keyring = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/keyring" }
pallet-im-online = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/im-online" }
pallet-indices = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/indices" }
pallet-lottery = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/lottery" }
frame-support-test = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/support/test" }
frame-support-test-pallet = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/support/test/pallet" }
pallet-membership = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/membership" }
pallet-message-queue = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/message-queue" }
pallet-mmr = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/merkle-mountain-range" }
sp-mmr-primitives = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/merkle-mountain-range" }
pallet-multisig = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/multisig" }
pallet-nft-fractionalization = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/nft-fractionalization" }
pallet-nfts = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/nfts" }
pallet-nfts-runtime-api = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/nfts/runtime-api" }
pallet-nis = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/nis" }
pallet-nomination-pools = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/nomination-pools" }
pallet-nomination-pools-benchmarking = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/nomination-pools/benchmarking" }
pallet-nomination-pools-runtime-api = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/nomination-pools/runtime-api" }
pallet-offences-benchmarking = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/offences/benchmarking" }
pallet-ranked-collective = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/ranked-collective" }
pallet-recovery = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/recovery" }
pallet-referenda = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/referenda" }
pallet-remark = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/remark" }
pallet-salary = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/salary" }
pallet-session-benchmarking = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/session/benchmarking" }
pallet-society = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/society" }
pallet-staking-runtime-api = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/staking/runtime-api" }
pallet-state-trie-migration = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/state-trie-migration" }
frame-remote-externalities = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/utils/frame/remote-externalities" }
substrate-rpc-client = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/utils/frame/rpc/client" }
sc-rpc-api = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/rpc-api" }
sc-transaction-pool-api = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/transaction-pool/api" }
substrate-state-trie-migration-rpc = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/utils/frame/rpc/state-trie-migration-rpc" }
pallet-statement = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/statement" }
sp-statement-store = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/statement-store" }
pallet-sudo = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/sudo" }
pallet-tips = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/tips" }
pallet-transaction-payment-rpc-runtime-api = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/transaction-payment/rpc/runtime-api" }
pallet-transaction-storage = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/transaction-storage" }
sp-transaction-storage-proof = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/transaction-storage-proof" }
pallet-uniques = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/uniques" }
pallet-vesting = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/vesting" }
pallet-whitelist = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/whitelist" }
sp-block-builder = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/block-builder" }
sp-offchain = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/offchain" }
sp-transaction-pool = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/transaction-pool" }
sc-informant = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/informant" }
sc-keystore = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/keystore" }
sc-network-bitswap = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/network/bitswap" }
sc-network-transactions = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/network/transactions" }
sc-offchain = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/offchain" }
sc-transaction-pool = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/transaction-pool" }
substrate-test-runtime-transaction-pool = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/test-utils/runtime/transaction-pool" }
sc-rpc = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/rpc" }
sc-rpc-spec-v2 = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/rpc-spec-v2" }
sc-storage-monitor = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/storage-monitor" }
sc-sysinfo = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/sysinfo" }
pallet-beefy-mmr = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/beefy-mmr" }
binary-merkle-tree = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/utils/binary-merkle-tree" }
pallet-beefy = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/beefy" }
sp-consensus-beefy = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/consensus/beefy" }
sp-consensus-aura = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/consensus/aura" }
substrate-test-client = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/test-utils/client" }
sp-runtime-interface-test-wasm = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/runtime-interface/test-wasm" }
sp-metadata-ir = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/metadata-ir" }
frame-benchmarking-cli = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/utils/frame/benchmarking-cli" }
sc-cli = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/cli" }
node-template-runtime = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/bin/node-template/runtime" }
pallet-aura = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/aura" }
pallet-template = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/bin/node-template/pallets/template" }
pallet-transaction-payment-rpc = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/transaction-payment/rpc" }
sc-basic-authorship = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/basic-authorship" }
sc-proposer-metrics = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/proposer-metrics" }
sc-consensus-aura = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/consensus/aura" }
sc-consensus-slots = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/consensus/slots" }
sc-network-test = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/network/test" }
sc-consensus-grandpa = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/consensus/grandpa" }
sc-network-gossip = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/network-gossip" }
sc-statement-store = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/statement-store" }
substrate-frame-rpc-system = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/utils/frame/rpc/system" }
try-runtime-cli = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/utils/frame/try-runtime/cli" }
substrate-cli-test-utils = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/test-utils/cli" }
substrate-build-script-utils = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/utils/build-script-utils" }
node-bench = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/bin/node/bench" }
node-testing = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/bin/node/testing" }
node-executor = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/bin/node/executor" }
node-cli = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/bin/node/cli" }
node-inspect = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/bin/node/inspect" }
node-rpc = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/bin/node/rpc" }
mmr-rpc = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/merkle-mountain-range/rpc" }
sc-consensus-babe = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/consensus/babe" }
sc-consensus-epochs = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/consensus/epochs" }
sc-consensus-babe-rpc = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/consensus/babe/rpc" }
sc-consensus-grandpa-rpc = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/consensus/grandpa/rpc" }
sc-sync-state-rpc = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/sync-state-rpc" }
sc-authority-discovery = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/authority-discovery" }
sc-network-statement = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/network/statement" }
sc-service-test = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/service/test" }
substrate-frame-cli = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/utils/frame/frame-utilities-cli" }
chain-spec-builder = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/bin/utils/chain-spec-builder" }
subkey = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/bin/utils/subkey" }
sc-consensus-beefy = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/consensus/beefy" }
sc-consensus-beefy-rpc = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/consensus/beefy/rpc" }
sc-consensus-manual-seal = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/consensus/manual-seal" }
sc-consensus-pow = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/consensus/pow" }
sp-consensus-pow = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/consensus/pow" }
mmr-gadget = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/client/merkle-mountain-range" }
pallet-atomic-swap = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/atomic-swap" }
pallet-bags-list-fuzzer = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/bags-list/fuzzer" }
pallet-bags-list-remote-tests = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/bags-list/remote-tests" }
pallet-election-provider-e2e-test = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/election-provider-multi-phase/test-staking-e2e" }
frame-election-solution-type-fuzzer = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/election-provider-support/solution-type/fuzzer" }
pallet-example-basic = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/examples/basic" }
pallet-example-offchain-worker = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/examples/offchain-worker" }
pallet-dev-mode = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/examples/dev-mode" }
pallet-default-config-example = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/examples/default-config" }
pallet-nicks = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/nicks" }
pallet-node-authorization = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/node-authorization" }
pallet-nomination-pools-fuzzer = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/nomination-pools/fuzzer" }
pallet-nomination-pools-test-staking = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/nomination-pools/test-staking" }
pallet-scored-pool = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/scored-pool" }
pallet-staking-reward-fn = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/staking/reward-fn" }
pallet-root-offences = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/root-offences" }
frame-support-test-compile-pass = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/frame/support/test/compile_pass" }
sp-api-test = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/api/test" }
sp-application-crypto-test = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/application-crypto/test" }
sp-arithmetic-fuzzer = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/arithmetic/fuzzer" }
sp-npos-elections-fuzzer = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/npos-elections/fuzzer" }
sp-runtime-interface-test = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/runtime-interface/test" }
sp-runtime-interface-test-wasm-deprecated = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/primitives/runtime-interface/test-wasm-deprecated" }
node-template-release = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/scripts/ci/node-template-release" }
substrate-test-utils-test-crate = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/test-utils/test-crate" }
substrate-frame-rpc-support = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/utils/frame/rpc/support" }
generate-bags = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/utils/frame/generate-bags" }
node-runtime-generate-bags = { path = "/Users/tonyalaribe.parity/Projects/parity/cub/substrate/utils/frame/generate-bags/node-runtime" }
# Configuration for building a .deb package - for use with `cargo-deb`
[package.metadata.deb]
name = "polkadot"
extended-description = "Implementation of a https://polkadot.network node in Rust based on the Substrate framework."
section = "misc"
maintainer = "[email protected]"
license-file = ["LICENSE", "0"]
# https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html
maintainer-scripts = "scripts/packaging/deb-maintainer-scripts"
assets = [
["target/release/polkadot", "/usr/bin/", "755"],
["scripts/packaging/polkadot.service", "/lib/systemd/system/", "644"]
]
conf-files = [
"/etc/default/polkadot"
]
[package.metadata.spellcheck]
config = "./scripts/ci/gitlab/spellcheck.toml"