Cargo.lock 252 KB
Newer Older
1
2
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
3
4
version = 3

Gavin Wood's avatar
Gavin Wood committed
5
6
7
8
[[package]]
name = "Inflector"
version = "0.11.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
9
checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
Gavin Wood's avatar
Gavin Wood committed
10
dependencies = [
11
12
 "lazy_static",
 "regex",
Gavin Wood's avatar
Gavin Wood committed
13
14
]

15
16
[[package]]
name = "addr2line"
17
version = "0.14.1"
18
source = "registry+https://github.com/rust-lang/crates.io-index"
19
checksum = "a55f82cfe485775d02112886f4169bde0c5894d75e79ead7eafe7e40a25e45f7"
20
dependencies = [
21
 "gimli",
22
23
]

24
25
[[package]]
name = "adler"
26
version = "0.2.2"
27
source = "registry+https://github.com/rust-lang/crates.io-index"
28
checksum = "ccc9a9dd069569f212bc4330af9f17c4afb5e8ce185e83dbb14f1349dda18b10"
29

30
31
[[package]]
name = "aead"
32
version = "0.3.2"
33
source = "registry+https://github.com/rust-lang/crates.io-index"
34
checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331"
35
dependencies = [
Pierre Krieger's avatar
Pierre Krieger committed
36
 "generic-array 0.14.4",
37
38
39
40
]

[[package]]
name = "aes"
41
version = "0.4.0"
42
source = "registry+https://github.com/rust-lang/crates.io-index"
43
checksum = "f7001367fde4c768a19d1029f0a8be5abd9308e1119846d5bd9ad26297b8faf5"
44
dependencies = [
45
46
 "aes-soft",
 "aesni",
47
 "block-cipher",
48
49
50
51
]

[[package]]
name = "aes-gcm"
52
version = "0.6.0"
53
source = "registry+https://github.com/rust-lang/crates.io-index"
54
checksum = "86f5007801316299f922a6198d1d09a0bae95786815d066d5880d13f7c45ead1"
55
56
57
dependencies = [
 "aead",
 "aes",
58
 "block-cipher",
59
 "ghash",
60
 "subtle 2.2.3",
61
62
63
64
]

[[package]]
name = "aes-soft"
65
version = "0.4.0"
66
source = "registry+https://github.com/rust-lang/crates.io-index"
67
checksum = "4925647ee64e5056cf231608957ce7c81e12d6d6e316b9ce1404778cc1d35fa7"
68
dependencies = [
69
 "block-cipher",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
70
 "byteorder",
71
 "opaque-debug 0.2.3",
72
73
74
75
]

[[package]]
name = "aesni"
76
version = "0.7.0"
77
source = "registry+https://github.com/rust-lang/crates.io-index"
78
checksum = "d050d39b0b7688b3a3254394c3e30a9d66c41dcf9b05b0e2dbdc623f6505d264"
79
dependencies = [
80
 "block-cipher",
81
 "opaque-debug 0.2.3",
82
83
]

84
85
86
87
88
89
[[package]]
name = "ahash"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6789e291be47ace86a60303502173d84af8327e3627ecf334356ee0f87a164c"

90
91
[[package]]
name = "aho-corasick"
92
version = "0.7.13"
93
source = "registry+https://github.com/rust-lang/crates.io-index"
94
checksum = "043164d8ba5c4c3035fec9bbee8647c0261d788f3474306f93bb65901cae0e86"
95
dependencies = [
96
 "memchr",
97
98
]

99
100
101
102
103
104
[[package]]
name = "always-assert"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbf688625d06217d5b1bb0ea9d9c44a1635fd0ee3534466388d18203174f4d11"

