Cargo.lock 386 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
7
8
9
10
11
[[package]]
name = "Inflector"
version = "0.11.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

asynchronous rob's avatar
asynchronous rob committed
12
13
[[package]]
name = "adder"
14
version = "0.7.9"
asynchronous rob's avatar
asynchronous rob committed
15
dependencies = [
16
 "dlmalloc 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
17
 "parity-scale-codec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
18
 "polkadot-parachain 0.7.9",
19
 "sp-io 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)",
Kian Paimani's avatar
Kian Paimani committed
20
 "substrate-wasm-builder-runner 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
21
 "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
22
23
24
25
26
27
]

[[package]]
name = "adder-collator"
version = "0.1.0"
dependencies = [
28
 "adder 0.7.9",
29
 "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
30
 "exit-future 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
31
 "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
32
 "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
33
34
35
 "polkadot-collator 0.7.9",
 "polkadot-parachain 0.7.9",
 "polkadot-primitives 0.7.9",
36
37
38
 "sc-client 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)",
 "sc-client-api 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)",
 "sp-core 2.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-master)",
asynchronous rob's avatar
asynchronous rob committed
39
40
]

41
42
[[package]]
name = "adler32"
43
version = "1.0.4"
44
45
source = "registry+https://github.com/rust-lang/crates.io-index"

46
47
[[package]]
name = "aes-ctr"
48
version = "0.3.0"
49
50
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
51
52
 "aes-soft 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "aesni 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
53
 "ctr 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
54
 "stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
55
56
57
58
]

[[package]]
name = "aes-soft"
59
version = "0.3.3"
60
61
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
62
 "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
63
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
64
 "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
65
66
67
68
]

[[package]]
name = "aesni"
69
version = "0.6.0"
70
71
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
72
 "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
73
 "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
74
 "stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
75
76
]

77
78
[[package]]
name = "ahash"
79
version = "0.2.18"
80
81
82
83
84
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "const-random 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

85
86
[[package]]
name = "aho-corasick"
87
version = "0.7.6"
88
89
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
90
 "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
91
92
]

asynchronous rob's avatar
asynchronous rob committed
93
94
95
96
97
[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
98
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
99
100
]

101
102
103
104
105
106
107
108
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

109
110
[[package]]
name = "anyhow"
111
version = "1.0.22"
112
113
source = "registry+https://github.com/rust-lang/crates.io-index"

asynchronous rob's avatar
asynchronous rob committed
114
115
116
117
118
119
120
121
[[package]]
name = "app_dirs"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "ole32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
122
 "xdg 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
123
124
]

125
126
[[package]]
name = "arc-swap"
127
version = "0.4.4"
128
129
source = "registry+https://github.com/rust-lang/crates.io-index"

asynchronous rob's avatar
asynchronous rob committed
130
131
[[package]]
name = "arrayref"
132
version = "0.3.5"
asynchronous rob's avatar
asynchronous rob committed
133
134
135
136
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "arrayvec"
137
version = "0.4.12"
asynchronous rob's avatar
asynchronous rob committed
138
139
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
140
 "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
141
142
]

143
144
145
146
147
[[package]]
name = "arrayvec"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

asynchronous rob's avatar
asynchronous rob committed
148
149
[[package]]
name = "asn1_der"
150
version = "0.6.3"
asynchronous rob's avatar
asynchronous rob committed
151
152
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
153
 "asn1_der_derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
154
155
156
157
]

[[package]]
name = "asn1_der_derive"
158
version = "0.1.2"
159
160
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
161
 "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
162
 "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
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
[[package]]
name = "async-macros"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "async-std"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "async-macros 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "async-task 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "broadcaster 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures-timer 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "kv-log-macro 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "once_cell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "pin-project-lite 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)",
 "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "async-task"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

asynchronous rob's avatar
asynchronous rob committed
208
209
[[package]]
name = "atty"
210
version = "0.2.13"
asynchronous rob's avatar
asynchronous rob committed
211
212
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
213
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
214
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
215
216
]

217
218
[[package]]
name = "autocfg"
Kian Paimani's avatar
Kian Paimani committed
219
version = "0.1.7"
220
221
source = "registry+https://github.com/rust-lang/crates.io-index"

