-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
286 lines (284 loc) · 30.5 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
[workspace.package]
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
repository = "https://github.com/zdave-parity/polkadot-bulletin-chain.git"
[workspace]
resolver = "2"
members = [
"bridges/bin/runtime-common",
"bridges/modules/grandpa",
"bridges/modules/messages",
"bridges/modules/parachains",
"bridges/modules/xcm-bridge-hub-router",
"node",
"pallets/relayer-set",
"pallets/transaction-storage",
"pallets/validator-set",
"runtime",
]
[profile.release]
panic = "unwind"
[patch."https://github.com/paritytech/substrate.git"]
node-template = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-benchmarking = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-support = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-support-procedural = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-support-procedural-tools = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-support-procedural-tools-derive = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-api = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-api-proc-macro = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-core = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-core-hashing = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-debug-derive = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-externalities = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-std = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-storage = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-runtime-interface = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-runtime-interface-proc-macro = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-tracing = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-wasm-interface = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-io = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-keystore = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-state-machine = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-panic-handler = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-trie = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-runtime = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-application-crypto = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-arithmetic = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-weights = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-test-runtime-client = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-block-builder = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-client-api = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-prometheus-endpoint = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-executor = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-executor-common = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-allocator = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-maybe-compressed-blob = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-executor-wasmtime = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-runtime-test = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-wasm-builder = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-version = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-core-hashing-proc-macro = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-version-proc-macro = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-tracing = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-tracing-proc-macro = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-blockchain = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-consensus = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-inherents = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-test-primitives = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-database = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-rpc = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-test-runtime = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-executive = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-system = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-try-runtime = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-balances = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-transaction-payment = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-system-rpc-runtime-api = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-babe = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-authorship = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-session = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-timestamp = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-timestamp = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-session = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-staking = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-consensus-babe = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-consensus-slots = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-election-provider-support = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-election-provider-solution-type = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-npos-elections = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-test-utils = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-test-utils-derive = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-service = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-chain-spec = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-chain-spec-derive = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-network = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-network-common = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-consensus = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-utils = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-consensus-grandpa = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-network-light = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-network-sync = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
fork-tree = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-telemetry = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-client-db = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-state-db = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
kitchensink-runtime = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-benchmarking-pallet-pov = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-system-benchmarking = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
node-primitives = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-alliance = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-collective = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-identity = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-asset-conversion = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-assets = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-asset-conversion-tx-payment = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-asset-rate = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-asset-tx-payment = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-authority-discovery = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-authority-discovery = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-bags-list = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-bounties = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-treasury = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-utility = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-root-testing = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-child-bounties = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-contracts = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-contracts-primitives = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-contracts-proc-macro = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-insecure-randomness-collective-flip = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-proxy = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-conviction-voting = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-scheduler = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-preimage = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-core-fellowship = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-democracy = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-election-provider-multi-phase = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-election-provider-support-benchmarking = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-elections-phragmen = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-fast-unstake = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-staking = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-staking-reward-curve = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-glutton = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-grandpa = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-offences = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-keyring = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-im-online = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-indices = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-lottery = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-support-test = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-support-test-pallet = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-membership = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-message-queue = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-mmr = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-mmr-primitives = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-multisig = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-nft-fractionalization = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-nfts = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-nfts-runtime-api = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-nis = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-nomination-pools = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-nomination-pools-benchmarking = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-nomination-pools-runtime-api = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-offences-benchmarking = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-ranked-collective = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-recovery = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-referenda = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-remark = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-salary = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-session-benchmarking = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-society = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-staking-runtime-api = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-state-trie-migration = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-remote-externalities = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-rpc-client = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-rpc-api = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-transaction-pool-api = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-state-trie-migration-rpc = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-statement = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-statement-store = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-sudo = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-tips = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-transaction-storage = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-transaction-storage-proof = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-uniques = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-vesting = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-whitelist = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-block-builder = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-offchain = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-transaction-pool = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-informant = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-keystore = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-network-transactions = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-rpc = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-transaction-pool = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-test-runtime-transaction-pool = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-rpc-server = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-rpc-spec-v2 = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-sysinfo = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-consensus-aura = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-test-client = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-offchain = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-runtime-interface-test-wasm = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-metadata-ir = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-benchmarking-cli = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-cli = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
node-template-runtime = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-aura = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-template = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-transaction-payment-rpc = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-basic-authorship = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-proposer-metrics = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-consensus-aura = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-consensus-slots = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-network-test = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-consensus-grandpa = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-network-gossip = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-statement-store = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-frame-rpc-system = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
try-runtime-cli = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-cli-test-utils = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-build-script-utils = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
node-bench = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
node-testing = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
node-executor = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
node-cli = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
node-inspect = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
node-rpc = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
mmr-rpc = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-consensus-babe = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-consensus-epochs = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-consensus-babe-rpc = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-consensus-grandpa-rpc = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-sync-state-rpc = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-authority-discovery = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-network-statement = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-storage-monitor = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-service-test = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-frame-cli = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
chain-spec-builder = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
subkey = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-consensus-beefy = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-consensus-beefy = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-consensus-beefy-rpc = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-consensus-manual-seal = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sc-consensus-pow = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-consensus-pow = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
mmr-gadget = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-atomic-swap = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-bags-list-fuzzer = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-bags-list-remote-tests = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-beefy = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-beefy-mmr = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
binary-merkle-tree = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-election-provider-e2e-test = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-election-solution-type-fuzzer = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-examples = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-default-config-example = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-dev-mode = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-example-basic = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-example-kitchensink = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-example-offchain-worker = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-example-split = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-nicks = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-node-authorization = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-nomination-pools-fuzzer = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-nomination-pools-test-staking = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-scored-pool = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-staking-reward-fn = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
pallet-root-offences = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
frame-support-test-compile-pass = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-api-test = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-application-crypto-test = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-arithmetic-fuzzer = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-crypto-ec-utils = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-genesis-builder = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-npos-elections-fuzzer = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-runtime-interface-test = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
sp-runtime-interface-test-wasm-deprecated = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
node-template-release = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-test-utils-test-crate = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
substrate-frame-rpc-support = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
generate-bags = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }
node-runtime-generate-bags = { git = "https://github.com/zdave-parity/substrate.git" , branch = "polkadot-bulletin-chain" }