asynchronous rob's avatar
asynchronous rob committed
105
106
107
108
[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
109
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
asynchronous rob's avatar
asynchronous rob committed
110
dependencies = [
111
 "winapi 0.3.9",
asynchronous rob's avatar
asynchronous rob committed
112
113
]

114
115
116
117
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
118
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
119
dependencies = [
120
 "winapi 0.3.9",
121
122
]

123
124
[[package]]
name = "anyhow"
125
version = "1.0.34"
126
source = "registry+https://github.com/rust-lang/crates.io-index"
127
checksum = "bf8dcb5b4bbaa28653b647d8c77bd4ed40183b48882e130c1f1ffb73de069fd7"
128

129
130
131
132
[[package]]
name = "approx"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
133
checksum = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"
134
dependencies = [
Sergey Pepyakin's avatar
Sergey Pepyakin committed
135
 "num-traits",
136
137
]

138
139
[[package]]
name = "arc-swap"
140
version = "0.4.7"
141
source = "registry+https://github.com/rust-lang/crates.io-index"
142
checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034"
143

asynchronous rob's avatar
asynchronous rob committed
144
145
[[package]]
name = "arrayref"
Gavin Wood's avatar
Gavin Wood committed
146
version = "0.3.6"
asynchronous rob's avatar
asynchronous rob committed
147
source = "registry+https://github.com/rust-lang/crates.io-index"
148
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
asynchronous rob's avatar
asynchronous rob committed
149
150
151

[[package]]
name = "arrayvec"
152
version = "0.4.12"
asynchronous rob's avatar
asynchronous rob committed
153
source = "registry+https://github.com/rust-lang/crates.io-index"
154
checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"
asynchronous rob's avatar
asynchronous rob committed
155
dependencies = [
156
 "nodrop",
asynchronous rob's avatar
asynchronous rob committed
157
158
]

159
160
[[package]]
name = "arrayvec"
161
version = "0.5.2"
162
source = "registry+https://github.com/rust-lang/crates.io-index"
163
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
164

asynchronous rob's avatar
asynchronous rob committed
165
166
[[package]]
name = "asn1_der"
167
version = "0.6.3"
asynchronous rob's avatar
asynchronous rob committed
168
source = "registry+https://github.com/rust-lang/crates.io-index"
169
checksum = "6fce6b6a0ffdafebd82c87e79e3f40e8d2c523e5fea5566ff6b90509bf98d638"
asynchronous rob's avatar
asynchronous rob committed
170
dependencies = [
171
 "asn1_der_derive",
172
173
174
175
]

[[package]]
name = "asn1_der_derive"
176
version = "0.1.2"
177
source = "registry+https://github.com/rust-lang/crates.io-index"
178
checksum = "0d0864d84b8e07b145449be9a8537db86bf9de5ce03b913214694643b4743502"
179
dependencies = [
Sergey Pepyakin's avatar
Sergey Pepyakin committed
180
181
 "quote",
 "syn",
asynchronous rob's avatar
asynchronous rob committed
182
183
]

184
185
[[package]]
name = "assert_cmd"
186
version = "1.0.2"
187
source = "registry+https://github.com/rust-lang/crates.io-index"
188
checksum = "3dc1679af9a1ab4bea16f228b05d18f8363f8327b1fa8db00d2760cfafc6b61e"
189
dependencies = [
190
191
192
193
 "doc-comment",
 "predicates",
 "predicates-core",
 "predicates-tree",
194
 "wait-timeout",
195
196
]

Gavin Wood's avatar
Gavin Wood committed
197
198
[[package]]
name = "assert_matches"
199
version = "1.5.0"
Gavin Wood's avatar
Gavin Wood committed
200
source = "registry+https://github.com/rust-lang/crates.io-index"
201
checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9"
Gavin Wood's avatar
Gavin Wood committed
202

203
204
[[package]]
name = "async-channel"
205
version = "1.5.1"
206
source = "registry+https://github.com/rust-lang/crates.io-index"
207
checksum = "59740d83946db6a5af71ae25ddf9562c2b176b2ca42cf99a455f09f4a220d6b9"
208
209
210
211
212
213
dependencies = [
 "concurrent-queue",
 "event-listener",
 "futures-core",
]

214
215
[[package]]
name = "async-executor"
216
version = "1.3.0"
217
source = "registry+https://github.com/rust-lang/crates.io-index"
218
checksum = "d373d78ded7d0b3fa8039375718cde0aace493f2e34fb60f51cbf567562ca801"
219
dependencies = [
220
 "async-task",
221
222
 "concurrent-queue",
 "fastrand",
223
 "futures-lite",
224
 "once_cell",
225
 "vec-arena",
226
227
228
229
]

[[package]]
name = "async-global-executor"
230
version = "1.4.2"
231
source = "registry+https://github.com/rust-lang/crates.io-index"
232
checksum = "124ac8c265e407641c3362b8f4d39cdb4e243885b71eef087be27199790f5a3a"
233
dependencies = [
234
235
236
 "async-executor",
 "async-io",
 "futures-lite",
237
 "num_cpus",
238
 "once_cell",
239
240
241
242
]

[[package]]
name = "async-io"
243
version = "1.3.1"
244
source = "registry+https://github.com/rust-lang/crates.io-index"
245
checksum = "9315f8f07556761c3e48fec2e6b276004acf426e6dc068b2c2251854d65ee0fd"
246
247
248
dependencies = [
 "concurrent-queue",
 "fastrand",
249
 "futures-lite",
250
 "libc",
251
 "log",
252
 "nb-connect",
253
 "once_cell",
254
 "parking",
255
 "polling",
256
 "vec-arena",
257
 "waker-fn",
258
259
260
 "winapi 0.3.9",
]

261
262
263
264
265
266
267
268
269
[[package]]
name = "async-mutex"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e"
dependencies = [
 "event-listener",
]

270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
[[package]]
name = "async-process"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c8cea09c1fb10a317d1b5af8024eeba256d6554763e85ecd90ff8df31c7bbda"
dependencies = [
 "async-io",
 "blocking",
 "cfg-if 0.1.10",
 "event-listener",
 "futures-lite",
 "once_cell",
 "signal-hook",
 "winapi 0.3.9",
]

286
287
[[package]]
name = "async-std"
288
version = "1.8.0"
289
source = "registry+https://github.com/rust-lang/crates.io-index"
290
checksum = "8f9f84f1280a2b436a2c77c2582602732b6c2f4321d5494d6e799e6c367859a8"
291
dependencies = [
292
 "async-channel",
293
 "async-global-executor",
294
 "async-io",
295
 "async-mutex",
296
 "async-process",
297
 "blocking",
298
 "crossbeam-utils 0.8.1",
299
 "futures-channel",
300
301
 "futures-core",
 "futures-io",
302
 "futures-lite",
303
 "gloo-timers",
304
 "kv-log-macro",
305
 "log",
306
307
 "memchr",
 "num_cpus",
308
 "once_cell",
309
 "pin-project-lite 0.2.4",
310
311
 "pin-utils",
 "slab",
312
 "wasm-bindgen-futures",
313
314
]

315
316
317
318
319
320
321
322
323
324
325
326
327
328
[[package]]
name = "async-std-resolver"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f665c56111e244fe38e7708ee10948a4356ad6a548997c21f5a63a0f4e0edc4d"
dependencies = [
 "async-std",
 "async-trait",
 "futures-io",
 "futures-util",
 "pin-utils",
 "trust-dns-resolver",
]

329
330
331
332
333
334
[[package]]
name = "async-task"
version = "4.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0"

335
336
[[package]]
name = "async-trait"
337
version = "0.1.42"
338
source = "registry+https://github.com/rust-lang/crates.io-index"
339
checksum = "8d3a45e77e34375a7923b1e8febb049bb011f064714a8e17a1a616fef01da13d"
340
dependencies = [
Sergey Pepyakin's avatar
Sergey Pepyakin committed
341
342
343
 "proc-macro2",
 "quote",
 "syn",
344
345
]

346
347
348
349
350
351
352
353
354
355
356
357
358
[[package]]
name = "asynchronous-codec"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb4401f0a3622dad2e0763fa79e0eb328bc70fb7dccfdd645341f00d671247d6"
dependencies = [
 "bytes 1.0.1",
 "futures-sink",
 "futures-util",
 "memchr",
 "pin-project-lite 0.2.4",
]

359
360
361
362
363
364
365
366
367
368
369
370
371
[[package]]
name = "asynchronous-codec"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0de5164e5edbf51c45fb8c2d9664ae1c095cce1b265ecf7569093c0d66ef690"
dependencies = [
 "bytes 1.0.1",
 "futures-sink",
 "futures-util",
 "memchr",
 "pin-project-lite 0.2.4",
]

Seun Lanlege's avatar
Seun Lanlege committed
372
373
[[package]]
name = "atomic"
Shawn Tabrizi's avatar
Shawn Tabrizi committed
374
version = "0.5.0"
Seun Lanlege's avatar
Seun Lanlege committed
375
source = "registry+https://github.com/rust-lang/crates.io-index"
Shawn Tabrizi's avatar
Shawn Tabrizi committed
376
377
checksum = "c3410529e8288c463bedb5930f82833bc0c90e5d2fe639a56582a4d09220b281"
dependencies = [
378
 "autocfg",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
379
]
Seun Lanlege's avatar
Seun Lanlege committed
380

381
382
383
384
385
386
[[package]]
name = "atomic-waker"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"

asynchronous rob's avatar
asynchronous rob committed
387
388
[[package]]
name = "atty"
Gavin Wood's avatar
Gavin Wood committed
389
version = "0.2.14"
asynchronous rob's avatar
asynchronous rob committed
390
source = "registry+https://github.com/rust-lang/crates.io-index"
391
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
asynchronous rob's avatar
asynchronous rob committed
392
dependencies = [
393
394
 "hermit-abi",
 "libc",
395
 "winapi 0.3.9",
asynchronous rob's avatar
asynchronous rob committed
396
397
]

Gavin Wood's avatar
Gavin Wood committed
398
399
[[package]]
name = "autocfg"
400
version = "1.0.0"
Gavin Wood's avatar
Gavin Wood committed
401
source = "registry+https://github.com/rust-lang/crates.io-index"
402
checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
Gavin Wood's avatar
Gavin Wood committed
403

asynchronous rob's avatar
asynchronous rob committed
404
405
[[package]]
name = "backtrace"
406
version = "0.3.56"
asynchronous rob's avatar
asynchronous rob committed
407
source = "registry+https://github.com/rust-lang/crates.io-index"
408
checksum = "9d117600f438b1707d4e4ae15d3595657288f8235a0eb593e80ecc98ab34e1bc"
asynchronous rob's avatar
asynchronous rob committed
409
dependencies = [
410
 "addr2line",
411
 "cfg-if 1.0.0",
412
 "libc",
413
 "miniz_oxide",
414
 "object 0.23.0",
415
 "rustc-demangle",
asynchronous rob's avatar
asynchronous rob committed
416
417
]

418
419
420
421
422
423
[[package]]
name = "base-x"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4521f3e3d031370679b3b140beb36dfe4801b09ac77e30c61941f97df3ef28b"

asynchronous rob's avatar
asynchronous rob committed
424
[[package]]
425
426
name = "base58"
version = "0.1.0"
asynchronous rob's avatar
asynchronous rob committed
427
source = "registry+https://github.com/rust-lang/crates.io-index"
428
checksum = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83"
asynchronous rob's avatar
asynchronous rob committed
429

430
431
432
433
434
435
[[package]]
name = "base64"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"

436
437
[[package]]
name = "base64"
438
version = "0.12.3"
439
source = "registry+https://github.com/rust-lang/crates.io-index"
440
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
441

Shawn Tabrizi's avatar
Shawn Tabrizi committed
442
443
444
445
446
447
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"

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
496
497
498
499
500
501
502
503
504
505
506
507
508
[[package]]
name = "beefy-gadget"
version = "0.1.0"
source = "git+https://github.com/paritytech/grandpa-bridge-gadget?branch=master#8213c08e3dcf7fc732b3be6c73f8c6d3619abae2"
dependencies = [
 "beefy-primitives",
 "futures 0.3.13",
 "hex",
 "log",
 "parity-scale-codec",
 "parking_lot 0.11.1",
 "sc-client-api",
 "sc-keystore",
 "sc-network",
 "sc-network-gossip",
 "sp-api",
 "sp-application-crypto",
 "sp-blockchain",
 "sp-consensus",
 "sp-core",
 "sp-keystore",
 "sp-runtime",
 "sp-utils",
 "substrate-prometheus-endpoint",
 "thiserror",
]

[[package]]
name = "beefy-gadget-rpc"
version = "0.1.0"
source = "git+https://github.com/paritytech/grandpa-bridge-gadget?branch=master#8213c08e3dcf7fc732b3be6c73f8c6d3619abae2"
dependencies = [
 "beefy-gadget",
 "beefy-primitives",
 "futures 0.3.13",
 "jsonrpc-core",
 "jsonrpc-core-client",
 "jsonrpc-derive",
 "jsonrpc-pubsub",
 "log",
 "parity-scale-codec",
 "sc-rpc",
 "serde",
 "serde_json",
 "sp-core",
 "sp-runtime",
]

[[package]]
name = "beefy-primitives"
version = "0.1.0"
source = "git+https://github.com/paritytech/grandpa-bridge-gadget?branch=master#8213c08e3dcf7fc732b3be6c73f8c6d3619abae2"
dependencies = [
 "parity-scale-codec",
 "sp-api",
 "sp-application-crypto",
 "sp-core",
 "sp-runtime",
 "sp-std",
]

Gavin Wood's avatar
Gavin Wood committed
509
510
[[package]]
name = "bincode"
511
version = "1.3.1"
Gavin Wood's avatar
Gavin Wood committed
512
source = "registry+https://github.com/rust-lang/crates.io-index"
513
checksum = "f30d3a39baa26f9651f17b375061f3233dde33424a8b72b0dbe93a68a0bc896d"
Gavin Wood's avatar
Gavin Wood committed
514
dependencies = [
Shawn Tabrizi's avatar
Shawn Tabrizi committed
515
 "byteorder",
516
 "serde",
Gavin Wood's avatar
Gavin Wood committed
517
518
]

519
520
[[package]]
name = "bindgen"
521
version = "0.54.0"
522
source = "registry+https://github.com/rust-lang/crates.io-index"
523
checksum = "66c0bb6167449588ff70803f4127f0684f9063097eca5016f37eb52b92c2cf36"
524
dependencies = [
525
526
 "bitflags",
 "cexpr",
527
 "cfg-if 0.1.10",
528
529
 "clang-sys",
 "clap",
530
 "env_logger 0.7.1",
531
532
 "lazy_static",
 "lazycell",
533
 "log",
534
 "peeking_take_while",
Sergey Pepyakin's avatar
Sergey Pepyakin committed
535
536
 "proc-macro2",
 "quote",
537
538
539
 "regex",
 "rustc-hash",
 "shlex",
540
 "which 3.1.1",
541
542
]

543
544
[[package]]
name = "bitflags"
545
version = "1.2.1"
546
source = "registry+https://github.com/rust-lang/crates.io-index"
547
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
548

Gavin Wood's avatar
Gavin Wood committed
549
550
[[package]]
name = "bitvec"
551
version = "0.20.1"
Gavin Wood's avatar
Gavin Wood committed
552
source = "registry+https://github.com/rust-lang/crates.io-index"
553
checksum = "f5011ffc90248764d7005b0e10c7294f5aa1bd87d9dd7248f4ad475b347c294d"
554
dependencies = [
555
 "funty",
556
 "radium",
557
558
 "tap",
 "wyz",
559
]
Gavin Wood's avatar
Gavin Wood committed
560

561
562
[[package]]
name = "blake2"
563
version = "0.9.0"
564
source = "registry+https://github.com/rust-lang/crates.io-index"
565
checksum = "84ce5b6108f8e154604bd4eb76a2f726066c3464d5a552a4229262a18c9bb471"
566
dependencies = [
567
568
 "byte-tools",
 "byteorder",
569
570
 "crypto-mac 0.8.0",
 "digest 0.9.0",
571
 "opaque-debug 0.2.3",
572
573
]

asynchronous rob's avatar
asynchronous rob committed
574
575
576
577
[[package]]
name = "blake2-rfc"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
578
checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400"
asynchronous rob's avatar
asynchronous rob committed
579
dependencies = [
580
581
 "arrayvec 0.4.12",
 "constant_time_eq",
asynchronous rob's avatar
asynchronous rob committed
582
583
]

Gavin Wood's avatar
Gavin Wood committed
584
585
[[package]]
name = "blake2b_simd"
586
version = "0.5.10"
Gavin Wood's avatar
Gavin Wood committed
587
source = "registry+https://github.com/rust-lang/crates.io-index"
588
checksum = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a"
Gavin Wood's avatar
Gavin Wood committed
589
dependencies = [
590
 "arrayref",
591
 "arrayvec 0.5.2",
592
 "constant_time_eq",
Gavin Wood's avatar
Gavin Wood committed
593
594
]

595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
[[package]]
name = "blake2s_simd"
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e461a7034e85b211a4acb57ee2e6730b32912b06c08cc242243c39fc21ae6a2"
dependencies = [
 "arrayref",
 "arrayvec 0.5.2",
 "constant_time_eq",
]

[[package]]
name = "blake3"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9ff35b701f3914bdb8fad3368d822c766ef2858b2583198e41639b936f09d3f"
dependencies = [
 "arrayref",
 "arrayvec 0.5.2",
 "cc",
 "cfg-if 0.1.10",
 "constant_time_eq",
 "crypto-mac 0.8.0",
 "digest 0.9.0",
]

621
622
[[package]]
name = "block-buffer"
623
version = "0.7.3"
624
source = "registry+https://github.com/rust-lang/crates.io-index"
625
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
626
dependencies = [
Shawn Tabrizi's avatar
Shawn Tabrizi committed
627
 "block-padding 0.1.5",
628
 "byte-tools",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
629
 "byteorder",
630
 "generic-array 0.12.3",
631
632
]

633
[[package]]
634
635
636
637
638
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
Shawn Tabrizi's avatar
Shawn Tabrizi committed
639
 "block-padding 0.2.1",
Pierre Krieger's avatar
Pierre Krieger committed
640
 "generic-array 0.14.4",
641
642
643
644
645
646
647
648
]

