diff options
-rw-r--r-- | Cargo.lock | 302 | ||||
-rw-r--r-- | crates/ra_analysis/Cargo.toml | 3 |
2 files changed, 203 insertions, 102 deletions
diff --git a/Cargo.lock b/Cargo.lock index 62feeb539..b9b430262 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -15,6 +15,11 @@ dependencies = [ | |||
15 | ] | 15 | ] |
16 | 16 | ||
17 | [[package]] | 17 | [[package]] |
18 | name = "arrayref" | ||
19 | version = "0.3.5" | ||
20 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
21 | |||
22 | [[package]] | ||
18 | name = "arrayvec" | 23 | name = "arrayvec" |
19 | version = "0.4.7" | 24 | version = "0.4.7" |
20 | source = "registry+https://github.com/rust-lang/crates.io-index" | 25 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -68,6 +73,20 @@ version = "1.0.4" | |||
68 | source = "registry+https://github.com/rust-lang/crates.io-index" | 73 | source = "registry+https://github.com/rust-lang/crates.io-index" |
69 | 74 | ||
70 | [[package]] | 75 | [[package]] |
76 | name = "block-buffer" | ||
77 | version = "0.3.3" | ||
78 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
79 | dependencies = [ | ||
80 | "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
81 | "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
82 | ] | ||
83 | |||
84 | [[package]] | ||
85 | name = "byte-tools" | ||
86 | version = "0.2.0" | ||
87 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
88 | |||
89 | [[package]] | ||
71 | name = "byteorder" | 90 | name = "byteorder" |
72 | version = "1.2.6" | 91 | version = "1.2.6" |
73 | source = "registry+https://github.com/rust-lang/crates.io-index" | 92 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -79,9 +98,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
79 | dependencies = [ | 98 | dependencies = [ |
80 | "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", | 99 | "error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", |
81 | "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", | 100 | "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", |
82 | "serde 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 101 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
83 | "serde_derive 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 102 | "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
84 | "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)", | 103 | "serde_json 1.0.32 (registry+https://github.com/rust-lang/crates.io-index)", |
85 | ] | 104 | ] |
86 | 105 | ||
87 | [[package]] | 106 | [[package]] |
@@ -188,6 +207,16 @@ version = "0.5.0" | |||
188 | source = "registry+https://github.com/rust-lang/crates.io-index" | 207 | source = "registry+https://github.com/rust-lang/crates.io-index" |
189 | 208 | ||
190 | [[package]] | 209 | [[package]] |
210 | name = "derive-new" | ||
211 | version = "0.5.5" | ||
212 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
213 | dependencies = [ | ||
214 | "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)", | ||
215 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
216 | "syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)", | ||
217 | ] | ||
218 | |||
219 | [[package]] | ||
191 | name = "deunicode" | 220 | name = "deunicode" |
192 | version = "0.4.3" | 221 | version = "0.4.3" |
193 | source = "registry+https://github.com/rust-lang/crates.io-index" | 222 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -198,6 +227,14 @@ version = "2.0.0" | |||
198 | source = "registry+https://github.com/rust-lang/crates.io-index" | 227 | source = "registry+https://github.com/rust-lang/crates.io-index" |
199 | 228 | ||
200 | [[package]] | 229 | [[package]] |
230 | name = "digest" | ||
231 | version = "0.7.6" | ||
232 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
233 | dependencies = [ | ||
234 | "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
235 | ] | ||
236 | |||
237 | [[package]] | ||
201 | name = "drop_bomb" | 238 | name = "drop_bomb" |
202 | version = "0.1.4" | 239 | version = "0.1.4" |
203 | source = "registry+https://github.com/rust-lang/crates.io-index" | 240 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -229,13 +266,18 @@ name = "failure_derive" | |||
229 | version = "0.1.2" | 266 | version = "0.1.2" |
230 | source = "registry+https://github.com/rust-lang/crates.io-index" | 267 | source = "registry+https://github.com/rust-lang/crates.io-index" |
231 | dependencies = [ | 268 | dependencies = [ |
232 | "proc-macro2 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)", | 269 | "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)", |
233 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | 270 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", |
234 | "syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)", | 271 | "syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)", |
235 | "synstructure 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", | 272 | "synstructure 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", |
236 | ] | 273 | ] |
237 | 274 | ||
238 | [[package]] | 275 | [[package]] |
276 | name = "fake-simd" | ||
277 | version = "0.1.2" | ||
278 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
279 | |||
280 | [[package]] | ||
239 | name = "flexi_logger" | 281 | name = "flexi_logger" |
240 | version = "0.9.2" | 282 | version = "0.9.2" |
241 | source = "registry+https://github.com/rust-lang/crates.io-index" | 283 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -277,9 +319,17 @@ dependencies = [ | |||
277 | "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 319 | "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
278 | "languageserver-types 0.51.0 (registry+https://github.com/rust-lang/crates.io-index)", | 320 | "languageserver-types 0.51.0 (registry+https://github.com/rust-lang/crates.io-index)", |
279 | "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", | 321 | "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", |
280 | "serde 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 322 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
281 | "serde_derive 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 323 | "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
282 | "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)", | 324 | "serde_json 1.0.32 (registry+https://github.com/rust-lang/crates.io-index)", |
325 | ] | ||
326 | |||
327 | [[package]] | ||
328 | name = "generic-array" | ||
329 | version = "0.9.0" | ||
330 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
331 | dependencies = [ | ||
332 | "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
283 | ] | 333 | ] |
284 | 334 | ||
285 | [[package]] | 335 | [[package]] |
@@ -312,7 +362,7 @@ dependencies = [ | |||
312 | 362 | ||
313 | [[package]] | 363 | [[package]] |
314 | name = "im" | 364 | name = "im" |
315 | version = "12.1.0" | 365 | version = "12.2.0" |
316 | source = "registry+https://github.com/rust-lang/crates.io-index" | 366 | source = "registry+https://github.com/rust-lang/crates.io-index" |
317 | dependencies = [ | 367 | dependencies = [ |
318 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | 368 | "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -320,6 +370,11 @@ dependencies = [ | |||
320 | ] | 370 | ] |
321 | 371 | ||
322 | [[package]] | 372 | [[package]] |
373 | name = "indexmap" | ||
374 | version = "1.0.1" | ||
375 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
376 | |||
377 | [[package]] | ||
323 | name = "itertools" | 378 | name = "itertools" |
324 | version = "0.7.8" | 379 | version = "0.7.8" |
325 | source = "registry+https://github.com/rust-lang/crates.io-index" | 380 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -343,11 +398,11 @@ version = "0.51.0" | |||
343 | source = "registry+https://github.com/rust-lang/crates.io-index" | 398 | source = "registry+https://github.com/rust-lang/crates.io-index" |
344 | dependencies = [ | 399 | dependencies = [ |
345 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", | 400 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", |
346 | "num-derive 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | 401 | "num-derive 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", |
347 | "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", | 402 | "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", |
348 | "serde 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 403 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
349 | "serde_derive 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 404 | "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
350 | "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)", | 405 | "serde_json 1.0.32 (registry+https://github.com/rust-lang/crates.io-index)", |
351 | "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", | 406 | "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", |
352 | "url_serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 407 | "url_serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
353 | ] | 408 | ] |
@@ -383,6 +438,11 @@ dependencies = [ | |||
383 | ] | 438 | ] |
384 | 439 | ||
385 | [[package]] | 440 | [[package]] |
441 | name = "maplit" | ||
442 | version = "1.0.1" | ||
443 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
444 | |||
445 | [[package]] | ||
386 | name = "matches" | 446 | name = "matches" |
387 | version = "0.1.8" | 447 | version = "0.1.8" |
388 | source = "registry+https://github.com/rust-lang/crates.io-index" | 448 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -418,13 +478,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
418 | 478 | ||
419 | [[package]] | 479 | [[package]] |
420 | name = "num-derive" | 480 | name = "num-derive" |
421 | version = "0.2.2" | 481 | version = "0.2.3" |
422 | source = "registry+https://github.com/rust-lang/crates.io-index" | 482 | source = "registry+https://github.com/rust-lang/crates.io-index" |
423 | dependencies = [ | 483 | dependencies = [ |
424 | "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", | 484 | "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", |
425 | "proc-macro2 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)", | 485 | "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)", |
426 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | 486 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", |
427 | "syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)", | 487 | "syn 0.15.11 (registry+https://github.com/rust-lang/crates.io-index)", |
428 | ] | 488 | ] |
429 | 489 | ||
430 | [[package]] | 490 | [[package]] |
@@ -492,38 +552,57 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
492 | 552 | ||
493 | [[package]] | 553 | [[package]] |
494 | name = "pest" | 554 | name = "pest" |
495 | version = "1.0.6" | 555 | version = "2.0.1" |
496 | source = "registry+https://github.com/rust-lang/crates.io-index" | 556 | source = "registry+https://github.com/rust-lang/crates.io-index" |
557 | dependencies = [ | ||
558 | "ucd-trie 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
559 | ] | ||
497 | 560 | ||
498 | [[package]] | 561 | [[package]] |
499 | name = "pest_derive" | 562 | name = "pest_derive" |
500 | version = "1.0.8" | 563 | version = "2.0.1" |
501 | source = "registry+https://github.com/rust-lang/crates.io-index" | 564 | source = "registry+https://github.com/rust-lang/crates.io-index" |
502 | dependencies = [ | 565 | dependencies = [ |
503 | "pest 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 566 | "pest 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
504 | "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", | 567 | "pest_generator 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", |
505 | "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", | ||
506 | ] | 568 | ] |
507 | 569 | ||
508 | [[package]] | 570 | [[package]] |
509 | name = "proc-macro2" | 571 | name = "pest_generator" |
510 | version = "0.4.19" | 572 | version = "2.0.0" |
511 | source = "registry+https://github.com/rust-lang/crates.io-index" | 573 | source = "registry+https://github.com/rust-lang/crates.io-index" |
512 | dependencies = [ | 574 | dependencies = [ |
513 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 575 | "pest 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
576 | "pest_meta 2.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
577 | "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)", | ||
578 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
579 | "syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)", | ||
514 | ] | 580 | ] |
515 | 581 | ||
516 | [[package]] | 582 | [[package]] |
517 | name = "quote" | 583 | name = "pest_meta" |
518 | version = "0.3.15" | 584 | version = "2.0.3" |
519 | source = "registry+https://github.com/rust-lang/crates.io-index" | 585 | source = "registry+https://github.com/rust-lang/crates.io-index" |
586 | dependencies = [ | ||
587 | "maplit 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
588 | "pest 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
589 | "sha-1 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
590 | ] | ||
591 | |||
592 | [[package]] | ||
593 | name = "proc-macro2" | ||
594 | version = "0.4.20" | ||
595 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
596 | dependencies = [ | ||
597 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
598 | ] | ||
520 | 599 | ||
521 | [[package]] | 600 | [[package]] |
522 | name = "quote" | 601 | name = "quote" |
523 | version = "0.6.8" | 602 | version = "0.6.8" |
524 | source = "registry+https://github.com/rust-lang/crates.io-index" | 603 | source = "registry+https://github.com/rust-lang/crates.io-index" |
525 | dependencies = [ | 604 | dependencies = [ |
526 | "proc-macro2 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)", | 605 | "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)", |
527 | ] | 606 | ] |
528 | 607 | ||
529 | [[package]] | 608 | [[package]] |
@@ -532,7 +611,7 @@ version = "0.1.0" | |||
532 | dependencies = [ | 611 | dependencies = [ |
533 | "crossbeam-channel 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", | 612 | "crossbeam-channel 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", |
534 | "fst 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", | 613 | "fst 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", |
535 | "im 12.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 614 | "im 12.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
536 | "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", | 615 | "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", |
537 | "once_cell 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", | 616 | "once_cell 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", |
538 | "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", | 617 | "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -540,8 +619,7 @@ dependencies = [ | |||
540 | "ra_syntax 0.1.0", | 619 | "ra_syntax 0.1.0", |
541 | "rayon 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 620 | "rayon 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", |
542 | "relative-path 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", | 621 | "relative-path 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", |
543 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 622 | "salsa 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", |
544 | "salsa 0.1.0", | ||
545 | "test_utils 0.1.0", | 623 | "test_utils 0.1.0", |
546 | ] | 624 | ] |
547 | 625 | ||
@@ -579,7 +657,7 @@ dependencies = [ | |||
579 | "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | 657 | "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", |
580 | "flexi_logger 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", | 658 | "flexi_logger 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", |
581 | "gen_lsp_server 0.1.0", | 659 | "gen_lsp_server 0.1.0", |
582 | "im 12.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 660 | "im 12.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
583 | "languageserver-types 0.51.0 (registry+https://github.com/rust-lang/crates.io-index)", | 661 | "languageserver-types 0.51.0 (registry+https://github.com/rust-lang/crates.io-index)", |
584 | "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", | 662 | "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", |
585 | "ra_analysis 0.1.0", | 663 | "ra_analysis 0.1.0", |
@@ -588,10 +666,10 @@ dependencies = [ | |||
588 | "rayon 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | 666 | "rayon 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", |
589 | "relative-path 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", | 667 | "relative-path 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", |
590 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | 668 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
591 | "serde 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 669 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
592 | "serde_derive 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 670 | "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
593 | "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)", | 671 | "serde_json 1.0.32 (registry+https://github.com/rust-lang/crates.io-index)", |
594 | "smol_str 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", | 672 | "smol_str 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", |
595 | "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", | 673 | "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", |
596 | "text_unit 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 674 | "text_unit 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", |
597 | "url_serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | 675 | "url_serde 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -629,13 +707,21 @@ dependencies = [ | |||
629 | "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | 707 | "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", |
630 | "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | 708 | "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", |
631 | "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", | 709 | "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", |
632 | "rand_core 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | 710 | "rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", |
633 | "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", | 711 | "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", |
634 | ] | 712 | ] |
635 | 713 | ||
636 | [[package]] | 714 | [[package]] |
637 | name = "rand_core" | 715 | name = "rand_core" |
638 | version = "0.2.1" | 716 | version = "0.2.2" |
717 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
718 | dependencies = [ | ||
719 | "rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
720 | ] | ||
721 | |||
722 | [[package]] | ||
723 | name = "rand_core" | ||
724 | version = "0.3.0" | ||
639 | source = "registry+https://github.com/rust-lang/crates.io-index" | 725 | source = "registry+https://github.com/rust-lang/crates.io-index" |
640 | 726 | ||
641 | [[package]] | 727 | [[package]] |
@@ -712,7 +798,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
712 | dependencies = [ | 798 | dependencies = [ |
713 | "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", | 799 | "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", |
714 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", | 800 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", |
715 | "serde 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 801 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
716 | ] | 802 | ] |
717 | 803 | ||
718 | [[package]] | 804 | [[package]] |
@@ -721,7 +807,7 @@ version = "0.1.0" | |||
721 | source = "registry+https://github.com/rust-lang/crates.io-index" | 807 | source = "registry+https://github.com/rust-lang/crates.io-index" |
722 | dependencies = [ | 808 | dependencies = [ |
723 | "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", | 809 | "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", |
724 | "smol_str 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", | 810 | "smol_str 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", |
725 | "text_unit 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 811 | "text_unit 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", |
726 | ] | 812 | ] |
727 | 813 | ||
@@ -760,8 +846,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
760 | name = "salsa" | 846 | name = "salsa" |
761 | version = "0.1.0" | 847 | version = "0.1.0" |
762 | dependencies = [ | 848 | dependencies = [ |
763 | "im 12.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 849 | "im 12.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |
850 | "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
851 | ] | ||
852 | |||
853 | [[package]] | ||
854 | name = "salsa" | ||
855 | version = "0.4.1" | ||
856 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
857 | dependencies = [ | ||
858 | "derive-new 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
859 | "indexmap 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
860 | "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
764 | "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", | 861 | "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", |
862 | "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
765 | ] | 863 | ] |
766 | 864 | ||
767 | [[package]] | 865 | [[package]] |
@@ -783,7 +881,7 @@ version = "0.9.0" | |||
783 | source = "registry+https://github.com/rust-lang/crates.io-index" | 881 | source = "registry+https://github.com/rust-lang/crates.io-index" |
784 | dependencies = [ | 882 | dependencies = [ |
785 | "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 883 | "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", |
786 | "serde 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 884 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
787 | ] | 885 | ] |
788 | 886 | ||
789 | [[package]] | 887 | [[package]] |
@@ -793,30 +891,41 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
793 | 891 | ||
794 | [[package]] | 892 | [[package]] |
795 | name = "serde" | 893 | name = "serde" |
796 | version = "1.0.79" | 894 | version = "1.0.80" |
797 | source = "registry+https://github.com/rust-lang/crates.io-index" | 895 | source = "registry+https://github.com/rust-lang/crates.io-index" |
798 | dependencies = [ | 896 | dependencies = [ |
799 | "serde_derive 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 897 | "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
800 | ] | 898 | ] |
801 | 899 | ||
802 | [[package]] | 900 | [[package]] |
803 | name = "serde_derive" | 901 | name = "serde_derive" |
804 | version = "1.0.79" | 902 | version = "1.0.80" |
805 | source = "registry+https://github.com/rust-lang/crates.io-index" | 903 | source = "registry+https://github.com/rust-lang/crates.io-index" |
806 | dependencies = [ | 904 | dependencies = [ |
807 | "proc-macro2 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)", | 905 | "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)", |
808 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | 906 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", |
809 | "syn 0.15.7 (registry+https://github.com/rust-lang/crates.io-index)", | 907 | "syn 0.15.11 (registry+https://github.com/rust-lang/crates.io-index)", |
810 | ] | 908 | ] |
811 | 909 | ||
812 | [[package]] | 910 | [[package]] |
813 | name = "serde_json" | 911 | name = "serde_json" |
814 | version = "1.0.31" | 912 | version = "1.0.32" |
815 | source = "registry+https://github.com/rust-lang/crates.io-index" | 913 | source = "registry+https://github.com/rust-lang/crates.io-index" |
816 | dependencies = [ | 914 | dependencies = [ |
817 | "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", | 915 | "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", |
818 | "ryu 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", | 916 | "ryu 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", |
819 | "serde 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 917 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
918 | ] | ||
919 | |||
920 | [[package]] | ||
921 | name = "sha-1" | ||
922 | version = "0.7.0" | ||
923 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
924 | dependencies = [ | ||
925 | "block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
926 | "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
927 | "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
928 | "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
820 | ] | 929 | ] |
821 | 930 | ||
822 | [[package]] | 931 | [[package]] |
@@ -837,10 +946,10 @@ dependencies = [ | |||
837 | 946 | ||
838 | [[package]] | 947 | [[package]] |
839 | name = "smol_str" | 948 | name = "smol_str" |
840 | version = "0.1.6" | 949 | version = "0.1.7" |
841 | source = "registry+https://github.com/rust-lang/crates.io-index" | 950 | source = "registry+https://github.com/rust-lang/crates.io-index" |
842 | dependencies = [ | 951 | dependencies = [ |
843 | "serde 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 952 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
844 | ] | 953 | ] |
845 | 954 | ||
846 | [[package]] | 955 | [[package]] |
@@ -860,48 +969,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
860 | 969 | ||
861 | [[package]] | 970 | [[package]] |
862 | name = "syn" | 971 | name = "syn" |
863 | version = "0.11.11" | ||
864 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
865 | dependencies = [ | ||
866 | "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", | ||
867 | "synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
868 | "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
869 | ] | ||
870 | |||
871 | [[package]] | ||
872 | name = "syn" | ||
873 | version = "0.14.9" | 972 | version = "0.14.9" |
874 | source = "registry+https://github.com/rust-lang/crates.io-index" | 973 | source = "registry+https://github.com/rust-lang/crates.io-index" |
875 | dependencies = [ | 974 | dependencies = [ |
876 | "proc-macro2 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)", | 975 | "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)", |
877 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | 976 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", |
878 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 977 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
879 | ] | 978 | ] |
880 | 979 | ||
881 | [[package]] | 980 | [[package]] |
882 | name = "syn" | 981 | name = "syn" |
883 | version = "0.15.7" | 982 | version = "0.15.11" |
884 | source = "registry+https://github.com/rust-lang/crates.io-index" | 983 | source = "registry+https://github.com/rust-lang/crates.io-index" |
885 | dependencies = [ | 984 | dependencies = [ |
886 | "proc-macro2 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)", | 985 | "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)", |
887 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | 986 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", |
888 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 987 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
889 | ] | 988 | ] |
890 | 989 | ||
891 | [[package]] | 990 | [[package]] |
892 | name = "synom" | ||
893 | version = "0.11.3" | ||
894 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
895 | dependencies = [ | ||
896 | "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
897 | ] | ||
898 | |||
899 | [[package]] | ||
900 | name = "synstructure" | 991 | name = "synstructure" |
901 | version = "0.9.0" | 992 | version = "0.9.0" |
902 | source = "registry+https://github.com/rust-lang/crates.io-index" | 993 | source = "registry+https://github.com/rust-lang/crates.io-index" |
903 | dependencies = [ | 994 | dependencies = [ |
904 | "proc-macro2 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)", | 995 | "proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)", |
905 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | 996 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", |
906 | "syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)", | 997 | "syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)", |
907 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 998 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -918,7 +1009,7 @@ dependencies = [ | |||
918 | 1009 | ||
919 | [[package]] | 1010 | [[package]] |
920 | name = "tera" | 1011 | name = "tera" |
921 | version = "0.11.16" | 1012 | version = "0.11.17" |
922 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1013 | source = "registry+https://github.com/rust-lang/crates.io-index" |
923 | dependencies = [ | 1014 | dependencies = [ |
924 | "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | 1015 | "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -926,11 +1017,11 @@ dependencies = [ | |||
926 | "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", | 1017 | "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", |
927 | "humansize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1018 | "humansize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
928 | "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1019 | "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", |
929 | "pest 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", | 1020 | "pest 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
930 | "pest_derive 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1021 | "pest_derive 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", |
931 | "regex 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1022 | "regex 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", |
932 | "serde 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 1023 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
933 | "serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)", | 1024 | "serde_json 1.0.32 (registry+https://github.com/rust-lang/crates.io-index)", |
934 | "slug 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | 1025 | "slug 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", |
935 | "unic-segment 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1026 | "unic-segment 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", |
936 | "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1027 | "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", |
@@ -960,7 +1051,7 @@ name = "text_unit" | |||
960 | version = "0.1.4" | 1051 | version = "0.1.4" |
961 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1052 | source = "registry+https://github.com/rust-lang/crates.io-index" |
962 | dependencies = [ | 1053 | dependencies = [ |
963 | "serde 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 1054 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
964 | ] | 1055 | ] |
965 | 1056 | ||
966 | [[package]] | 1057 | [[package]] |
@@ -998,7 +1089,7 @@ dependencies = [ | |||
998 | "heck 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1089 | "heck 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", |
999 | "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)", | 1090 | "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)", |
1000 | "ron 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | 1091 | "ron 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", |
1001 | "tera 0.11.16 (registry+https://github.com/rust-lang/crates.io-index)", | 1092 | "tera 0.11.17 (registry+https://github.com/rust-lang/crates.io-index)", |
1002 | "walkdir 2.2.5 (registry+https://github.com/rust-lang/crates.io-index)", | 1093 | "walkdir 2.2.5 (registry+https://github.com/rust-lang/crates.io-index)", |
1003 | ] | 1094 | ] |
1004 | 1095 | ||
@@ -1008,6 +1099,11 @@ version = "1.10.0" | |||
1008 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1099 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1009 | 1100 | ||
1010 | [[package]] | 1101 | [[package]] |
1102 | name = "ucd-trie" | ||
1103 | version = "0.1.1" | ||
1104 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1105 | |||
1106 | [[package]] | ||
1011 | name = "ucd-util" | 1107 | name = "ucd-util" |
1012 | version = "0.1.1" | 1108 | version = "0.1.1" |
1013 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1109 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1081,11 +1177,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1081 | 1177 | ||
1082 | [[package]] | 1178 | [[package]] |
1083 | name = "unicode-xid" | 1179 | name = "unicode-xid" |
1084 | version = "0.0.4" | ||
1085 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1086 | |||
1087 | [[package]] | ||
1088 | name = "unicode-xid" | ||
1089 | version = "0.1.0" | 1180 | version = "0.1.0" |
1090 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1181 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1091 | 1182 | ||
@@ -1112,7 +1203,7 @@ name = "url_serde" | |||
1112 | version = "0.2.0" | 1203 | version = "0.2.0" |
1113 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1204 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1114 | dependencies = [ | 1205 | dependencies = [ |
1115 | "serde 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)", | 1206 | "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", |
1116 | "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", | 1207 | "url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", |
1117 | ] | 1208 | ] |
1118 | 1209 | ||
@@ -1176,12 +1267,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1176 | [metadata] | 1267 | [metadata] |
1177 | "checksum aho-corasick 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "68f56c7353e5a9547cbd76ed90f7bb5ffc3ba09d4ea9bd1d8c06c8b1142eeb5a" | 1268 | "checksum aho-corasick 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "68f56c7353e5a9547cbd76ed90f7bb5ffc3ba09d4ea9bd1d8c06c8b1142eeb5a" |
1178 | "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" | 1269 | "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" |
1270 | "checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee" | ||
1179 | "checksum arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef" | 1271 | "checksum arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef" |
1180 | "checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" | 1272 | "checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" |
1181 | "checksum backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "89a47830402e9981c5c41223151efcced65a0510c13097c769cede7efb34782a" | 1273 | "checksum backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "89a47830402e9981c5c41223151efcced65a0510c13097c769cede7efb34782a" |
1182 | "checksum backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)" = "c66d56ac8dabd07f6aacdaf633f4b8262f5b3601a810a0dcddffd5c22c69daa0" | 1274 | "checksum backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)" = "c66d56ac8dabd07f6aacdaf633f4b8262f5b3601a810a0dcddffd5c22c69daa0" |
1183 | "checksum base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" | 1275 | "checksum base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" |
1184 | "checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" | 1276 | "checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" |
1277 | "checksum block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a076c298b9ecdb530ed9d967e74a6027d6a7478924520acddcddc24c1c8ab3ab" | ||
1278 | "checksum byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40" | ||
1185 | "checksum byteorder 1.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "90492c5858dd7d2e78691cfb89f90d273a2800fc11d98f60786e5d87e2f83781" | 1279 | "checksum byteorder 1.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "90492c5858dd7d2e78691cfb89f90d273a2800fc11d98f60786e5d87e2f83781" |
1186 | "checksum cargo_metadata 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d6809b327f87369e6f3651efd2c5a96c49847a3ed2559477ecba79014751ee1" | 1280 | "checksum cargo_metadata 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d6809b327f87369e6f3651efd2c5a96c49847a3ed2559477ecba79014751ee1" |
1187 | "checksum cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "f159dfd43363c4d08055a07703eb7a3406b0dac4d0584d96965a3262db3c9d16" | 1281 | "checksum cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "f159dfd43363c4d08055a07703eb7a3406b0dac4d0584d96965a3262db3c9d16" |
@@ -1195,22 +1289,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1195 | "checksum crossbeam-epoch 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c90f1474584f38e270b5b613e898c8c328aa4f3dea85e0a27ac2e642f009416" | 1289 | "checksum crossbeam-epoch 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c90f1474584f38e270b5b613e898c8c328aa4f3dea85e0a27ac2e642f009416" |
1196 | "checksum crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2760899e32a1d58d5abb31129f8fae5de75220bc2176e77ff7c627ae45c918d9" | 1290 | "checksum crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2760899e32a1d58d5abb31129f8fae5de75220bc2176e77ff7c627ae45c918d9" |
1197 | "checksum crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "677d453a17e8bd2b913fa38e8b9cf04bcdbb5be790aa294f2389661d72036015" | 1291 | "checksum crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "677d453a17e8bd2b913fa38e8b9cf04bcdbb5be790aa294f2389661d72036015" |
1292 | "checksum derive-new 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "899ec79626c14e00ccc9729b4d750bbe67fe76a8f436824c16e0233bbd9d7daa" | ||
1198 | "checksum deunicode 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "850878694b7933ca4c9569d30a34b55031b9b139ee1fc7b94a527c4ef960d690" | 1293 | "checksum deunicode 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "850878694b7933ca4c9569d30a34b55031b9b139ee1fc7b94a527c4ef960d690" |
1199 | "checksum difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198" | 1294 | "checksum difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198" |
1295 | "checksum digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "03b072242a8cbaf9c145665af9d250c59af3b958f83ed6824e13533cf76d5b90" | ||
1200 | "checksum drop_bomb 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "69b26e475fd29098530e709294e94e661974c851aed42512793f120fed4e199f" | 1296 | "checksum drop_bomb 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "69b26e475fd29098530e709294e94e661974c851aed42512793f120fed4e199f" |
1201 | "checksum either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0" | 1297 | "checksum either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0" |
1202 | "checksum error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02" | 1298 | "checksum error-chain 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02" |
1203 | "checksum failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7efb22686e4a466b1ec1a15c2898f91fa9cb340452496dca654032de20ff95b9" | 1299 | "checksum failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7efb22686e4a466b1ec1a15c2898f91fa9cb340452496dca654032de20ff95b9" |
1204 | "checksum failure_derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "946d0e98a50d9831f5d589038d2ca7f8f455b1c21028c0db0e84116a12696426" | 1300 | "checksum failure_derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "946d0e98a50d9831f5d589038d2ca7f8f455b1c21028c0db0e84116a12696426" |
1301 | "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" | ||
1205 | "checksum flexi_logger 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2103a4bd3f67bf8b3e89fe0695cd13ac23c9968a2a81f2ccf2d95f1bb4e5a520" | 1302 | "checksum flexi_logger 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2103a4bd3f67bf8b3e89fe0695cd13ac23c9968a2a81f2ccf2d95f1bb4e5a520" |
1206 | "checksum fst 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9b0408ab57c1bf7c634b2ac6a165d14f642dc3335a43203090a7f8c78b54577b" | 1303 | "checksum fst 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9b0408ab57c1bf7c634b2ac6a165d14f642dc3335a43203090a7f8c78b54577b" |
1207 | "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" | 1304 | "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" |
1208 | "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" | 1305 | "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" |
1306 | "checksum generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef25c5683767570c2bbd7deba372926a55eaae9982d7726ee2a1050239d45b9d" | ||
1209 | "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" | 1307 | "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" |
1210 | "checksum heck 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ea04fa3ead4e05e51a7c806fc07271fdbde4e246a6c6d1efd52e72230b771b82" | 1308 | "checksum heck 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ea04fa3ead4e05e51a7c806fc07271fdbde4e246a6c6d1efd52e72230b771b82" |
1211 | "checksum humansize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6cab2627acfc432780848602f3f558f7e9dd427352224b0d9324025796d2a5e" | 1309 | "checksum humansize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6cab2627acfc432780848602f3f558f7e9dd427352224b0d9324025796d2a5e" |
1212 | "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" | 1310 | "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" |
1213 | "checksum im 12.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "90742b94a13db9b161eeab35f89bc9723634eb72bfd124f3ebb025734fdfef18" | 1311 | "checksum im 12.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ae9c7f9bb8aee47fc16d535a705f7867a9fc83bb822e5e1043bb98e77ffeed3c" |
1312 | "checksum indexmap 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "08173ba1e906efb6538785a8844dd496f5d34f0a2d88038e95195172fc667220" | ||
1214 | "checksum itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)" = "f58856976b776fedd95533137617a02fb25719f40e7d9b01c7043cd65474f450" | 1313 | "checksum itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)" = "f58856976b776fedd95533137617a02fb25719f40e7d9b01c7043cd65474f450" |
1215 | "checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b" | 1314 | "checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b" |
1216 | "checksum join_to_string 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7bddc885f3fd69dd4b5d747c2efe6dd2c36d795ea9938281ed50910e32c95e31" | 1315 | "checksum join_to_string 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7bddc885f3fd69dd4b5d747c2efe6dd2c36d795ea9938281ed50910e32c95e31" |
@@ -1219,12 +1318,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1219 | "checksum libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)" = "76e3a3ef172f1a0b9a9ff0dd1491ae5e6c948b94479a3021819ba7d860c8645d" | 1318 | "checksum libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)" = "76e3a3ef172f1a0b9a9ff0dd1491ae5e6c948b94479a3021819ba7d860c8645d" |
1220 | "checksum lock_api 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "775751a3e69bde4df9b38dd00a1b5d6ac13791e4223d4a0506577f0dd27cfb7a" | 1319 | "checksum lock_api 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "775751a3e69bde4df9b38dd00a1b5d6ac13791e4223d4a0506577f0dd27cfb7a" |
1221 | "checksum log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fcce5fa49cc693c312001daf1d13411c4a5283796bac1084299ea3e567113f" | 1320 | "checksum log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fcce5fa49cc693c312001daf1d13411c4a5283796bac1084299ea3e567113f" |
1321 | "checksum maplit 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "08cbb6b4fef96b6d77bfc40ec491b1690c779e77b05cd9f07f787ed376fd4c43" | ||
1222 | "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" | 1322 | "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" |
1223 | "checksum memchr 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4b3629fe9fdbff6daa6c33b90f7c08355c1aca05a3d01fa8063b822fcf185f3b" | 1323 | "checksum memchr 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4b3629fe9fdbff6daa6c33b90f7c08355c1aca05a3d01fa8063b822fcf185f3b" |
1224 | "checksum memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2ffa2c986de11a9df78620c01eeaaf27d94d3ff02bf81bfcca953102dd0c6ff" | 1324 | "checksum memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2ffa2c986de11a9df78620c01eeaaf27d94d3ff02bf81bfcca953102dd0c6ff" |
1225 | "checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" | 1325 | "checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" |
1226 | "checksum nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2" | 1326 | "checksum nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2" |
1227 | "checksum num-derive 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0d2c31b75c36a993d30c7a13d70513cb93f02acafdd5b7ba250f9b0e18615de7" | 1327 | "checksum num-derive 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8af1847c907c2f04d7bfd572fb25bbb4385c637fe5be163cf2f8c5d778fe1e7d" |
1228 | "checksum num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea" | 1328 | "checksum num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea" |
1229 | "checksum num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1" | 1329 | "checksum num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1" |
1230 | "checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30" | 1330 | "checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30" |
@@ -1233,14 +1333,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1233 | "checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5" | 1333 | "checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5" |
1234 | "checksum parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c" | 1334 | "checksum parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c" |
1235 | "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" | 1335 | "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" |
1236 | "checksum pest 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0fce5d8b5cc33983fc74f78ad552b5522ab41442c4ca91606e4236eb4b5ceefc" | 1336 | "checksum pest 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c3abb0d36ede865dcc689fd3bee2ff39094eff6e57a814f4a53c3c6108088353" |
1237 | "checksum pest_derive 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3294f437119209b084c797604295f40227cffa35c57220b1e99a6ff3bf8ee4" | 1337 | "checksum pest_derive 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b76f477146419bc539a63f4ef40e902166cb43b3e51cecc71d9136fd12c567e7" |
1238 | "checksum proc-macro2 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)" = "ffe022fb8c8bd254524b0b3305906c1921fa37a84a644e29079a9e62200c3901" | 1338 | "checksum pest_generator 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ebee4e9680be4fd162e6f3394ae4192a6b60b1e4d17d845e631f0c68d1a3386" |
1239 | "checksum quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a" | 1339 | "checksum pest_meta 2.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1f6d5f6f0e6082578c86af197d780dc38328e3f768cec06aac9bc46d714e8221" |
1340 | "checksum proc-macro2 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)" = "3d7b7eaaa90b4a90a932a9ea6666c95a389e424eff347f0f793979289429feee" | ||
1240 | "checksum quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "dd636425967c33af890042c483632d33fa7a18f19ad1d7ea72e8998c6ef8dea5" | 1341 | "checksum quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "dd636425967c33af890042c483632d33fa7a18f19ad1d7ea72e8998c6ef8dea5" |
1241 | "checksum rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8356f47b32624fef5b3301c1be97e5944ecdd595409cc5da11d05f211db6cfbd" | 1342 | "checksum rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8356f47b32624fef5b3301c1be97e5944ecdd595409cc5da11d05f211db6cfbd" |
1242 | "checksum rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e464cd887e869cddcae8792a4ee31d23c7edd516700695608f5b98c67ee0131c" | 1343 | "checksum rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e464cd887e869cddcae8792a4ee31d23c7edd516700695608f5b98c67ee0131c" |
1243 | "checksum rand_core 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "edecf0f94da5551fc9b492093e30b041a891657db7940ee221f9d2f66e82eef2" | 1344 | "checksum rand_core 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1961a422c4d189dfb50ffa9320bf1f2a9bd54ecb92792fb9477f99a1045f3372" |
1345 | "checksum rand_core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0905b6b7079ec73b314d4c748701f6931eb79fd97c668caa3f1899b22b32c6db" | ||
1244 | "checksum rayon 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "df7a791f788cb4c516f0e091301a29c2b71ef680db5e644a7d68835c8ae6dbfa" | 1346 | "checksum rayon 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "df7a791f788cb4c516f0e091301a29c2b71ef680db5e644a7d68835c8ae6dbfa" |
1245 | "checksum rayon-core 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b055d1e92aba6877574d8fe604a63c8b5df60f60e5982bf7ccbb1338ea527356" | 1347 | "checksum rayon-core 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b055d1e92aba6877574d8fe604a63c8b5df60f60e5982bf7ccbb1338ea527356" |
1246 | "checksum redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "c214e91d3ecf43e9a4e41e578973adeb14b474f2bee858742d127af75a0112b1" | 1348 | "checksum redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "c214e91d3ecf43e9a4e41e578973adeb14b474f2bee858742d127af75a0112b1" |
@@ -1256,32 +1358,33 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1256 | "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" | 1358 | "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" |
1257 | "checksum ryu 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7153dd96dade874ab973e098cb62fcdbb89a03682e46b144fd09550998d4a4a7" | 1359 | "checksum ryu 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7153dd96dade874ab973e098cb62fcdbb89a03682e46b144fd09550998d4a4a7" |
1258 | "checksum safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dca453248a96cb0749e36ccdfe2b0b4e54a61bfef89fb97ec621eb8e0a93dd9" | 1360 | "checksum safemem 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dca453248a96cb0749e36ccdfe2b0b4e54a61bfef89fb97ec621eb8e0a93dd9" |
1361 | "checksum salsa 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b7a4bcb8e4e81d092709a98130025666d255c8821970dcb9347d05f928e3d505" | ||
1259 | "checksum same-file 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "10f7794e2fda7f594866840e95f5c5962e886e228e68b6505885811a94dd728c" | 1362 | "checksum same-file 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "10f7794e2fda7f594866840e95f5c5962e886e228e68b6505885811a94dd728c" |
1260 | "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" | 1363 | "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" |
1261 | "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" | 1364 | "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" |
1262 | "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" | 1365 | "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" |
1263 | "checksum serde 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)" = "84257ccd054dc351472528c8587b4de2dbf0dc0fe2e634030c1a90bfdacebaa9" | 1366 | "checksum serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)" = "15c141fc7027dd265a47c090bf864cf62b42c4d228bbcf4e51a0c9e2b0d3f7ef" |
1264 | "checksum serde_derive 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)" = "31569d901045afbff7a9479f793177fe9259819aff10ab4f89ef69bbc5f567fe" | 1367 | "checksum serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)" = "225de307c6302bec3898c51ca302fc94a7a1697ef0845fcee6448f33c032249c" |
1265 | "checksum serde_json 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)" = "bb47a3d5c84320222f66d7db21157c4a7407755de41798f9b4c1c40593397b1a" | 1368 | "checksum serde_json 1.0.32 (registry+https://github.com/rust-lang/crates.io-index)" = "43344e7ce05d0d8280c5940cabb4964bea626aa58b1ec0e8c73fa2a8512a38ce" |
1369 | "checksum sha-1 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "51b9d1f3b5de8a167ab06834a7c883bd197f2191e1dda1a22d9ccfeedbf9aded" | ||
1266 | "checksum slug 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373" | 1370 | "checksum slug 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373" |
1267 | "checksum smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "153ffa32fd170e9944f7e0838edf824a754ec4c1fc64746fcc9fe1f8fa602e5d" | 1371 | "checksum smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "153ffa32fd170e9944f7e0838edf824a754ec4c1fc64746fcc9fe1f8fa602e5d" |
1268 | "checksum smol_str 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "248055d41f4c53f8ee7048e8a578a5190d0cca306630718091e4d481735e44b9" | 1372 | "checksum smol_str 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f3ed6f19b800d76574926e458d5f8e2dbea86c2b58c08d33a982448f09ac8d0c" |
1269 | "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" | 1373 | "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" |
1270 | "checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550" | 1374 | "checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550" |
1271 | "checksum superslice 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b50b13d42370e0f5fc62eafdd5c2d20065eaf5458dab215ff3e20e63eea96b30" | 1375 | "checksum superslice 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b50b13d42370e0f5fc62eafdd5c2d20065eaf5458dab215ff3e20e63eea96b30" |
1272 | "checksum syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad" | ||
1273 | "checksum syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)" = "261ae9ecaa397c42b960649561949d69311f08eeaea86a65696e6e46517cf741" | 1376 | "checksum syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)" = "261ae9ecaa397c42b960649561949d69311f08eeaea86a65696e6e46517cf741" |
1274 | "checksum syn 0.15.7 (registry+https://github.com/rust-lang/crates.io-index)" = "455a6ec9b368f8c479b0ae5494d13b22dc00990d2f00d68c9dc6a2dc4f17f210" | 1377 | "checksum syn 0.15.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b036b7b35e846707c0e55c2c9441fa47867c0f87fca416921db3261b1d8c741a" |
1275 | "checksum synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6" | ||
1276 | "checksum synstructure 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "85bb9b7550d063ea184027c9b8c20ac167cd36d3e06b3a40bceb9d746dc1a7b7" | 1378 | "checksum synstructure 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "85bb9b7550d063ea184027c9b8c20ac167cd36d3e06b3a40bceb9d746dc1a7b7" |
1277 | "checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" | 1379 | "checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" |
1278 | "checksum tera 0.11.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4f79f17fe555fffe4838a082a63636883ee13022888dc7bdc99edad8e0a411cd" | 1380 | "checksum tera 0.11.17 (registry+https://github.com/rust-lang/crates.io-index)" = "2829d259c4699fbbe8acb353d231e6da31ff4301c52244413ed29ff6093da412" |
1279 | "checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" | 1381 | "checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" |
1280 | "checksum text_unit 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "93fc86da66d0b9aa8d359b0ec31b4342c6bc52637eadef05b91b098551a9f8e9" | 1382 | "checksum text_unit 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "93fc86da66d0b9aa8d359b0ec31b4342c6bc52637eadef05b91b098551a9f8e9" |
1281 | "checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6" | 1383 | "checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6" |
1282 | "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" | 1384 | "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" |
1283 | "checksum time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "d825be0eb33fda1a7e68012d51e9c7f451dc1a69391e7fdc197060bb8c56667b" | 1385 | "checksum time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "d825be0eb33fda1a7e68012d51e9c7f451dc1a69391e7fdc197060bb8c56667b" |
1284 | "checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169" | 1386 | "checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169" |
1387 | "checksum ucd-trie 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "71a9c5b1fe77426cf144cc30e49e955270f5086e31a6441dfa8b32efc09b9d77" | ||
1285 | "checksum ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd2be2d6639d0f8fe6cdda291ad456e23629558d466e2789d2c3e9892bda285d" | 1388 | "checksum ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd2be2d6639d0f8fe6cdda291ad456e23629558d466e2789d2c3e9892bda285d" |
1286 | "checksum unic-char-property 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce36d3f7ce754afdbccccf8ff0dd0134e50fb44aaae579f96218856e9e5dbd1e" | 1389 | "checksum unic-char-property 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce36d3f7ce754afdbccccf8ff0dd0134e50fb44aaae579f96218856e9e5dbd1e" |
1287 | "checksum unic-char-range 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d9ab85fab42ad1b26cafc03bf891f69cb4d6e15f491030e89a0122197baa8ae8" | 1390 | "checksum unic-char-range 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d9ab85fab42ad1b26cafc03bf891f69cb4d6e15f491030e89a0122197baa8ae8" |
@@ -1293,7 +1396,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1293 | "checksum unicode-normalization 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "6a0180bc61fc5a987082bfa111f4cc95c4caff7f9799f3e46df09163a937aa25" | 1396 | "checksum unicode-normalization 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "6a0180bc61fc5a987082bfa111f4cc95c4caff7f9799f3e46df09163a937aa25" |
1294 | "checksum unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "aa6024fc12ddfd1c6dbc14a80fa2324d4568849869b779f6bd37e5e4c03344d1" | 1397 | "checksum unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "aa6024fc12ddfd1c6dbc14a80fa2324d4568849869b779f6bd37e5e4c03344d1" |
1295 | "checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526" | 1398 | "checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526" |
1296 | "checksum unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc" | ||
1297 | "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" | 1399 | "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" |
1298 | "checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" | 1400 | "checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" |
1299 | "checksum url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2a321979c09843d272956e73700d12c4e7d3d92b2ee112b31548aef0d4efc5a6" | 1401 | "checksum url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2a321979c09843d272956e73700d12c4e7d3d92b2ee112b31548aef0d4efc5a6" |
diff --git a/crates/ra_analysis/Cargo.toml b/crates/ra_analysis/Cargo.toml index 28d95c581..4481e98d6 100644 --- a/crates/ra_analysis/Cargo.toml +++ b/crates/ra_analysis/Cargo.toml | |||
@@ -15,8 +15,7 @@ fst = "0.3.1" | |||
15 | im = "12.0.0" | 15 | im = "12.0.0" |
16 | ra_syntax = { path = "../ra_syntax" } | 16 | ra_syntax = { path = "../ra_syntax" } |
17 | ra_editor = { path = "../ra_editor" } | 17 | ra_editor = { path = "../ra_editor" } |
18 | salsa = { path = "../salsa" } | 18 | salsa = "0.4.1" |
19 | rustc-hash = "1.0" | ||
20 | 19 | ||
21 | [dev-dependencies] | 20 | [dev-dependencies] |
22 | test_utils = { path = "../test_utils" } | 21 | test_utils = { path = "../test_utils" } |