Cargo.lock 218 KB
Newer Older
1
2
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
Gavin Wood's avatar
Gavin Wood committed
3
4
5
6
[[package]]
name = "Inflector"
version = "0.11.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
7
checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
Gavin Wood's avatar
Gavin Wood committed
8
dependencies = [
9
10
 "lazy_static",
 "regex",
Gavin Wood's avatar
Gavin Wood committed
11
12
]

13
14
[[package]]
name = "addr2line"
15
version = "0.13.0"
16
source = "registry+https://github.com/rust-lang/crates.io-index"
17
checksum = "1b6a2d3371669ab3ca9797670853d61402b03d0b4b9ebf33d677dfa720203072"
18
dependencies = [
19
 "gimli 0.22.0",
20
21
]

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

28
29
[[package]]
name = "adler32"
30
version = "1.1.0"
31
source = "registry+https://github.com/rust-lang/crates.io-index"
32
checksum = "567b077b825e468cc974f0020d4082ee6e03132512f207ef1a02fd5d00d1f32d"
33

34
35
[[package]]
name = "aead"
36
version = "0.3.2"
37
source = "registry+https://github.com/rust-lang/crates.io-index"
38
checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331"
39
dependencies = [
40
 "generic-array 0.14.2",
41
42
43
44
]

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

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

[[package]]
name = "aes-soft"
69
version = "0.4.0"
70
source = "registry+https://github.com/rust-lang/crates.io-index"
71
checksum = "4925647ee64e5056cf231608957ce7c81e12d6d6e316b9ce1404778cc1d35fa7"
72
dependencies = [
73
 "block-cipher",
74
 "byteorder",
75
 "opaque-debug 0.2.3",
76
77
78
79
]

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

88
89
[[package]]
name = "ahash"
90
version = "0.2.18"
91
source = "registry+https://github.com/rust-lang/crates.io-index"
92
checksum = "6f33b5018f120946c1dcf279194f238a9f146725593ead1c08fa47ff22b0b5d3"
93
dependencies = [
94
 "const-random",
95
96
]

Bastian Köcher's avatar
Bastian Köcher committed
97
98
99
100
101
102
[[package]]
name = "ahash"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217"

103
104
[[package]]
name = "aho-corasick"
105
version = "0.7.13"
106
source = "registry+https://github.com/rust-lang/crates.io-index"
107
checksum = "043164d8ba5c4c3035fec9bbee8647c0261d788f3474306f93bb65901cae0e86"
108
dependencies = [
109
 "memchr",
110
111
]

112
113
114
115
[[package]]
name = "alga"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
116
checksum = "4f823d037a7ec6ea2197046bafd4ae150e6bc36f9ca347404f46a46823fa84f2"
117
dependencies = [
118
119
 "approx",
 "num-complex",
120
 "num-traits 0.2.12",
121
122
]