[[package]]
name = "block-cipher"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa136449e765dc7faa244561ccae839c394048667929af599b5d931ebe7b7f10"
dependencies = [
Pierre Krieger's avatar
Pierre Krieger committed
649
 "generic-array 0.14.4",
650
651
]

652
653
[[package]]
name = "block-padding"
654
version = "0.1.5"
655
source = "registry+https://github.com/rust-lang/crates.io-index"
656
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
657
dependencies = [
658
 "byte-tools",
659
660
]

Shawn Tabrizi's avatar
Shawn Tabrizi committed
661
662
663
664
665
666
[[package]]
name = "block-padding"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"

667
668
669
670
671
672
673
[[package]]
name = "blocking"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5e170dbede1f740736619b776d7251cb1b9095c435c34d8ca9f57fcd2f335e9"
dependencies = [
 "async-channel",
674
 "async-task",
675
676
 "atomic-waker",
 "fastrand",
677
 "futures-lite",
678
 "once_cell",
679
680
]

681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
[[package]]
name = "bp-kusama"
version = "0.1.0"
dependencies = [
 "bp-message-lane",
 "bp-runtime",
 "frame-support",
 "frame-system",
 "sp-api",
 "sp-core",
 "sp-runtime",
 "sp-std",
]

[[package]]
name = "bp-message-lane"
version = "0.1.0"
dependencies = [
 "bp-runtime",
 "frame-support",
 "frame-system",
 "parity-scale-codec",
 "sp-std",
]

