diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 259 |
1 files changed, 230 insertions, 29 deletions
@@ -18,7 +18,7 @@ dependencies = [ | |||
18 | 18 | ||
19 | [[package]] | 19 | [[package]] |
20 | name = "anyhow" | 20 | name = "anyhow" |
21 | version = "1.0.19" | 21 | version = "1.0.23" |
22 | source = "registry+https://github.com/rust-lang/crates.io-index" | 22 | source = "registry+https://github.com/rust-lang/crates.io-index" |
23 | 23 | ||
24 | [[package]] | 24 | [[package]] |
@@ -41,6 +41,14 @@ version = "1.2.1" | |||
41 | source = "registry+https://github.com/rust-lang/crates.io-index" | 41 | source = "registry+https://github.com/rust-lang/crates.io-index" |
42 | 42 | ||
43 | [[package]] | 43 | [[package]] |
44 | name = "c2-chacha" | ||
45 | version = "0.2.3" | ||
46 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
47 | dependencies = [ | ||
48 | "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
49 | ] | ||
50 | |||
51 | [[package]] | ||
44 | name = "cfg-if" | 52 | name = "cfg-if" |
45 | version = "0.1.10" | 53 | version = "0.1.10" |
46 | source = "registry+https://github.com/rust-lang/crates.io-index" | 54 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -52,7 +60,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
52 | dependencies = [ | 60 | dependencies = [ |
53 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | 61 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", |
54 | "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", | 62 | "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", |
55 | "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", | 63 | "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", |
56 | "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", | 64 | "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", |
57 | ] | 65 | ] |
58 | 66 | ||
@@ -104,6 +112,51 @@ dependencies = [ | |||
104 | ] | 112 | ] |
105 | 113 | ||
106 | [[package]] | 114 | [[package]] |
115 | name = "crossbeam-deque" | ||
116 | version = "0.7.2" | ||
117 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
118 | dependencies = [ | ||
119 | "crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
120 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
121 | ] | ||
122 | |||
123 | [[package]] | ||
124 | name = "crossbeam-epoch" | ||
125 | version = "0.8.0" | ||
126 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
127 | dependencies = [ | ||
128 | "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | ||
129 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | ||
130 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
131 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
132 | "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
133 | "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
134 | ] | ||
135 | |||
136 | [[package]] | ||
137 | name = "crossbeam-queue" | ||
138 | version = "0.2.0" | ||
139 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
140 | dependencies = [ | ||
141 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
142 | ] | ||
143 | |||
144 | [[package]] | ||
145 | name = "crossbeam-utils" | ||
146 | version = "0.7.0" | ||
147 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
148 | dependencies = [ | ||
149 | "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | ||
150 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | ||
151 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
152 | ] | ||
153 | |||
154 | [[package]] | ||
155 | name = "either" | ||
156 | version = "1.5.3" | ||
157 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
158 | |||
159 | [[package]] | ||
107 | name = "env_logger" | 160 | name = "env_logger" |
108 | version = "0.6.2" | 161 | version = "0.6.2" |
109 | source = "registry+https://github.com/rust-lang/crates.io-index" | 162 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -116,6 +169,16 @@ dependencies = [ | |||
116 | ] | 169 | ] |
117 | 170 | ||
118 | [[package]] | 171 | [[package]] |
172 | name = "getrandom" | ||
173 | version = "0.1.13" | ||
174 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
175 | dependencies = [ | ||
176 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | ||
177 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | ||
178 | "wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
179 | ] | ||
180 | |||
181 | [[package]] | ||
119 | name = "glob" | 182 | name = "glob" |
120 | version = "0.3.0" | 183 | version = "0.3.0" |
121 | source = "registry+https://github.com/rust-lang/crates.io-index" | 184 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -173,17 +236,25 @@ version = "2.2.1" | |||
173 | source = "registry+https://github.com/rust-lang/crates.io-index" | 236 | source = "registry+https://github.com/rust-lang/crates.io-index" |
174 | 237 | ||
175 | [[package]] | 238 | [[package]] |
239 | name = "memoffset" | ||
240 | version = "0.5.3" | ||
241 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
242 | dependencies = [ | ||
243 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
244 | ] | ||
245 | |||
246 | [[package]] | ||
176 | name = "num-integer" | 247 | name = "num-integer" |
177 | version = "0.1.41" | 248 | version = "0.1.41" |
178 | source = "registry+https://github.com/rust-lang/crates.io-index" | 249 | source = "registry+https://github.com/rust-lang/crates.io-index" |
179 | dependencies = [ | 250 | dependencies = [ |
180 | "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 251 | "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", |
181 | "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", | 252 | "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", |
182 | ] | 253 | ] |
183 | 254 | ||
184 | [[package]] | 255 | [[package]] |
185 | name = "num-traits" | 256 | name = "num-traits" |
186 | version = "0.2.9" | 257 | version = "0.2.10" |
187 | source = "registry+https://github.com/rust-lang/crates.io-index" | 258 | source = "registry+https://github.com/rust-lang/crates.io-index" |
188 | dependencies = [ | 259 | dependencies = [ |
189 | "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", | 260 | "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -217,7 +288,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
217 | name = "poseidoc" | 288 | name = "poseidoc" |
218 | version = "0.1.0" | 289 | version = "0.1.0" |
219 | dependencies = [ | 290 | dependencies = [ |
220 | "anyhow 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)", | 291 | "anyhow 1.0.23 (registry+https://github.com/rust-lang/crates.io-index)", |
221 | "clang 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)", | 292 | "clang 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)", |
222 | "codemap 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 293 | "codemap 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
223 | "codemap-diagnostic 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | 294 | "codemap-diagnostic 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -226,18 +297,24 @@ dependencies = [ | |||
226 | "pandoc_types 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 297 | "pandoc_types 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
227 | "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 298 | "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
228 | "pretty_env_logger 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 299 | "pretty_env_logger 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", |
300 | "rayon 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
229 | "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", | 301 | "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", |
230 | "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", | 302 | "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", |
231 | "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", | 303 | "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", |
232 | "shell-words 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 304 | "shell-words 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
233 | "structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", | 305 | "structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", |
234 | "thiserror 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", | 306 | "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
235 | "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", | 307 | "thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", |
236 | "toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", | 308 | "toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", |
237 | "xml-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", | 309 | "xml-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", |
238 | ] | 310 | ] |
239 | 311 | ||
240 | [[package]] | 312 | [[package]] |
313 | name = "ppv-lite86" | ||
314 | version = "0.2.6" | ||
315 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
316 | |||
317 | [[package]] | ||
241 | name = "pretty_env_logger" | 318 | name = "pretty_env_logger" |
242 | version = "0.3.1" | 319 | version = "0.3.1" |
243 | source = "registry+https://github.com/rust-lang/crates.io-index" | 320 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -279,6 +356,65 @@ dependencies = [ | |||
279 | ] | 356 | ] |
280 | 357 | ||
281 | [[package]] | 358 | [[package]] |
359 | name = "rand" | ||
360 | version = "0.7.2" | ||
361 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
362 | dependencies = [ | ||
363 | "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", | ||
364 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | ||
365 | "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
366 | "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
367 | "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
368 | ] | ||
369 | |||
370 | [[package]] | ||
371 | name = "rand_chacha" | ||
372 | version = "0.2.1" | ||
373 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
374 | dependencies = [ | ||
375 | "c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
376 | "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
377 | ] | ||
378 | |||
379 | [[package]] | ||
380 | name = "rand_core" | ||
381 | version = "0.5.1" | ||
382 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
383 | dependencies = [ | ||
384 | "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", | ||
385 | ] | ||
386 | |||
387 | [[package]] | ||
388 | name = "rand_hc" | ||
389 | version = "0.2.0" | ||
390 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
391 | dependencies = [ | ||
392 | "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
393 | ] | ||
394 | |||
395 | [[package]] | ||
396 | name = "rayon" | ||
397 | version = "1.2.1" | ||
398 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
399 | dependencies = [ | ||
400 | "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
401 | "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
402 | "rayon-core 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
403 | ] | ||
404 | |||
405 | [[package]] | ||
406 | name = "rayon-core" | ||
407 | version = "1.6.1" | ||
408 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
409 | dependencies = [ | ||
410 | "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
411 | "crossbeam-queue 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
412 | "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
413 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
414 | "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
415 | ] | ||
416 | |||
417 | [[package]] | ||
282 | name = "redox_syscall" | 418 | name = "redox_syscall" |
283 | version = "0.1.56" | 419 | version = "0.1.56" |
284 | source = "registry+https://github.com/rust-lang/crates.io-index" | 420 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -300,11 +436,45 @@ version = "0.6.12" | |||
300 | source = "registry+https://github.com/rust-lang/crates.io-index" | 436 | source = "registry+https://github.com/rust-lang/crates.io-index" |
301 | 437 | ||
302 | [[package]] | 438 | [[package]] |
439 | name = "remove_dir_all" | ||
440 | version = "0.5.2" | ||
441 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
442 | dependencies = [ | ||
443 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
444 | ] | ||
445 | |||
446 | [[package]] | ||
447 | name = "rustc_version" | ||
448 | version = "0.2.3" | ||
449 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
450 | dependencies = [ | ||
451 | "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
452 | ] | ||
453 | |||
454 | [[package]] | ||
303 | name = "ryu" | 455 | name = "ryu" |
304 | version = "1.0.2" | 456 | version = "1.0.2" |
305 | source = "registry+https://github.com/rust-lang/crates.io-index" | 457 | source = "registry+https://github.com/rust-lang/crates.io-index" |
306 | 458 | ||
307 | [[package]] | 459 | [[package]] |
460 | name = "scopeguard" | ||
461 | version = "1.0.0" | ||
462 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
463 | |||
464 | [[package]] | ||
465 | name = "semver" | ||
466 | version = "0.9.0" | ||
467 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
468 | dependencies = [ | ||
469 | "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
470 | ] | ||
471 | |||
472 | [[package]] | ||
473 | name = "semver-parser" | ||
474 | version = "0.7.0" | ||
475 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
476 | |||
477 | [[package]] | ||
308 | name = "serde" | 478 | name = "serde" |
309 | version = "1.0.102" | 479 | version = "1.0.102" |
310 | source = "registry+https://github.com/rust-lang/crates.io-index" | 480 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -341,16 +511,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
341 | 511 | ||
342 | [[package]] | 512 | [[package]] |
343 | name = "structopt" | 513 | name = "structopt" |
344 | version = "0.3.4" | 514 | version = "0.3.5" |
345 | source = "registry+https://github.com/rust-lang/crates.io-index" | 515 | source = "registry+https://github.com/rust-lang/crates.io-index" |
346 | dependencies = [ | 516 | dependencies = [ |
347 | "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", | 517 | "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", |
348 | "structopt-derive 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", | 518 | "structopt-derive 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", |
349 | ] | 519 | ] |
350 | 520 | ||
351 | [[package]] | 521 | [[package]] |
352 | name = "structopt-derive" | 522 | name = "structopt-derive" |
353 | version = "0.3.4" | 523 | version = "0.3.5" |
354 | source = "registry+https://github.com/rust-lang/crates.io-index" | 524 | source = "registry+https://github.com/rust-lang/crates.io-index" |
355 | dependencies = [ | 525 | dependencies = [ |
356 | "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | 526 | "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -371,6 +541,19 @@ dependencies = [ | |||
371 | ] | 541 | ] |
372 | 542 | ||
373 | [[package]] | 543 | [[package]] |
544 | name = "tempfile" | ||
545 | version = "3.1.0" | ||
546 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
547 | dependencies = [ | ||
548 | "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", | ||
549 | "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", | ||
550 | "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
551 | "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", | ||
552 | "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
553 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
554 | ] | ||
555 | |||
556 | [[package]] | ||
374 | name = "termcolor" | 557 | name = "termcolor" |
375 | version = "1.0.5" | 558 | version = "1.0.5" |
376 | source = "registry+https://github.com/rust-lang/crates.io-index" | 559 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -388,15 +571,15 @@ dependencies = [ | |||
388 | 571 | ||
389 | [[package]] | 572 | [[package]] |
390 | name = "thiserror" | 573 | name = "thiserror" |
391 | version = "1.0.5" | 574 | version = "1.0.6" |
392 | source = "registry+https://github.com/rust-lang/crates.io-index" | 575 | source = "registry+https://github.com/rust-lang/crates.io-index" |
393 | dependencies = [ | 576 | dependencies = [ |
394 | "thiserror-impl 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", | 577 | "thiserror-impl 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", |
395 | ] | 578 | ] |
396 | 579 | ||
397 | [[package]] | 580 | [[package]] |
398 | name = "thiserror-impl" | 581 | name = "thiserror-impl" |
399 | version = "1.0.5" | 582 | version = "1.0.6" |
400 | source = "registry+https://github.com/rust-lang/crates.io-index" | 583 | source = "registry+https://github.com/rust-lang/crates.io-index" |
401 | dependencies = [ | 584 | dependencies = [ |
402 | "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 585 | "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -413,14 +596,6 @@ dependencies = [ | |||
413 | ] | 596 | ] |
414 | 597 | ||
415 | [[package]] | 598 | [[package]] |
416 | name = "threadpool" | ||
417 | version = "1.7.1" | ||
418 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
419 | dependencies = [ | ||
420 | "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
421 | ] | ||
422 | |||
423 | [[package]] | ||
424 | name = "time" | 599 | name = "time" |
425 | version = "0.1.42" | 600 | version = "0.1.42" |
426 | source = "registry+https://github.com/rust-lang/crates.io-index" | 601 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -459,6 +634,11 @@ version = "0.8.1" | |||
459 | source = "registry+https://github.com/rust-lang/crates.io-index" | 634 | source = "registry+https://github.com/rust-lang/crates.io-index" |
460 | 635 | ||
461 | [[package]] | 636 | [[package]] |
637 | name = "wasi" | ||
638 | version = "0.7.0" | ||
639 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
640 | |||
641 | [[package]] | ||
462 | name = "winapi" | 642 | name = "winapi" |
463 | version = "0.3.8" | 643 | version = "0.3.8" |
464 | source = "registry+https://github.com/rust-lang/crates.io-index" | 644 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -502,10 +682,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
502 | [metadata] | 682 | [metadata] |
503 | "checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" | 683 | "checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" |
504 | "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" | 684 | "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" |
505 | "checksum anyhow 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)" = "57114fc2a6cc374bce195d3482057c846e706d252ff3604363449695684d7a0d" | 685 | "checksum anyhow 1.0.23 (registry+https://github.com/rust-lang/crates.io-index)" = "6f1072d8f55592084072d2d3cb23a4b680a8543c00f10d446118e85ad3718142" |
506 | "checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" | 686 | "checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" |
507 | "checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" | 687 | "checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" |
508 | "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" | 688 | "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" |
689 | "checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb" | ||
509 | "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" | 690 | "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" |
510 | "checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68" | 691 | "checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68" |
511 | "checksum clang 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)" = "edaa418fdc81a329f3c8258a4e8776f7d2c31682147c5bda1c5c37ab8e818114" | 692 | "checksum clang 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)" = "edaa418fdc81a329f3c8258a4e8776f7d2c31682147c5bda1c5c37ab8e818114" |
@@ -513,7 +694,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
513 | "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" | 694 | "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" |
514 | "checksum codemap 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa90095b7cbcca06055fed0e0bc0dcfc66a841bd9ea62bab2303a41e092ed72" | 695 | "checksum codemap 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa90095b7cbcca06055fed0e0bc0dcfc66a841bd9ea62bab2303a41e092ed72" |
515 | "checksum codemap-diagnostic 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ba0e6be8e2774e750f9e90625b490249715bece38a12f9d09e82477caba5028" | 696 | "checksum codemap-diagnostic 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ba0e6be8e2774e750f9e90625b490249715bece38a12f9d09e82477caba5028" |
697 | "checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" | ||
698 | "checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" | ||
699 | "checksum crossbeam-queue 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dfd6515864a82d2f877b42813d4553292c6659498c9a2aa31bab5a15243c2700" | ||
700 | "checksum crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" | ||
701 | "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" | ||
516 | "checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3" | 702 | "checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3" |
703 | "checksum getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e7db7ca94ed4cd01190ceee0d8a8052f08a247aa1b469a7f68c6a3b71afcf407" | ||
517 | "checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" | 704 | "checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" |
518 | "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" | 705 | "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" |
519 | "checksum hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "307c3c9f937f38e3534b1d6447ecf090cafcc9744e4a6360e8b037b2cf5af120" | 706 | "checksum hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "307c3c9f937f38e3534b1d6447ecf090cafcc9744e4a6360e8b037b2cf5af120" |
@@ -523,40 +710,54 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
523 | "checksum libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)" = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8" | 710 | "checksum libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)" = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8" |
524 | "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" | 711 | "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" |
525 | "checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" | 712 | "checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" |
713 | "checksum memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" | ||
526 | "checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09" | 714 | "checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09" |
527 | "checksum num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)" = "443c53b3c3531dfcbfa499d8893944db78474ad7a1d87fa2d94d1a2231693ac6" | 715 | "checksum num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "d4c81ffc11c212fa327657cb19dd85eb7419e163b5b076bede2bdb5c974c07e4" |
528 | "checksum num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "76dac5ed2a876980778b8b85f75a71b6cbf0db0b1232ee12f826bccb00d09d72" | 716 | "checksum num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "76dac5ed2a876980778b8b85f75a71b6cbf0db0b1232ee12f826bccb00d09d72" |
529 | "checksum pandoc_types 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "29869c4f0ed84c2514105047415ff220679d7dbe566982c32f60a5c330cb77ed" | 717 | "checksum pandoc_types 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "29869c4f0ed84c2514105047415ff220679d7dbe566982c32f60a5c330cb77ed" |
530 | "checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" | 718 | "checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" |
719 | "checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" | ||
531 | "checksum pretty_env_logger 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "717ee476b1690853d222af4634056d830b5197ffd747726a9a1eee6da9f49074" | 720 | "checksum pretty_env_logger 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "717ee476b1690853d222af4634056d830b5197ffd747726a9a1eee6da9f49074" |
532 | "checksum proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097" | 721 | "checksum proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097" |
533 | "checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27" | 722 | "checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27" |
534 | "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" | 723 | "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" |
535 | "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" | 724 | "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" |
725 | "checksum rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412" | ||
726 | "checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" | ||
727 | "checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" | ||
728 | "checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" | ||
729 | "checksum rayon 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "43739f8831493b276363637423d3622d4bd6394ab6f0a9c4a552e208aeb7fddd" | ||
730 | "checksum rayon-core 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8bf17de6f23b05473c437eb958b9c850bfc8af0961fe17b4cc92d5a627b4791" | ||
536 | "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" | 731 | "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" |
537 | "checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd" | 732 | "checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd" |
538 | "checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716" | 733 | "checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716" |
734 | "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" | ||
735 | "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" | ||
539 | "checksum ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8" | 736 | "checksum ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8" |
737 | "checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" | ||
738 | "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" | ||
739 | "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" | ||
540 | "checksum serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "0c4b39bd9b0b087684013a792c59e3e07a46a01d2322518d8a1104641a0b1be0" | 740 | "checksum serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "0c4b39bd9b0b087684013a792c59e3e07a46a01d2322518d8a1104641a0b1be0" |
541 | "checksum serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "ca13fc1a832f793322228923fbb3aba9f3f44444898f835d31ad1b74fa0a2bf8" | 741 | "checksum serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "ca13fc1a832f793322228923fbb3aba9f3f44444898f835d31ad1b74fa0a2bf8" |
542 | "checksum serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)" = "2f72eb2a68a7dc3f9a691bfda9305a1c017a6215e5a4545c258500d2099a37c2" | 742 | "checksum serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)" = "2f72eb2a68a7dc3f9a691bfda9305a1c017a6215e5a4545c258500d2099a37c2" |
543 | "checksum shell-words 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "39acde55a154c4cd3ae048ac78cc21c25f3a0145e44111b523279113dce0d94a" | 743 | "checksum shell-words 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "39acde55a154c4cd3ae048ac78cc21c25f3a0145e44111b523279113dce0d94a" |
544 | "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" | 744 | "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" |
545 | "checksum structopt 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c167b61c7d4c126927f5346a4327ce20abf8a186b8041bbeb1ce49e5db49587b" | 745 | "checksum structopt 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "30b3a3e93f5ad553c38b3301c8a0a0cec829a36783f6a0c467fc4bf553a5f5bf" |
546 | "checksum structopt-derive 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "519621841414165d2ad0d4c92be8f41844203f2b67e245f9345a5a12d40c69d7" | 746 | "checksum structopt-derive 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea692d40005b3ceba90a9fe7a78fa8d4b82b0ce627eebbffc329aab850f3410e" |
547 | "checksum syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "661641ea2aa15845cddeb97dad000d22070bb5c1fb456b96c1cba883ec691e92" | 747 | "checksum syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "661641ea2aa15845cddeb97dad000d22070bb5c1fb456b96c1cba883ec691e92" |
748 | "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" | ||
548 | "checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e" | 749 | "checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e" |
549 | "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" | 750 | "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" |
550 | "checksum thiserror 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f9fb62ff737e573b1e677459bea6fd023cd5d6e868c3242d3cdf3ef2f0554824" | 751 | "checksum thiserror 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "cc6b305ec0e323c7b6cfff6098a22516e0063d0bb7c3d88660a890217dca099a" |
551 | "checksum thiserror-impl 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "24069c0ba08aab54289d6a25f5036d94afc61e1538bbc42ae5501df141c9027d" | 752 | "checksum thiserror-impl 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "45ba8d810d9c48fc456b7ad54574e8bfb7c7918a57ad7a6e6a0985d7959e8597" |
552 | "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" | 753 | "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" |
553 | "checksum threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e2f0c90a5f3459330ac8bc0d2f879c693bb7a2f59689c1083fc4ef83834da865" | ||
554 | "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" | 754 | "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" |
555 | "checksum toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "01d1404644c8b12b16bfcffa4322403a91a451584daaaa7c28d3152e6cbc98cf" | 755 | "checksum toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "01d1404644c8b12b16bfcffa4322403a91a451584daaaa7c28d3152e6cbc98cf" |
556 | "checksum unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" | 756 | "checksum unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0" |
557 | "checksum unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20" | 757 | "checksum unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20" |
558 | "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" | 758 | "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" |
559 | "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" | 759 | "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" |
760 | "checksum wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d" | ||
560 | "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" | 761 | "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" |
561 | "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | 762 | "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" |
562 | "checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" | 763 | "checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" |