asynchronous rob's avatar
asynchronous rob committed
222
223
[[package]]
name = "backtrace"
224
version = "0.3.40"
asynchronous rob's avatar
asynchronous rob committed
225
226
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
227
 "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)",
228
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
229
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
230
 "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
231
232
233
234
]

[[package]]
name = "backtrace-sys"
235
version = "0.1.32"
asynchronous rob's avatar
asynchronous rob committed
236
237
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
238
 "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
239
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
240
241
242
]

[[package]]
243
244
name = "base58"
version = "0.1.0"
asynchronous rob's avatar
asynchronous rob committed
245
246
source = "registry+https://github.com/rust-lang/crates.io-index"

247
248
249
250
251
[[package]]
name = "base64"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
252
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
253
254
]

255
256
257
258
259
[[package]]
name = "base64"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

Gavin Wood's avatar
Gavin Wood committed
260
261
262
263
264
265
266
267
268
269
[[package]]
name = "bincode"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
]

270
271
[[package]]
name = "bindgen"
Gavin Wood's avatar
Gavin Wood committed
272
version = "0.49.2"
273
274
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
275
 "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
276
 "cexpr 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
277
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
278
 "clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)",
279
 "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
280
 "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
281
 "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
282
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
283
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
284
 "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
285
 "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
286
 "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
287
 "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
288
 "shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
289
 "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
290
291
]

292
293
[[package]]
name = "bitflags"
294
version = "1.2.1"
295
296
source = "registry+https://github.com/rust-lang/crates.io-index"

asynchronous rob's avatar
asynchronous rob committed
297
[[package]]
298
299
name = "bitmask"
version = "0.5.0"
300
source = "registry+https://github.com/rust-lang/crates.io-index"
asynchronous rob's avatar
asynchronous rob committed
301

Gavin Wood's avatar
Gavin Wood committed
302
303
[[package]]
name = "bitvec"
304
version = "0.15.2"
Gavin Wood's avatar
Gavin Wood committed
305
306
source = "registry+https://github.com/rust-lang/crates.io-index"

307
308
[[package]]
name = "blake2"
Gavin Wood's avatar
Gavin Wood committed
309
version = "0.8.1"
310
311
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
312
 "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
313
 "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
314
 "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
315
 "opaque-debug 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
316
317
]

asynchronous rob's avatar
asynchronous rob committed
318
319
320
321
322
[[package]]
name = "blake2-rfc"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
323
 "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
324
 "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
325
326
]

Gavin Wood's avatar
Gavin Wood committed
327
328
329
330
331
332
333
334
335
336
[[package]]
name = "blake2b_simd"
version = "0.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
 "arrayvec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "constant_time_eq 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
]

337
338
[[package]]
name = "block-buffer"
339
version = "0.7.3"
340
341
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
342
 "block-padding 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
343
 "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
344
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
345
 "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
346
347
]

348
349
[[package]]
name = "block-cipher-trait"
350
version = "0.6.2"
351
352
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
353
 "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
354
355
]

356
357
[[package]]
name = "block-padding"
358
version = "0.1.5"
359
360
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
361
 "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
362
363
]

364
365
366
367
368
369
370
371
372
373
374
375
376
[[package]]
name = "broadcaster"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "futures-channel-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures-core-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures-sink-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "futures-util-preview 0.3.0-alpha.19 (registry+https://github.com/rust-lang/crates.io-index)",
 "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

377
378
379
380
381
[[package]]
name = "bs58"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"

asynchronous rob's avatar
asynchronous rob committed
382
383
[[package]]
name = "bs58"
384
version = "0.3.0"
asynchronous rob's avatar
asynchronous rob committed
385
386
source = "registry+https://github.com/rust-lang/crates.io-index"

387
388
[[package]]
name = "bstr"
Gavin Wood's avatar
Gavin Wood committed
389
version = "0.2.8"
390
391
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
392
 "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
393
394
]

395
396
[[package]]
name = "bumpalo"
Gavin Wood's avatar
Gavin Wood committed
397
version = "2.6.0"
398
399
source = "registry+https://github.com/rust-lang/crates.io-index"