[[package]]
name = "bp-polkadot"
version = "0.1.0"
dependencies = [
 "bp-message-lane",
 "bp-runtime",
 "frame-support",
 "frame-system",
 "sp-api",
 "sp-core",
 "sp-runtime",
 "sp-std",
]

[[package]]
name = "bp-runtime"
version = "0.1.0"
dependencies = [
 "frame-support",
 "num-traits",
 "parity-scale-codec",
 "sp-core",
 "sp-io",
 "sp-runtime",
 "sp-std",
]

733
734
735
736
737
738
[[package]]
name = "bs58"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"

739
740
[[package]]
name = "bstr"
741
version = "0.2.13"
742
source = "registry+https://github.com/rust-lang/crates.io-index"
743
checksum = "31accafdb70df7871592c058eca3985b71104e15ac32f64706022c58867da931"
744
dependencies = [
745
 "memchr",
746
747
]

748
749
750
751
752
753
754
755
756
[[package]]
name = "build-helper"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdce191bf3fa4995ce948c8c83b4640a1745457a149e73c6db75b4ffe36aad5f"
dependencies = [
 "semver 0.6.0",
]

757
758
[[package]]
name = "bumpalo"
759
version = "3.4.0"
760
source = "registry+https://github.com/rust-lang/crates.io-index"
761
checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
762