asynchronous rob's avatar
asynchronous rob committed
123
124
125
126
[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
127
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
asynchronous rob's avatar
asynchronous rob committed
128
dependencies = [
129
 "winapi 0.3.9",
asynchronous rob's avatar
asynchronous rob committed
130
131
]

132
133
134
135
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
136
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
137
dependencies = [
138
 "winapi 0.3.9",
139
140
]

141
142
[[package]]
name = "anyhow"
143
version = "1.0.31"
144
source = "registry+https://github.com/rust-lang/crates.io-index"
145
checksum = "85bb70cc08ec97ca5450e6eba421deeea5f172c0fc61f78b5357b2a8e8be195f"
146

147
148
149
150
[[package]]
name = "approx"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
151
checksum = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"
152
dependencies = [
153
 "num-traits 0.2.12",
154
155
]

156
157
[[package]]
name = "arc-swap"
158
version = "0.4.7"
159
source = "registry+https://github.com/rust-lang/crates.io-index"
160
checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034"
161

asynchronous rob's avatar
asynchronous rob committed
162
163
[[package]]
name = "arrayref"
Gavin Wood's avatar
Gavin Wood committed
164
version = "0.3.6"
asynchronous rob's avatar
asynchronous rob committed
165
source = "registry+https://github.com/rust-lang/crates.io-index"
166
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
asynchronous rob's avatar
asynchronous rob committed
167
168
169

[[package]]
name = "arrayvec"
170
version = "0.4.12"
asynchronous rob's avatar
asynchronous rob committed
171
source = "registry+https://github.com/rust-lang/crates.io-index"
172
checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"
asynchronous rob's avatar
asynchronous rob committed
173
dependencies = [
174
 "nodrop",
asynchronous rob's avatar
asynchronous rob committed
175
176
]

177
178
179
180
[[package]]
name = "arrayvec"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
181
checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
182

asynchronous rob's avatar
asynchronous rob committed
183
184
[[package]]
name = "asn1_der"
185
version = "0.6.3"
asynchronous rob's avatar
asynchronous rob committed
186
source = "registry+https://github.com/rust-lang/crates.io-index"
187
checksum = "6fce6b6a0ffdafebd82c87e79e3f40e8d2c523e5fea5566ff6b90509bf98d638"
asynchronous rob's avatar
asynchronous rob committed
188
dependencies = [
189
 "asn1_der_derive",
190
191
192
193
]

[[package]]
name = "asn1_der_derive"
194
version = "0.1.2"
195
source = "registry+https://github.com/rust-lang/crates.io-index"
196
checksum = "0d0864d84b8e07b145449be9a8537db86bf9de5ce03b913214694643b4743502"
197
dependencies = [
198
 "quote 1.0.7",
199
 "syn 1.0.33",
asynchronous rob's avatar
asynchronous rob committed
200
201
]

202
203
[[package]]
name = "assert_cmd"
204
version = "0.12.2"
205
source = "registry+https://github.com/rust-lang/crates.io-index"
206
checksum = "936fcf2c692b37c696cd0002c57752b2d9478402450c9ca4a463f6afae16d6f5"
207
dependencies = [
208
209
210
211
212
 "doc-comment",
 "escargot",
 "predicates",
 "predicates-core",
 "predicates-tree",
213
 "wait-timeout",
214
215
]

Gavin Wood's avatar
Gavin Wood committed
216
217
218
219
[[package]]
name = "assert_matches"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
220
checksum = "7deb0a829ca7bcfaf5da70b073a8d128619259a7be8216a355e23f00763059e5"
Gavin Wood's avatar
Gavin Wood committed
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
[[package]]
name = "async-channel"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee81ba99bee79f3c8ae114ae4baa7eaa326f63447cf2ec65e4393618b63f8770"
dependencies = [
 "concurrent-queue",
 "event-listener",
 "futures-core",
]

[[package]]
name = "async-io"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a0fc2017a5cca12763bb5636092a7786b52789c23c5838a392db2eb99963fd3"
dependencies = [
 "cfg-if",
 "concurrent-queue",
 "futures-lite",
 "libc",
 "once_cell",
 "parking",
 "socket2",
 "vec-arena",
 "wepoll-sys-stjepang",
 "winapi 0.3.9",
]

251
252
[[package]]
name = "async-std"
253
version = "1.6.2"
254
source = "registry+https://github.com/rust-lang/crates.io-index"
255
checksum = "00d68a33ebc8b57800847d00787307f84a562224a14db069b0acefe4c2abbf5d"
256
dependencies = [
257
 "async-task",
258
 "crossbeam-utils",
259
 "futures-channel",
260
261
 "futures-core",
 "futures-io",
262
 "futures-timer 3.0.2",
263
264
265
266
267
268
269
270
 "kv-log-macro",
 "log 0.4.8",
 "memchr",
 "num_cpus",
 "once_cell",
 "pin-project-lite",
 "pin-utils",
 "slab",
271
 "smol 0.1.18",
272
 "wasm-bindgen-futures",
273
274
]

275
276
[[package]]
name = "async-task"
277
version = "3.0.0"
278
source = "registry+https://github.com/rust-lang/crates.io-index"
279
checksum = "c17772156ef2829aadc587461c7753af20b7e8db1529bc66855add962a3b35d3"
280

281
282
[[package]]
name = "async-tls"
283
version = "0.8.0"
284
source = "registry+https://github.com/rust-lang/crates.io-index"
285
checksum = "df097e3f506bec0e1a24f06bb3c962c228f36671de841ff579cb99f371772634"
286
dependencies = [
287
 "futures 0.3.5",
288
 "rustls",
289
 "webpki",
290
 "webpki-roots 0.19.0",
291
292
]

293
294
295
296
297
298
299
300
[[package]]
name = "async-trait"
version = "0.1.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a265e3abeffdce30b2e26b7a11b222fe37c6067404001b434101457d0385eb92"
dependencies = [
 "proc-macro2 1.0.18",
 "quote 1.0.7",
301
 "syn 1.0.33",
302
303
]

304
305
306
307
308
309
[[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
310
311
[[package]]
name = "atty"
Gavin Wood's avatar
Gavin Wood committed
312
version = "0.2.14"
asynchronous rob's avatar
asynchronous rob committed
313
source = "registry+https://github.com/rust-lang/crates.io-index"
314
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
asynchronous rob's avatar
asynchronous rob committed
315
dependencies = [
316
317
 "hermit-abi",
 "libc",
318
 "winapi 0.3.9",
asynchronous rob's avatar
asynchronous rob committed
319
320
]

321
322
[[package]]
name = "autocfg"
Kian Paimani's avatar
Kian Paimani committed
323
version = "0.1.7"
324
source = "registry+https://github.com/rust-lang/crates.io-index"
325
checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
326

Gavin Wood's avatar
Gavin Wood committed
327
328
329
330
[[package]]
name = "autocfg"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
331
checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
Gavin Wood's avatar
Gavin Wood committed
332

asynchronous rob's avatar
asynchronous rob committed
333
334
[[package]]
name = "backtrace"
335
version = "0.3.50"
asynchronous rob's avatar
asynchronous rob committed
336
source = "registry+https://github.com/rust-lang/crates.io-index"
337
checksum = "46254cf2fdcdf1badb5934448c1bcbe046a56537b3987d96c51a7afc5d03f293"
asynchronous rob's avatar
asynchronous rob committed
338
dependencies = [
339
 "addr2line",
340
341
 "cfg-if",
 "libc",
342
343
 "miniz_oxide",
 "object 0.20.0",
344
 "rustc-demangle",
asynchronous rob's avatar
asynchronous rob committed
345
346
347
]

[[package]]
348
349
name = "base58"
version = "0.1.0"
asynchronous rob's avatar
asynchronous rob committed
350
source = "registry+https://github.com/rust-lang/crates.io-index"
351
checksum = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83"
asynchronous rob's avatar
asynchronous rob committed
352

353
354
355
356
[[package]]
name = "base64"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
357
checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
358

359
360
[[package]]
name = "base64"
361
version = "0.12.3"
362
source = "registry+https://github.com/rust-lang/crates.io-index"
363
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
364

Gavin Wood's avatar
Gavin Wood committed
365
366
[[package]]
name = "bincode"
367
version = "1.3.1"
Gavin Wood's avatar
Gavin Wood committed
368
source = "registry+https://github.com/rust-lang/crates.io-index"
369
checksum = "f30d3a39baa26f9651f17b375061f3233dde33424a8b72b0dbe93a68a0bc896d"
Gavin Wood's avatar
Gavin Wood committed
370
dependencies = [
371
 "byteorder",
372
 "serde",
Gavin Wood's avatar
Gavin Wood committed
373
374
]

375
376
[[package]]
name = "bindgen"
377
version = "0.53.3"
378
source = "registry+https://github.com/rust-lang/crates.io-index"
379
checksum = "c72a978d268b1d70b0e963217e60fdabd9523a941457a6c42a7315d15c7e89e5"
380
dependencies = [
381
382
383
384
385
 "bitflags",
 "cexpr",
 "cfg-if",
 "clang-sys",
 "clap",
386
 "env_logger",
387
388
389
390
 "lazy_static",
 "lazycell",
 "log 0.4.8",
 "peeking_take_while",
391
392
 "proc-macro2 1.0.18",
 "quote 1.0.7",
393
394
395
396
 "regex",
 "rustc-hash",
 "shlex",
 "which",
397
398
]

399
400
[[package]]
name = "bitflags"
401
version = "1.2.1"
402
source = "registry+https://github.com/rust-lang/crates.io-index"
403
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
404

asynchronous rob's avatar
asynchronous rob committed
405
[[package]]
406
407
name = "bitmask"
version = "0.5.0"
408
source = "registry+https://github.com/rust-lang/crates.io-index"
409
checksum = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead"
asynchronous rob's avatar
asynchronous rob committed
410

Gavin Wood's avatar
Gavin Wood committed
411
412
[[package]]
name = "bitvec"
413
version = "0.17.4"
Gavin Wood's avatar
Gavin Wood committed
414
source = "registry+https://github.com/rust-lang/crates.io-index"
415
416
417
418
419
checksum = "41262f11d771fd4a61aa3ce019fca363b4b6c282fca9da2a31186d3965a47a5c"
dependencies = [
 "either",
 "radium",
]
Gavin Wood's avatar
Gavin Wood committed
420

421
422
423
424
425
426
427
428
429
430
431
[[package]]
name = "blake2"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "84ce5b6108f8e154604bd4eb76a2f726066c3464d5a552a4229262a18c9bb471"
dependencies = [
 "byte-tools",
 "byteorder",
 "crypto-mac 0.8.0",
 "digest 0.9.0",
 "opaque-debug 0.2.3",
432
433
]

asynchronous rob's avatar
asynchronous rob committed
434
435
436
437
[[package]]
name = "blake2-rfc"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
438
checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400"
asynchronous rob's avatar
asynchronous rob committed
439
dependencies = [
440
441
 "arrayvec 0.4.12",
 "constant_time_eq",
asynchronous rob's avatar
asynchronous rob committed
442
443
]

Gavin Wood's avatar
Gavin Wood committed
444
445
[[package]]
name = "blake2b_simd"
Gavin Wood's avatar
Gavin Wood committed
446
version = "0.5.10"
Gavin Wood's avatar
Gavin Wood committed
447
source = "registry+https://github.com/rust-lang/crates.io-index"
448
checksum = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a"
Gavin Wood's avatar
Gavin Wood committed
449
dependencies = [
450
451
452
 "arrayref",
 "arrayvec 0.5.1",
 "constant_time_eq",
Gavin Wood's avatar
Gavin Wood committed
453
454
]

455
456
457
458
459
460
461
462
463
464
465
[[package]]
name = "blake2s_simd"
version = "0.5.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab9e07352b829279624ceb7c64adb4f585dacdb81d35cafae81139ccd617cf44"
dependencies = [
 "arrayref",
 "arrayvec 0.5.1",
 "constant_time_eq",
]

466
467
[[package]]
name = "block-buffer"
468
version = "0.7.3"
469
source = "registry+https://github.com/rust-lang/crates.io-index"
470
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
471
dependencies = [
472
473
 "block-padding",
 "byte-tools",
474
 "byteorder",
475
 "generic-array 0.12.3",
476
477
]

478
[[package]]
479
480
481
482
483
484
485
486
487
488
489
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
 "generic-array 0.14.2",
]

[[package]]
name = "block-cipher"
version = "0.7.1"
490
source = "registry+https://github.com/rust-lang/crates.io-index"
491
checksum = "fa136449e765dc7faa244561ccae839c394048667929af599b5d931ebe7b7f10"
492
dependencies = [
493
 "generic-array 0.14.2",
494
495
]

496
497
[[package]]
name = "block-padding"
498
version = "0.1.5"
499
source = "registry+https://github.com/rust-lang/crates.io-index"
500
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
501
dependencies = [
502
 "byte-tools",
503
504
]

505
[[package]]
506
name = "blocking"
507
version = "0.4.7"
508
source = "registry+https://github.com/rust-lang/crates.io-index"
509
checksum = "d2468ff7bf85066b4a3678fede6fe66db31846d753ff0adfbfab2c6a6e81612b"
510
dependencies = [
511
512
513
 "async-channel",
 "atomic-waker",
 "futures-lite",
514
515
516
 "once_cell",
 "parking",
 "waker-fn",
517
518
]

asynchronous rob's avatar
asynchronous rob committed
519
520
[[package]]
name = "bs58"
521
version = "0.3.1"
asynchronous rob's avatar
asynchronous rob committed
522
source = "registry+https://github.com/rust-lang/crates.io-index"
523
checksum = "476e9cd489f9e121e02ffa6014a8ef220ecb15c05ed23fc34cca13925dc283fb"
asynchronous rob's avatar
asynchronous rob committed
524

525
526
[[package]]
name = "bstr"
527
version = "0.2.13"
528
source = "registry+https://github.com/rust-lang/crates.io-index"
529
checksum = "31accafdb70df7871592c058eca3985b71104e15ac32f64706022c58867da931"
530
dependencies = [
531
 "memchr",
532
533
]

534
535
[[package]]
name = "bumpalo"
536
version = "3.4.0"
537
source = "registry+https://github.com/rust-lang/crates.io-index"
538
checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
539

540
541
[[package]]
name = "byte-slice-cast"
Gavin Wood's avatar
Gavin Wood committed
542
version = "0.3.5"
543
source = "registry+https://github.com/rust-lang/crates.io-index"
544
checksum = "b0a5e3906bcbf133e33c1d4d95afc664ad37fbdb9f6568d8043e7ea8c27d93d3"
545

546
547
[[package]]
name = "byte-tools"
548
version = "0.3.1"
549
source = "registry+https://github.com/rust-lang/crates.io-index"
550
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
551

asynchronous rob's avatar
asynchronous rob committed
552
553
[[package]]
name = "byteorder"
554
version = "1.3.4"
asynchronous rob's avatar
asynchronous rob committed
555
source = "registry+https://github.com/rust-lang/crates.io-index"
556
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
asynchronous rob's avatar
asynchronous rob committed
557
558
559

[[package]]
name = "bytes"
560
version = "0.4.12"
asynchronous rob's avatar
asynchronous rob committed
561
source = "registry+https://github.com/rust-lang/crates.io-index"
562
checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
asynchronous rob's avatar
asynchronous rob committed
563
dependencies = [
564
 "byteorder",
565
566
 "either",
 "iovec",
asynchronous rob's avatar
asynchronous rob committed
567
568
]

Gavin Wood's avatar
Gavin Wood committed
569
570
[[package]]
name = "bytes"
571
version = "0.5.5"
Gavin Wood's avatar
Gavin Wood committed
572
source = "registry+https://github.com/rust-lang/crates.io-index"
573
574
575
576
checksum = "118cf036fbb97d0816e3c34b2d7a1e8cfc60f68fcf63d550ddbe9bd5f59c213b"
dependencies = [
 "loom",
]
577

578
579
580
581
[[package]]
name = "c_linked_list"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
582
checksum = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b"
583

584
585
586
587
588
589
[[package]]
name = "cache-padded"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba"

asynchronous rob's avatar
asynchronous rob committed
590
591
[[package]]
name = "cc"
592
version = "1.0.58"
asynchronous rob's avatar
asynchronous rob committed
593
source = "registry+https://github.com/rust-lang/crates.io-index"
594
checksum = "f9a06fb2e53271d7c279ec1efea6ab691c35a2ae67ec0d91d7acec0caf13b518"
595
dependencies = [
596
 "jobserver",
597
598
599
600
]

[[package]]
name = "cexpr"
601
version = "0.4.0"
602
source = "registry+https://github.com/rust-lang/crates.io-index"
603
checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27"
604
dependencies = [
605
 "nom",
606
]
asynchronous rob's avatar
asynchronous rob committed
607
608
609

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

614
[[package]]
615
name = "chacha20"
616
version = "0.4.3"
617
source = "registry+https://github.com/rust-lang/crates.io-index"
618
checksum = "086c0f07ac275808b7bf9a39f2fd013aae1498be83632814c8c4e0bd53f2dc58"
619
dependencies = [
620
621
622
623
624
625
 "stream-cipher",
 "zeroize",
]

[[package]]
name = "chacha20poly1305"
626
version = "0.5.1"
627
source = "registry+https://github.com/rust-lang/crates.io-index"
628
checksum = "18b0c90556d8e3fec7cf18d84a2f53d27b21288f2fe481b830fadcf809e48205"
629
630
631
632
633
634
dependencies = [
 "aead",
 "chacha20",
 "poly1305",
 "stream-cipher",
 "zeroize",
635
636
]

asynchronous rob's avatar
asynchronous rob committed
637
638
[[package]]
name = "chrono"
639
version = "0.4.13"
asynchronous rob's avatar
asynchronous rob committed
640
source = "registry+https://github.com/rust-lang/crates.io-index"
641
checksum = "c74d84029116787153e02106bf53e66828452a4b325cc8652b788b5967c0a0b6"
asynchronous rob's avatar
asynchronous rob committed
642
dependencies = [
643
644
 "js-sys",
 "num-integer",
645
 "num-traits 0.2.12",
646
647
 "time",
 "wasm-bindgen",
asynchronous rob's avatar
asynchronous rob committed
648
649
]

650
651
[[package]]
name = "clang-sys"
652
version = "0.29.3"
653
source = "registry+https://github.com/rust-lang/crates.io-index"
654
checksum = "fe6837df1d5cba2397b835c8530f51723267e16abbf83892e9e5af4f0e5dd10a"
655
dependencies = [
656
657
658
 "glob",
 "libc",
 "libloading",
659
660
]

asynchronous rob's avatar
asynchronous rob committed
661
662
[[package]]
name = "clap"
663
version = "2.33.1"
asynchronous rob's avatar
asynchronous rob committed
664
source = "registry+https://github.com/rust-lang/crates.io-index"
665
checksum = "bdfa80d47f954d53a35a64987ca1422f495b8d6483c0fe9f7117b36c2a792129"
asynchronous rob's avatar
asynchronous rob committed
666
dependencies = [
667
668
669
670
671
672
673
 "ansi_term 0.11.0",
 "atty",
 "bitflags",
 "strsim",
 "textwrap",
 "unicode-width",
 "vec_map",
674
675
]

asynchronous rob's avatar
asynchronous rob committed
676
677
678
679
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
680
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
asynchronous rob's avatar
asynchronous rob committed
681
dependencies = [
682
 "bitflags",
asynchronous rob's avatar
asynchronous rob committed
683
684
]

685
686
687
688
689
690
691
692
693
[[package]]
name = "concurrent-queue"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f83c06aff61f2d899eb87c379df3cbf7876f14471dcab474e0b6dc90ab96c080"
dependencies = [
 "cache-padded",
]

694
695
696
697
[[package]]
name = "console_error_panic_hook"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
698
checksum = "b8d976903543e0c48546a91908f21588a680a8c8f984df9a5d69feccb2b2a211"
699
dependencies = [
700
701
 "cfg-if",
 "wasm-bindgen",
702
703
704
705
706
707
]

[[package]]
name = "console_log"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
708
checksum = "1e7871d2947441b0fdd8e2bd1ce2a2f75304f896582c0d572162d48290683c48"
709
dependencies = [
710
711
 "log 0.4.8",
 "web-sys",
712
713
]

714
715
[[package]]
name = "const-random"
Gavin Wood's avatar
Gavin Wood committed
716
version = "0.1.8"
717
source = "registry+https://github.com/rust-lang/crates.io-index"
718
checksum = "2f1af9ac737b2dd2d577701e59fd09ba34822f6f2ebdb30a7647405d9e55e16a"
719
dependencies = [
720
721
 "const-random-macro",
 "proc-macro-hack",
722
723
724
725
]

[[package]]
name = "const-random-macro"
Gavin Wood's avatar
Gavin Wood committed
726
version = "0.1.8"
727
source = "registry+https://github.com/rust-lang/crates.io-index"
728
checksum = "25e4c606eb459dd29f7c57b2e0879f2b6f14ee130918c2b78ccb58a9624e6c7a"
729
dependencies = [
730
731
 "getrandom",
 "proc-macro-hack",
732
733
]

asynchronous rob's avatar
asynchronous rob committed
734
735
[[package]]
name = "constant_time_eq"
Gavin Wood's avatar
Gavin Wood committed
736
version = "0.1.5"
asynchronous rob's avatar
asynchronous rob committed
737
source = "registry+https://github.com/rust-lang/crates.io-index"
738
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
asynchronous rob's avatar
asynchronous rob committed
739

740
741
[[package]]
name = "core-foundation"
Gavin Wood's avatar
Gavin Wood committed
742
version = "0.7.0"
743
source = "registry+https://github.com/rust-lang/crates.io-index"
744
checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
745
dependencies = [
746
747
 "core-foundation-sys",
 "libc",
748
749
750
751
]

[[package]]
name = "core-foundation-sys"
Gavin Wood's avatar
Gavin Wood committed
752
version = "0.7.0"
753
source = "registry+https://github.com/rust-lang/crates.io-index"
754
checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"
755

756
757
758
759
760
761
[[package]]
name = "cpuid-bool"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d375c433320f6c5057ae04a04376eef4d04ce2801448cf8863a78da99107be4"

Gavin Wood's avatar
Gavin Wood committed
762
[[package]]
Gavin Wood's avatar
Gavin Wood committed
763
name = "cranelift-bforest"
764
version = "0.66.0"
765
766
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8dcc286b052ee24a1e5a222e7c1125e6010ad35b0f248709b9b3737a8fedcfdf"
Gavin Wood's avatar
Gavin Wood committed
767
dependencies = [
768
 "cranelift-entity",
Gavin Wood's avatar
Gavin Wood committed
769
770
771
]

[[package]]
Gavin Wood's avatar
Gavin Wood committed
772
name = "cranelift-codegen"
773
version = "0.66.0"
774
775
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d9badfe36176cb653506091693bc2bb1970c9bddfcd6ec7fac404f7eaec6f38"
Gavin Wood's avatar
Gavin Wood committed
776
dependencies = [
777
 "byteorder",
778
779
780
781
 "cranelift-bforest",
 "cranelift-codegen-meta",
 "cranelift-codegen-shared",
 "cranelift-entity",
782
 "gimli 0.21.0",
783
 "log 0.4.8",
784
 "regalloc",
785
 "serde",
Bastian Köcher's avatar
Bastian Köcher committed
786
 "smallvec 1.4.1",
787
788
 "target-lexicon",
 "thiserror",
Gavin Wood's avatar
Gavin Wood committed
789
790
791
792
]

[[package]]
name = "cranelift-codegen-meta"
793
version = "0.66.0"
794
795
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c3f460031861e4f4ad510be62b2ae50bba6cc886b598a36f9c0a970feab9598"
Gavin Wood's avatar
Gavin Wood committed
796
dependencies = [
797
798
 "cranelift-codegen-shared",
 "cranelift-entity",
Gavin Wood's avatar
Gavin Wood committed
799
800
801
802
]

[[package]]
name = "cranelift-codegen-shared"
803
version = "0.66.0"
804
805
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76ad12409e922e7697cd0bdc7dc26992f64a77c31880dfe5e3c7722f4710206d"
Gavin Wood's avatar
Gavin Wood committed
806
807
808

[[package]]
name = "cranelift-entity"
809
version = "0.66.0"
810
811
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d97cdc58972ea065d107872cfb9079f4c92ade78a8af85aaff519a65b5d13f71"
Gavin Wood's avatar
Gavin Wood committed
812
dependencies = [
813
 "serde",
Gavin Wood's avatar
Gavin Wood committed
814
815
816
817
]

[[package]]
name = "cranelift-frontend"
818
version = "0.66.0"
819
820
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ef419efb4f94ecc02e5d9fbcc910d2bb7f0040e2de570e63a454f883bc891d6"
Gavin Wood's avatar
Gavin Wood committed
821
dependencies = [
822
823
 "cranelift-codegen",
 "log 0.4.8",
Bastian Köcher's avatar
Bastian Köcher committed
824
 "smallvec 1.4.1",
825
 "target-lexicon",
Gavin Wood's avatar
Gavin Wood committed
826
827
828
829
]

[[package]]
name = "cranelift-native"
830
version = "0.66.0"
831
832
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e69d44d59826eef6794066ac2c0f4ad3975f02d97030c60dbc04e3886adf36e"
Gavin Wood's avatar
Gavin Wood committed
833
dependencies = [
834
835
836
 "cranelift-codegen",
 "raw-cpuid",
 "target-lexicon",
Gavin Wood's avatar
Gavin Wood committed
837
838
839
840
]

[[package]]
name = "cranelift-wasm"
841
version = "0.66.0"
842
843
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "979df666b1304624abe99738e9e0e7c7479ee5523ba4b8b237df9ff49996acbb"
Gavin Wood's avatar
Gavin Wood committed
844
dependencies = [
845
846
847
848
849
850
 "cranelift-codegen",
 "cranelift-entity",
 "cranelift-frontend",
 "log 0.4.8",
 "serde",
 "thiserror",
851
 "wasmparser 0.59.0",
Gavin Wood's avatar
Gavin Wood committed
852
]
Gavin Wood's avatar
Gavin Wood committed
853

854
[[package]]
855
856
name = "crc32fast"
version = "1.2.0"
857
source = "registry+https://github.com/rust-lang/crates.io-index"
858
checksum = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"
859
dependencies = [
860
 "cfg-if",
861
862
]

863
864
[[package]]
name = "crossbeam-deque"
865
version = "0.7.3"
866
source = "registry+https://github.com/rust-lang/crates.io-index"
867
checksum = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
868
dependencies = [
869
 "crossbeam-epoch",
870
 "crossbeam-utils",
871
 "maybe-uninit",
872
873
]

asynchronous rob's avatar
asynchronous rob committed
874
875
[[package]]
name = "crossbeam-epoch"
876
version = "0.8.2"
asynchronous rob's avatar
asynchronous rob committed
877
source = "registry+https://github.com/rust-lang/crates.io-index"
878
checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
asynchronous rob's avatar
asynchronous rob committed
879
dependencies = [
880
881
 "autocfg 1.0.0",
 "cfg-if",
882
 "crossbeam-utils",
883
884
885
886
 "lazy_static",
 "maybe-uninit",
 "memoffset",
 "scopeguard",
asynchronous rob's avatar
asynchronous rob committed
887
888
]

889
890
[[package]]
name = "crossbeam-queue"
891
version = "0.2.3"
892
source = "registry+https://github.com/rust-lang/crates.io-index"
893
checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570"
894
dependencies = [
895
 "cfg-if",
896
 "crossbeam-utils",
897
 "maybe-uninit",
898
]