400
401
[[package]]
name = "byte-slice-cast"
402
version = "0.3.4"
403
404
source = "registry+https://github.com/rust-lang/crates.io-index"

405
406
[[package]]
name = "byte-tools"
407
version = "0.3.1"
408
409
410
411
412
413
414
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "byteorder"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"

asynchronous rob's avatar
asynchronous rob committed
415
416
[[package]]
name = "byteorder"
417
version = "1.3.2"
asynchronous rob's avatar
asynchronous rob committed
418
419
420
421
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "bytes"
422
version = "0.4.12"
asynchronous rob's avatar
asynchronous rob committed
423
424
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
425
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
426
 "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
427
 "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
428
429
]

Gavin Wood's avatar
Gavin Wood committed
430
431
432
433
434
[[package]]
name = "bytes"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

435
436
[[package]]
name = "c2-chacha"
Kian Paimani's avatar
Kian Paimani committed
437
version = "0.2.3"
438
439
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Kian Paimani's avatar
Kian Paimani committed
440
 "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
441
442
]

443
444
445
446
447
[[package]]
name = "c_linked_list"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

asynchronous rob's avatar
asynchronous rob committed
448
449
[[package]]
name = "cc"
450
version = "1.0.47"
asynchronous rob's avatar
asynchronous rob committed
451
source = "registry+https://github.com/rust-lang/crates.io-index"
452
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
453
 "jobserver 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)",
454
 "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)",
455
456
457
458
]

[[package]]
name = "cexpr"
459
version = "0.3.6"
460
461
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
462
 "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
463
]
asynchronous rob's avatar
asynchronous rob committed
464
465
466

[[package]]
name = "cfg-if"
467
version = "0.1.10"
asynchronous rob's avatar
asynchronous rob committed
468
469
470
471
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "chrono"
Gavin Wood's avatar
Gavin Wood committed
472
version = "0.4.9"
asynchronous rob's avatar
asynchronous rob committed
473
474
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
475
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
476
 "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
477
478
 "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
479
 "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
480
481
]

482
483
[[package]]
name = "clang-sys"
Gavin Wood's avatar
Gavin Wood committed
484
version = "0.28.1"
485
486
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
487
 "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
488
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
489
 "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
490
491
]

asynchronous rob's avatar
asynchronous rob committed
492
493
[[package]]
name = "clap"
494
version = "2.33.0"
asynchronous rob's avatar
asynchronous rob committed
495
496
497
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
498
 "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
499
500
501
 "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
502
 "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
503
 "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
504
505
506
507
508
509
510
]

[[package]]
name = "clear_on_drop"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
511
 "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
512
513
514
515
516
517
518
]

[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
519
 "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
520
521
]

522
523
524
525
526
527
[[package]]
name = "const-random"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "const-random-macro 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
528
 "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)",
529
530
531
532
533
534
535
]

[[package]]
name = "const-random-macro"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
536
 "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)",
thiolliere's avatar
thiolliere committed
537
 "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
538
539
]

asynchronous rob's avatar
asynchronous rob committed
540
541
[[package]]
name = "constant_time_eq"
Gavin Wood's avatar
Gavin Wood committed
542
version = "0.1.4"
asynchronous rob's avatar
asynchronous rob committed
543
544
source = "registry+https://github.com/rust-lang/crates.io-index"

Gavin Wood's avatar
Gavin Wood committed
545
[[package]]
Gavin Wood's avatar
Gavin Wood committed
546
name = "cranelift-bforest"
547
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
548
549
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
550
 "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
551
552
553
]

[[package]]
Gavin Wood's avatar
Gavin Wood committed
554
name = "cranelift-codegen"
555
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
556
557
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
558
559
560
561
562
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "cranelift-bforest 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "cranelift-codegen-meta 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "cranelift-codegen-shared 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
563
564
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
565
566
567
 "smallvec 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
568
569
570
571
]

[[package]]
name = "cranelift-codegen-meta"
572
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
573
574
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
575
576
 "cranelift-codegen-shared 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
577
578
579
580
]