763
764
[[package]]
name = "byte-slice-cast"
765
version = "1.0.0"
766
source = "registry+https://github.com/rust-lang/crates.io-index"
767
checksum = "65c1bf4a04a88c54f589125563643d773f3254b5c38571395e2b591c693bbc81"
768

769
770
[[package]]
name = "byte-tools"
771
version = "0.3.1"
772
source = "registry+https://github.com/rust-lang/crates.io-index"
773
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
774

asynchronous rob's avatar
asynchronous rob committed
775
776
[[package]]
name = "byteorder"
777
version = "1.3.4"
asynchronous rob's avatar
asynchronous rob committed
778
source = "registry+https://github.com/rust-lang/crates.io-index"
779
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
asynchronous rob's avatar
asynchronous rob committed
780
781
782

[[package]]
name = "bytes"
783
version = "0.4.12"
asynchronous rob's avatar
asynchronous rob committed
784
source = "registry+https://github.com/rust-lang/crates.io-index"
785
checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
asynchronous rob's avatar
asynchronous rob committed
786
dependencies = [
Shawn Tabrizi's avatar
Shawn Tabrizi committed
787
 "byteorder",
788
789
 "either",
 "iovec",
asynchronous rob's avatar
asynchronous rob committed
790
791
]

Gavin Wood's avatar
Gavin Wood committed
792
793
[[package]]
name = "bytes"
794
version = "0.5.6"
Gavin Wood's avatar
Gavin Wood committed
795
source = "registry+https://github.com/rust-lang/crates.io-index"
796
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
797