[[package]]
name = "cranelift-codegen-shared"
581
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
582
583
584
585
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "cranelift-entity"
586
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
587
source = "registry+https://github.com/rust-lang/crates.io-index"
Gavin Wood's avatar
Gavin Wood committed
588
589
590
591
592
593
dependencies = [
 "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "cranelift-frontend"
594
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
595
596
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
597
 "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
598
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
599
600
 "smallvec 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
601
602
603
604
]

[[package]]
name = "cranelift-native"
605
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
606
607
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
608
609
610
 "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "raw-cpuid 7.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
611
612
613
614
]

[[package]]
name = "cranelift-wasm"
615
version = "0.50.0"
Gavin Wood's avatar
Gavin Wood committed
616
617
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
618
619
620
 "cranelift-codegen 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "cranelift-entity 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "cranelift-frontend 0.50.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
621
622
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
623
 "thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
624
 "wasmparser 0.39.3 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
625
]
Gavin Wood's avatar
Gavin Wood committed
626

627
[[package]]
628
629
name = "crc32fast"
version = "1.2.0"
630
631
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
632
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
633
634
]

635
636
637
638
639
640
641
642
[[package]]
name = "crossbeam-channel"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
]

643
644
645
646
647
648
649
650
[[package]]
name = "crossbeam-channel"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

651
652
[[package]]
name = "crossbeam-deque"
653
version = "0.7.2"
654
655
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
656
657
 "crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
658
659
]

asynchronous rob's avatar
asynchronous rob committed
660
661
[[package]]
name = "crossbeam-epoch"
662
version = "0.8.0"
asynchronous rob's avatar
asynchronous rob committed
663
664
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
665
 "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
666
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
667
 "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
668
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
669
 "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
670
 "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
671
672
]

673
674
675
676
677
[[package]]
name = "crossbeam-queue"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
678
 "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
679
680
]

681
682
683
684
685
686
687
688
[[package]]
name = "crossbeam-queue"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

asynchronous rob's avatar
asynchronous rob committed
689
690
[[package]]
name = "crossbeam-utils"
691
version = "0.6.6"
692
source = "registry+https://github.com/rust-lang/crates.io-index"
693
dependencies = [
694
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
695
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
696
]
697

698
699
700
701
702
703
704
705
706
707
[[package]]
name = "crossbeam-utils"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

708
709
[[package]]
name = "crunchy"
710
version = "0.2.2"
711
712
713
714
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "crypto-mac"
715
version = "0.7.0"
716
717
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
718
 "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
719
 "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
720
721
]

Gavin Wood's avatar
Gavin Wood committed
722
723
724
725
726
727
728
729
[[package]]
name = "ct-logs"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

730
731
[[package]]
name = "ctr"
732
version = "0.3.2"
733
734
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
735
 "block-cipher-trait 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
736
 "stream-cipher 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
737
738
]

asynchronous rob's avatar
asynchronous rob committed
739
740
[[package]]
name = "ctrlc"
741
version = "3.1.3"
742
source = "registry+https://github.com/rust-lang/crates.io-index"
asynchronous rob's avatar
asynchronous rob committed
743
dependencies = [
744
 "nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
745
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
746
747
]

748
749
750
751
752
753
[[package]]
name = "cuckoofilter"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
754
 "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)",
755
756
]

757
758
[[package]]
name = "curve25519-dalek"
759
version = "1.2.3"
760
761
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
762
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
763
 "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
764
 "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
765
 "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
766
 "subtle 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
767
768
]

769
770
[[package]]
name = "data-encoding"
771
version = "2.1.2"
772
773
source = "registry+https://github.com/rust-lang/crates.io-index"

774
775
[[package]]
name = "derive_more"
776
version = "0.14.1"
777
778
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
779
 "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
780
 "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
781
 "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
782
 "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)",
783
784
]

785
786
787
788
789
790
791
792
793
794
795
796
797
[[package]]
name = "derive_more"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
 "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)",
]

798
799
[[package]]
name = "derive_more"
Gavin Wood's avatar
Gavin Wood committed
800
version = "0.99.2"
801
802
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
803
804
805
 "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
 "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
 "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