798
799
800
801
802
803
[[package]]
name = "bytes"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"

804
805
806
807
808
809
[[package]]
name = "cache-padded"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba"

810
811
812
813
814
815
816
817
818
819
820
821
[[package]]
name = "cargo_metadata"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83f95cf4bf0dda0ac2e65371ae7215d0dce3c187613a9dbf23aaa9374186f97a"
dependencies = [
 "semver 0.11.0",
 "semver-parser 0.10.0",
 "serde",
 "serde_json",
]

asynchronous rob's avatar
asynchronous rob committed
822
823
[[package]]
name = "cc"
824
version = "1.0.67"
asynchronous rob's avatar
asynchronous rob committed
825
source = "registry+https://github.com/rust-lang/crates.io-index"
826
checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd"
827
dependencies = [
828
 "jobserver",
829
830
831
832
]

[[package]]
name = "cexpr"
833
version = "0.4.0"
834
source = "registry+https://github.com/rust-lang/crates.io-index"
835
checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27"
836
dependencies = [
837
 "nom",
838
]
asynchronous rob's avatar
asynchronous rob committed
839
840
841

[[package]]
name = "cfg-if"
842
version = "0.1.10"
asynchronous rob's avatar
asynchronous rob committed
843
source = "registry+https://github.com/rust-lang/crates.io-index"
844
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
asynchronous rob's avatar
asynchronous rob committed
845

846
847
848
849
850
851
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"

852
853
854
855
856
857
[[package]]
name = "cfg_aliases"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"

858
[[package]]
859
name = "chacha20"
860
version = "0.4.3"
861
source = "registry+https://github.com/rust-lang/crates.io-index"
862
checksum = "086c0f07ac275808b7bf9a39f2fd013aae1498be83632814c8c4e0bd53f2dc58"
863
dependencies = [
864
 "stream-cipher",
865
866
867
868
869
 "zeroize",
]

[[package]]
name = "chacha20poly1305"
870
version = "0.5.1"
871
source = "registry+https://github.com/rust-lang/crates.io-index"
872
checksum = "18b0c90556d8e3fec7cf18d84a2f53d27b21288f2fe481b830fadcf809e48205"
873
874
875
876
dependencies = [
 "aead",
 "chacha20",
 "poly1305",
877
 "stream-cipher",
878
 "zeroize",
879
880
]

asynchronous rob's avatar
asynchronous rob committed
881
882
[[package]]
name = "chrono"
883
version = "0.4.19"
asynchronous rob's avatar
asynchronous rob committed
884
source = "registry+https://github.com/rust-lang/crates.io-index"
885
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
asynchronous rob's avatar
asynchronous rob committed
886
dependencies = [
887
 "js-sys",
888
 "libc",
889
 "num-integer",
Sergey Pepyakin's avatar
Sergey Pepyakin committed
890
 "num-traits",
891
892
 "time",
 "wasm-bindgen",
893
 "winapi 0.3.9",
asynchronous rob's avatar
asynchronous rob committed
894
895
]