806
807
]

asynchronous rob's avatar
asynchronous rob committed
808
809
[[package]]
name = "difference"
810
version = "2.0.0"
asynchronous rob's avatar
asynchronous rob committed
811
812
source = "registry+https://github.com/rust-lang/crates.io-index"

813
814
[[package]]
name = "digest"
815
816
817
818
819
820
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
]

Gavin Wood's avatar
Gavin Wood committed
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
[[package]]
name = "directories"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "dirs-sys 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "dirs-sys"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
 "redox_users 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

841
842
843
[[package]]
name = "dlmalloc"
version = "0.1.3"
844
845
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
846
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
847
848
849
850
851
852
853
]

[[package]]
name = "dns-parser"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
854
 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
855
856
857
 "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

Gavin Wood's avatar
Gavin Wood committed
858
859
860
861
862
[[package]]
name = "doc-comment"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

Gav Wood's avatar
Gav Wood committed
863
864
[[package]]
name = "ed25519-dalek"
865
version = "1.0.0-pre.2"
Gav Wood's avatar
Gav Wood committed
866
867
868
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
869
 "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
870
 "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
871
872
 "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
Gav Wood's avatar
Gav Wood committed
873
874
875
 "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

asynchronous rob's avatar
asynchronous rob committed
876
877
[[package]]
name = "either"
878
version = "1.5.3"
asynchronous rob's avatar
asynchronous rob committed
879
880
881
882
source = "registry+https://github.com/rust-lang/crates.io-index"

[[package]]
name = "elastic-array"
883
version = "0.10.2"
asynchronous rob's avatar
asynchronous rob committed
884
885
886
887
888
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "heapsize 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
]

889
890
891
892
893
894
895
896
[[package]]
name = "enum_primitive"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
]

897
898
[[package]]
name = "env_logger"
899
version = "0.6.2"
900
901
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
902
 "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
903
 "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
904
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
905
 "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
906
 "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
907
908
]

909
910
[[package]]
name = "env_logger"
911
version = "0.7.1"
912
913
914
915
916
917
918
919
920
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
 "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
 "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
]

asynchronous rob's avatar
asynchronous rob committed
921
922
[[package]]
name = "environmental"
923
version = "1.0.2"
924
source = "registry+https://github.com/rust-lang/crates.io-index"
asynchronous rob's avatar
asynchronous rob committed
925

926
927
928
929
930
[[package]]
name = "erased-serde"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Kian Paimani's avatar
Kian Paimani committed
931
 "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
932
933
]

Gavin Wood's avatar
Gavin Wood committed
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
[[package]]
name = "errno"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]

[[package]]
name = "errno-dragonfly"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)",
 "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
]

asynchronous rob's avatar
asynchronous rob committed
953
954
[[package]]
name = "exit-future"
955
version = "0.1.4"
asynchronous rob's avatar
asynchronous rob committed
956
957
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Gavin Wood's avatar
Gavin Wood committed
958
 "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
959
 "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
asynchronous rob's avatar
asynchronous rob committed
960
961
]

Gavin Wood's avatar
Gavin Wood committed
962
963
964
965
966
967
968
969
[[package]]
name = "exit-future"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
 "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
]

Gavin Wood's avatar
Gavin Wood committed
970
971
[[package]]
name = "faerie"
972
version = "0.13.0"
Gavin Wood's avatar
Gavin Wood committed
973
974
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
975
976
 "anyhow 1.0.22 (registry+https://github.com/rust-lang/crates.io-index)",
 "goblin 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
977
978
 "indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
979
 "scroll 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
980
 "string-interner 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
981
982
 "target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
 "thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
Gavin Wood's avatar
Gavin Wood committed
983
984
]

985
986
[[package]]
name = "failure"
987
version = "0.1.6"
988
source = "registry+https://github.com/rust-lang/crates.io-index"
989
dependencies = [
990
 "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)",
991
 "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
992
993
994
995
]

[[package]]
name = "failure_derive"
996
version = "0.1.6"
997
998
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
Kian Paimani's avatar
Kian Paimani committed
999
 "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
1000
 "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
For faster browsing, not all history is shown. View entire blame