896
897
898
899
900
901
902
903
904
905
906
[[package]]
name = "cid"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d88f30b1e74e7063df5711496f3ee6e74a9735d62062242d70cddf77717f18e"
dependencies = [
 "multibase",
 "multihash",
 "unsigned-varint 0.5.1",
]

907
908
909
910
911
912
913
914
915
[[package]]
name = "cipher"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
dependencies = [
 "generic-array 0.14.4",
]

916
917
918
919
920
921
922
923
924
[[package]]
name = "ckb-merkle-mountain-range"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e486fe53bb9f2ca0f58cb60e8679a5354fd6687a839942ef0a75967250289ca6"
dependencies = [
 "cfg-if 0.1.10",
]

925
926
[[package]]
name = "clang-sys"
927
version = "0.29.3"
928
source = "registry+https://github.com/rust-lang/crates.io-index"
929
checksum = "fe6837df1d5cba2397b835c8530f51723267e16abbf83892e9e5af4f0e5dd10a"
930
dependencies = [
931
932
933
 "glob",
 "libc",
 "libloading",
934
935
]

asynchronous rob's avatar
asynchronous rob committed
936
937
[[package]]
name = "clap"
938
version = "2.33.3"
asynchronous rob's avatar
asynchronous rob committed
939
source = "registry+https://github.com/rust-lang/crates.io-index"
940
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
asynchronous rob's avatar
asynchronous rob committed
941
dependencies = [
942
943
944
945
946
947
948
 "ansi_term 0.11.0",
 "atty",
 "bitflags",
 "strsim",
 "textwrap",
 "unicode-width",
 "vec_map",
949
950
]

asynchronous rob's avatar
asynchronous rob committed
951
952
953
954
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
955
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
asynchronous rob's avatar
asynchronous rob committed
956
dependencies = [
957
 "bitflags",
asynchronous rob's avatar
asynchronous rob committed
958
959
]

960
961
962
963
964
965
966
967
968
[[package]]
name = "cloudabi"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4344512281c643ae7638bbabc3af17a11307803ec8f0fcad9fae512a8bf36467"
dependencies = [
 "bitflags",
]

969
970
[[package]]
name = "color-eyre"
971
version = "0.5.10"
972
source = "registry+https://github.com/rust-lang/crates.io-index"
973
checksum = "7b29030875fd8376e4a28ef497790d5b4a7843d8d1396bf08ce46f5eec562c5c"
974
975
976
977
978
dependencies = [
 "backtrace",
 "color-spantrace",
 "eyre",
 "indenter",
979
 "once_cell",
980
981
982
983
984
985
 "owo-colors",
 "tracing-error",
]

[[package]]
name = "color-spantrace"
986
version = "0.1.6"
987
source = "registry+https://github.com/rust-lang/crates.io-index"
988
checksum = "b6eee477a4a8a72f4addd4de416eb56d54bc307b284d6601bafdee1f4ea462d1"
989
dependencies = [
990
991
 "once_cell",
 "owo-colors",
992
993
994
995
 "tracing-core",
 "tracing-error",
]

996
997
[[package]]
name = "concurrent-queue"
998
version = "1.2.2"
999
source = "registry+https://github.com/rust-lang/crates.io-index"
1000
checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3"
For faster browsing, not all history is shown. View entire blame