diff options
-rw-r--r-- | Cargo.lock | 262 |
1 files changed, 74 insertions, 188 deletions
diff --git a/Cargo.lock b/Cargo.lock index fabe69285..03b9bf685 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -30,7 +30,7 @@ version = "0.12.1" | |||
30 | source = "registry+https://github.com/rust-lang/crates.io-index" | 30 | source = "registry+https://github.com/rust-lang/crates.io-index" |
31 | checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" | 31 | checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" |
32 | dependencies = [ | 32 | dependencies = [ |
33 | "winapi 0.3.9", | 33 | "winapi", |
34 | ] | 34 | ] |
35 | 35 | ||
36 | [[package]] | 36 | [[package]] |
@@ -75,7 +75,7 @@ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" | |||
75 | dependencies = [ | 75 | dependencies = [ |
76 | "hermit-abi", | 76 | "hermit-abi", |
77 | "libc", | 77 | "libc", |
78 | "winapi 0.3.9", | 78 | "winapi", |
79 | ] | 79 | ] |
80 | 80 | ||
81 | [[package]] | 81 | [[package]] |
@@ -91,7 +91,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
91 | checksum = "9d117600f438b1707d4e4ae15d3595657288f8235a0eb593e80ecc98ab34e1bc" | 91 | checksum = "9d117600f438b1707d4e4ae15d3595657288f8235a0eb593e80ecc98ab34e1bc" |
92 | dependencies = [ | 92 | dependencies = [ |
93 | "addr2line", | 93 | "addr2line", |
94 | "cfg-if 1.0.0", | 94 | "cfg-if", |
95 | "libc", | 95 | "libc", |
96 | "miniz_oxide", | 96 | "miniz_oxide", |
97 | "object", | 97 | "object", |
@@ -172,12 +172,6 @@ dependencies = [ | |||
172 | 172 | ||
173 | [[package]] | 173 | [[package]] |
174 | name = "cfg-if" | 174 | name = "cfg-if" |
175 | version = "0.1.10" | ||
176 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
177 | checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" | ||
178 | |||
179 | [[package]] | ||
180 | name = "cfg-if" | ||
181 | version = "1.0.0" | 175 | version = "1.0.0" |
182 | source = "registry+https://github.com/rust-lang/crates.io-index" | 176 | source = "registry+https://github.com/rust-lang/crates.io-index" |
183 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | 177 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" |
@@ -245,7 +239,7 @@ dependencies = [ | |||
245 | "num-integer", | 239 | "num-integer", |
246 | "num-traits", | 240 | "num-traits", |
247 | "time", | 241 | "time", |
248 | "winapi 0.3.9", | 242 | "winapi", |
249 | ] | 243 | ] |
250 | 244 | ||
251 | [[package]] | 245 | [[package]] |
@@ -299,17 +293,7 @@ version = "1.2.1" | |||
299 | source = "registry+https://github.com/rust-lang/crates.io-index" | 293 | source = "registry+https://github.com/rust-lang/crates.io-index" |
300 | checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a" | 294 | checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a" |
301 | dependencies = [ | 295 | dependencies = [ |
302 | "cfg-if 1.0.0", | 296 | "cfg-if", |
303 | ] | ||
304 | |||
305 | [[package]] | ||
306 | name = "crossbeam-channel" | ||
307 | version = "0.4.4" | ||
308 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
309 | checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87" | ||
310 | dependencies = [ | ||
311 | "crossbeam-utils 0.7.2", | ||
312 | "maybe-uninit", | ||
313 | ] | 297 | ] |
314 | 298 | ||
315 | [[package]] | 299 | [[package]] |
@@ -318,8 +302,8 @@ version = "0.5.0" | |||
318 | source = "registry+https://github.com/rust-lang/crates.io-index" | 302 | source = "registry+https://github.com/rust-lang/crates.io-index" |
319 | checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775" | 303 | checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775" |
320 | dependencies = [ | 304 | dependencies = [ |
321 | "cfg-if 1.0.0", | 305 | "cfg-if", |
322 | "crossbeam-utils 0.8.1", | 306 | "crossbeam-utils", |
323 | ] | 307 | ] |
324 | 308 | ||
325 | [[package]] | 309 | [[package]] |
@@ -328,9 +312,9 @@ version = "0.8.0" | |||
328 | source = "registry+https://github.com/rust-lang/crates.io-index" | 312 | source = "registry+https://github.com/rust-lang/crates.io-index" |
329 | checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9" | 313 | checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9" |
330 | dependencies = [ | 314 | dependencies = [ |
331 | "cfg-if 1.0.0", | 315 | "cfg-if", |
332 | "crossbeam-epoch", | 316 | "crossbeam-epoch", |
333 | "crossbeam-utils 0.8.1", | 317 | "crossbeam-utils", |
334 | ] | 318 | ] |
335 | 319 | ||
336 | [[package]] | 320 | [[package]] |
@@ -339,9 +323,9 @@ version = "0.9.1" | |||
339 | source = "registry+https://github.com/rust-lang/crates.io-index" | 323 | source = "registry+https://github.com/rust-lang/crates.io-index" |
340 | checksum = "a1aaa739f95311c2c7887a76863f500026092fb1dce0161dab577e559ef3569d" | 324 | checksum = "a1aaa739f95311c2c7887a76863f500026092fb1dce0161dab577e559ef3569d" |
341 | dependencies = [ | 325 | dependencies = [ |
342 | "cfg-if 1.0.0", | 326 | "cfg-if", |
343 | "const_fn", | 327 | "const_fn", |
344 | "crossbeam-utils 0.8.1", | 328 | "crossbeam-utils", |
345 | "lazy_static", | 329 | "lazy_static", |
346 | "memoffset", | 330 | "memoffset", |
347 | "scopeguard", | 331 | "scopeguard", |
@@ -349,23 +333,12 @@ dependencies = [ | |||
349 | 333 | ||
350 | [[package]] | 334 | [[package]] |
351 | name = "crossbeam-utils" | 335 | name = "crossbeam-utils" |
352 | version = "0.7.2" | ||
353 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
354 | checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8" | ||
355 | dependencies = [ | ||
356 | "autocfg", | ||
357 | "cfg-if 0.1.10", | ||
358 | "lazy_static", | ||
359 | ] | ||
360 | |||
361 | [[package]] | ||
362 | name = "crossbeam-utils" | ||
363 | version = "0.8.1" | 336 | version = "0.8.1" |
364 | source = "registry+https://github.com/rust-lang/crates.io-index" | 337 | source = "registry+https://github.com/rust-lang/crates.io-index" |
365 | checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d" | 338 | checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d" |
366 | dependencies = [ | 339 | dependencies = [ |
367 | "autocfg", | 340 | "autocfg", |
368 | "cfg-if 1.0.0", | 341 | "cfg-if", |
369 | "lazy_static", | 342 | "lazy_static", |
370 | ] | 343 | ] |
371 | 344 | ||
@@ -375,7 +348,7 @@ version = "4.0.2" | |||
375 | source = "registry+https://github.com/rust-lang/crates.io-index" | 348 | source = "registry+https://github.com/rust-lang/crates.io-index" |
376 | checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c" | 349 | checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c" |
377 | dependencies = [ | 350 | dependencies = [ |
378 | "cfg-if 1.0.0", | 351 | "cfg-if", |
379 | "num_cpus", | 352 | "num_cpus", |
380 | ] | 353 | ] |
381 | 354 | ||
@@ -431,10 +404,10 @@ version = "0.2.14" | |||
431 | source = "registry+https://github.com/rust-lang/crates.io-index" | 404 | source = "registry+https://github.com/rust-lang/crates.io-index" |
432 | checksum = "1d34cfa13a63ae058bfa601fe9e313bbdb3746427c1459185464ce0fcf62e1e8" | 405 | checksum = "1d34cfa13a63ae058bfa601fe9e313bbdb3746427c1459185464ce0fcf62e1e8" |
433 | dependencies = [ | 406 | dependencies = [ |
434 | "cfg-if 1.0.0", | 407 | "cfg-if", |
435 | "libc", | 408 | "libc", |
436 | "redox_syscall 0.2.4", | 409 | "redox_syscall 0.2.4", |
437 | "winapi 0.3.9", | 410 | "winapi", |
438 | ] | 411 | ] |
439 | 412 | ||
440 | [[package]] | 413 | [[package]] |
@@ -449,7 +422,7 @@ version = "1.0.19" | |||
449 | source = "registry+https://github.com/rust-lang/crates.io-index" | 422 | source = "registry+https://github.com/rust-lang/crates.io-index" |
450 | checksum = "7411863d55df97a419aa64cb4d2f167103ea9d767e2c54a1868b7ac3f6b47129" | 423 | checksum = "7411863d55df97a419aa64cb4d2f167103ea9d767e2c54a1868b7ac3f6b47129" |
451 | dependencies = [ | 424 | dependencies = [ |
452 | "cfg-if 1.0.0", | 425 | "cfg-if", |
453 | "crc32fast", | 426 | "crc32fast", |
454 | "libc", | 427 | "libc", |
455 | "miniz_oxide", | 428 | "miniz_oxide", |
@@ -460,7 +433,7 @@ name = "flycheck" | |||
460 | version = "0.0.0" | 433 | version = "0.0.0" |
461 | dependencies = [ | 434 | dependencies = [ |
462 | "cargo_metadata", | 435 | "cargo_metadata", |
463 | "crossbeam-channel 0.5.0", | 436 | "crossbeam-channel", |
464 | "jod-thread", | 437 | "jod-thread", |
465 | "log", | 438 | "log", |
466 | "serde_json", | 439 | "serde_json", |
@@ -510,22 +483,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
510 | checksum = "d79238883cf0307100b90aba4a755d8051a3182305dfe7f649a1e9dc0517006f" | 483 | checksum = "d79238883cf0307100b90aba4a755d8051a3182305dfe7f649a1e9dc0517006f" |
511 | 484 | ||
512 | [[package]] | 485 | [[package]] |
513 | name = "fuchsia-zircon" | ||
514 | version = "0.3.3" | ||
515 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
516 | checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" | ||
517 | dependencies = [ | ||
518 | "bitflags", | ||
519 | "fuchsia-zircon-sys", | ||
520 | ] | ||
521 | |||
522 | [[package]] | ||
523 | name = "fuchsia-zircon-sys" | ||
524 | version = "0.3.3" | ||
525 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
526 | checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" | ||
527 | |||
528 | [[package]] | ||
529 | name = "gimli" | 486 | name = "gimli" |
530 | version = "0.23.0" | 487 | version = "0.23.0" |
531 | source = "registry+https://github.com/rust-lang/crates.io-index" | 488 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -653,7 +610,7 @@ version = "0.5.3" | |||
653 | source = "registry+https://github.com/rust-lang/crates.io-index" | 610 | source = "registry+https://github.com/rust-lang/crates.io-index" |
654 | checksum = "2456aef2e6b6a9784192ae780c0f15bc57df0e918585282325e8c8ac27737654" | 611 | checksum = "2456aef2e6b6a9784192ae780c0f15bc57df0e918585282325e8c8ac27737654" |
655 | dependencies = [ | 612 | dependencies = [ |
656 | "winapi 0.3.9", | 613 | "winapi", |
657 | ] | 614 | ] |
658 | 615 | ||
659 | [[package]] | 616 | [[package]] |
@@ -727,9 +684,9 @@ dependencies = [ | |||
727 | 684 | ||
728 | [[package]] | 685 | [[package]] |
729 | name = "inotify" | 686 | name = "inotify" |
730 | version = "0.8.3" | 687 | version = "0.9.2" |
731 | source = "registry+https://github.com/rust-lang/crates.io-index" | 688 | source = "registry+https://github.com/rust-lang/crates.io-index" |
732 | checksum = "46dd0a94b393c730779ccfd2a872b67b1eb67be3fc33082e733bdb38b5fde4d4" | 689 | checksum = "d19f57db1baad9d09e43a3cd76dcf82ebdafd37d75c9498b87762dba77c93f15" |
733 | dependencies = [ | 690 | dependencies = [ |
734 | "bitflags", | 691 | "bitflags", |
735 | "inotify-sys", | 692 | "inotify-sys", |
@@ -751,16 +708,7 @@ version = "0.1.9" | |||
751 | source = "registry+https://github.com/rust-lang/crates.io-index" | 708 | source = "registry+https://github.com/rust-lang/crates.io-index" |
752 | checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec" | 709 | checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec" |
753 | dependencies = [ | 710 | dependencies = [ |
754 | "cfg-if 1.0.0", | 711 | "cfg-if", |
755 | ] | ||
756 | |||
757 | [[package]] | ||
758 | name = "iovec" | ||
759 | version = "0.1.4" | ||
760 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
761 | checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" | ||
762 | dependencies = [ | ||
763 | "libc", | ||
764 | ] | 712 | ] |
765 | 713 | ||
766 | [[package]] | 714 | [[package]] |
@@ -826,16 +774,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
826 | checksum = "8b23360e99b8717f20aaa4598f5a6541efbe30630039fbc7706cf954a87947ae" | 774 | checksum = "8b23360e99b8717f20aaa4598f5a6541efbe30630039fbc7706cf954a87947ae" |
827 | 775 | ||
828 | [[package]] | 776 | [[package]] |
829 | name = "kernel32-sys" | ||
830 | version = "0.2.2" | ||
831 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
832 | checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" | ||
833 | dependencies = [ | ||
834 | "winapi 0.2.8", | ||
835 | "winapi-build", | ||
836 | ] | ||
837 | |||
838 | [[package]] | ||
839 | name = "la-arena" | 777 | name = "la-arena" |
840 | version = "0.2.0" | 778 | version = "0.2.0" |
841 | 779 | ||
@@ -846,16 +784,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
846 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | 784 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" |
847 | 785 | ||
848 | [[package]] | 786 | [[package]] |
849 | name = "lazycell" | ||
850 | version = "1.3.0" | ||
851 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
852 | checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" | ||
853 | |||
854 | [[package]] | ||
855 | name = "libc" | 787 | name = "libc" |
856 | version = "0.2.82" | 788 | version = "0.2.83" |
857 | source = "registry+https://github.com/rust-lang/crates.io-index" | 789 | source = "registry+https://github.com/rust-lang/crates.io-index" |
858 | checksum = "89203f3fba0a3795506acaad8ebce3c80c0af93f994d5a1d7a0b1eeb23271929" | 790 | checksum = "7eb0c4e9c72ee9d69b767adebc5f4788462a3b45624acd919475c92597bcaf4f" |
859 | 791 | ||
860 | [[package]] | 792 | [[package]] |
861 | name = "libloading" | 793 | name = "libloading" |
@@ -863,8 +795,8 @@ version = "0.6.7" | |||
863 | source = "registry+https://github.com/rust-lang/crates.io-index" | 795 | source = "registry+https://github.com/rust-lang/crates.io-index" |
864 | checksum = "351a32417a12d5f7e82c368a66781e307834dae04c6ce0cd4456d52989229883" | 796 | checksum = "351a32417a12d5f7e82c368a66781e307834dae04c6ce0cd4456d52989229883" |
865 | dependencies = [ | 797 | dependencies = [ |
866 | "cfg-if 1.0.0", | 798 | "cfg-if", |
867 | "winapi 0.3.9", | 799 | "winapi", |
868 | ] | 800 | ] |
869 | 801 | ||
870 | [[package]] | 802 | [[package]] |
@@ -891,7 +823,7 @@ version = "0.4.14" | |||
891 | source = "registry+https://github.com/rust-lang/crates.io-index" | 823 | source = "registry+https://github.com/rust-lang/crates.io-index" |
892 | checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" | 824 | checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" |
893 | dependencies = [ | 825 | dependencies = [ |
894 | "cfg-if 1.0.0", | 826 | "cfg-if", |
895 | ] | 827 | ] |
896 | 828 | ||
897 | [[package]] | 829 | [[package]] |
@@ -900,7 +832,7 @@ version = "0.5.0" | |||
900 | source = "registry+https://github.com/rust-lang/crates.io-index" | 832 | source = "registry+https://github.com/rust-lang/crates.io-index" |
901 | checksum = "69b18dfe0e4a380b872aa79d8e0ee6c3d7a9682466e84b83ad807c88b3545f79" | 833 | checksum = "69b18dfe0e4a380b872aa79d8e0ee6c3d7a9682466e84b83ad807c88b3545f79" |
902 | dependencies = [ | 834 | dependencies = [ |
903 | "crossbeam-channel 0.5.0", | 835 | "crossbeam-channel", |
904 | "log", | 836 | "log", |
905 | "serde", | 837 | "serde", |
906 | "serde_json", | 838 | "serde_json", |
@@ -936,12 +868,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
936 | checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" | 868 | checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" |
937 | 869 | ||
938 | [[package]] | 870 | [[package]] |
939 | name = "maybe-uninit" | ||
940 | version = "2.0.0" | ||
941 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
942 | checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" | ||
943 | |||
944 | [[package]] | ||
945 | name = "mbe" | 871 | name = "mbe" |
946 | version = "0.0.0" | 872 | version = "0.0.0" |
947 | dependencies = [ | 873 | dependencies = [ |
@@ -967,7 +893,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
967 | checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b" | 893 | checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b" |
968 | dependencies = [ | 894 | dependencies = [ |
969 | "libc", | 895 | "libc", |
970 | "winapi 0.3.9", | 896 | "winapi", |
971 | ] | 897 | ] |
972 | 898 | ||
973 | [[package]] | 899 | [[package]] |
@@ -1000,76 +926,53 @@ dependencies = [ | |||
1000 | 926 | ||
1001 | [[package]] | 927 | [[package]] |
1002 | name = "mio" | 928 | name = "mio" |
1003 | version = "0.6.23" | 929 | version = "0.7.7" |
1004 | source = "registry+https://github.com/rust-lang/crates.io-index" | 930 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1005 | checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" | 931 | checksum = "e50ae3f04d169fcc9bde0b547d1c205219b7157e07ded9c5aff03e0637cb3ed7" |
1006 | dependencies = [ | 932 | dependencies = [ |
1007 | "cfg-if 0.1.10", | ||
1008 | "fuchsia-zircon", | ||
1009 | "fuchsia-zircon-sys", | ||
1010 | "iovec", | ||
1011 | "kernel32-sys", | ||
1012 | "libc", | 933 | "libc", |
1013 | "log", | 934 | "log", |
1014 | "miow", | 935 | "miow", |
1015 | "net2", | 936 | "ntapi", |
1016 | "slab", | 937 | "winapi", |
1017 | "winapi 0.2.8", | ||
1018 | ] | ||
1019 | |||
1020 | [[package]] | ||
1021 | name = "mio-extras" | ||
1022 | version = "2.0.6" | ||
1023 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1024 | checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19" | ||
1025 | dependencies = [ | ||
1026 | "lazycell", | ||
1027 | "log", | ||
1028 | "mio", | ||
1029 | "slab", | ||
1030 | ] | 938 | ] |
1031 | 939 | ||
1032 | [[package]] | 940 | [[package]] |
1033 | name = "miow" | 941 | name = "miow" |
1034 | version = "0.2.2" | 942 | version = "0.3.6" |
1035 | source = "registry+https://github.com/rust-lang/crates.io-index" | 943 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1036 | checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" | 944 | checksum = "5a33c1b55807fbed163481b5ba66db4b2fa6cde694a5027be10fb724206c5897" |
1037 | dependencies = [ | 945 | dependencies = [ |
1038 | "kernel32-sys", | 946 | "socket2", |
1039 | "net2", | 947 | "winapi", |
1040 | "winapi 0.2.8", | ||
1041 | "ws2_32-sys", | ||
1042 | ] | ||
1043 | |||
1044 | [[package]] | ||
1045 | name = "net2" | ||
1046 | version = "0.2.37" | ||
1047 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1048 | checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae" | ||
1049 | dependencies = [ | ||
1050 | "cfg-if 0.1.10", | ||
1051 | "libc", | ||
1052 | "winapi 0.3.9", | ||
1053 | ] | 948 | ] |
1054 | 949 | ||
1055 | [[package]] | 950 | [[package]] |
1056 | name = "notify" | 951 | name = "notify" |
1057 | version = "5.0.0-pre.4" | 952 | version = "5.0.0-pre.5" |
1058 | source = "registry+https://github.com/rust-lang/crates.io-index" | 953 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1059 | checksum = "a8b946889dfdad884379cd56367d93b6d0ce8889cc027d26a69a3a31c0a03bb5" | 954 | checksum = "58e54552360d7b89a698eca6de3927205a8e03e8080dc13d779de5c7876e098b" |
1060 | dependencies = [ | 955 | dependencies = [ |
1061 | "anymap", | 956 | "anymap", |
1062 | "bitflags", | 957 | "bitflags", |
1063 | "crossbeam-channel 0.4.4", | 958 | "crossbeam-channel", |
1064 | "filetime", | 959 | "filetime", |
1065 | "fsevent", | 960 | "fsevent", |
1066 | "fsevent-sys", | 961 | "fsevent-sys", |
1067 | "inotify", | 962 | "inotify", |
1068 | "libc", | 963 | "libc", |
1069 | "mio", | 964 | "mio", |
1070 | "mio-extras", | ||
1071 | "walkdir", | 965 | "walkdir", |
1072 | "winapi 0.3.9", | 966 | "winapi", |
967 | ] | ||
968 | |||
969 | [[package]] | ||
970 | name = "ntapi" | ||
971 | version = "0.3.6" | ||
972 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
973 | checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44" | ||
974 | dependencies = [ | ||
975 | "winapi", | ||
1073 | ] | 976 | ] |
1074 | 977 | ||
1075 | [[package]] | 978 | [[package]] |
@@ -1136,12 +1039,12 @@ version = "0.8.2" | |||
1136 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1039 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1137 | checksum = "9ccb628cad4f84851442432c60ad8e1f607e29752d0bf072cbd0baf28aa34272" | 1040 | checksum = "9ccb628cad4f84851442432c60ad8e1f607e29752d0bf072cbd0baf28aa34272" |
1138 | dependencies = [ | 1041 | dependencies = [ |
1139 | "cfg-if 1.0.0", | 1042 | "cfg-if", |
1140 | "instant", | 1043 | "instant", |
1141 | "libc", | 1044 | "libc", |
1142 | "redox_syscall 0.1.57", | 1045 | "redox_syscall 0.1.57", |
1143 | "smallvec", | 1046 | "smallvec", |
1144 | "winapi 0.3.9", | 1047 | "winapi", |
1145 | ] | 1048 | ] |
1146 | 1049 | ||
1147 | [[package]] | 1050 | [[package]] |
@@ -1250,7 +1153,7 @@ name = "proc_macro_api" | |||
1250 | version = "0.0.0" | 1153 | version = "0.0.0" |
1251 | dependencies = [ | 1154 | dependencies = [ |
1252 | "base_db", | 1155 | "base_db", |
1253 | "crossbeam-channel 0.5.0", | 1156 | "crossbeam-channel", |
1254 | "jod-thread", | 1157 | "jod-thread", |
1255 | "log", | 1158 | "log", |
1256 | "serde", | 1159 | "serde", |
@@ -1283,7 +1186,7 @@ version = "0.0.0" | |||
1283 | name = "profile" | 1186 | name = "profile" |
1284 | version = "0.0.0" | 1187 | version = "0.0.0" |
1285 | dependencies = [ | 1188 | dependencies = [ |
1286 | "cfg-if 1.0.0", | 1189 | "cfg-if", |
1287 | "countme", | 1190 | "countme", |
1288 | "jemalloc-ctl", | 1191 | "jemalloc-ctl", |
1289 | "la-arena", | 1192 | "la-arena", |
@@ -1360,9 +1263,9 @@ version = "1.9.0" | |||
1360 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1263 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1361 | checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a" | 1264 | checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a" |
1362 | dependencies = [ | 1265 | dependencies = [ |
1363 | "crossbeam-channel 0.5.0", | 1266 | "crossbeam-channel", |
1364 | "crossbeam-deque", | 1267 | "crossbeam-deque", |
1365 | "crossbeam-utils 0.8.1", | 1268 | "crossbeam-utils", |
1366 | "lazy_static", | 1269 | "lazy_static", |
1367 | "num_cpus", | 1270 | "num_cpus", |
1368 | ] | 1271 | ] |
@@ -1427,7 +1330,7 @@ dependencies = [ | |||
1427 | "always-assert", | 1330 | "always-assert", |
1428 | "anyhow", | 1331 | "anyhow", |
1429 | "cfg", | 1332 | "cfg", |
1430 | "crossbeam-channel 0.5.0", | 1333 | "crossbeam-channel", |
1431 | "dissimilar", | 1334 | "dissimilar", |
1432 | "env_logger", | 1335 | "env_logger", |
1433 | "expect-test", | 1336 | "expect-test", |
@@ -1469,7 +1372,7 @@ dependencies = [ | |||
1469 | "tt", | 1372 | "tt", |
1470 | "vfs", | 1373 | "vfs", |
1471 | "vfs-notify", | 1374 | "vfs-notify", |
1472 | "winapi 0.3.9", | 1375 | "winapi", |
1473 | ] | 1376 | ] |
1474 | 1377 | ||
1475 | [[package]] | 1378 | [[package]] |
@@ -1505,7 +1408,7 @@ version = "0.16.0" | |||
1505 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1408 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1506 | checksum = "d8fadca2ab5de17acf66d744f4888049ca8f1bb9b8a1ab8afd9d032cc959c5dc" | 1409 | checksum = "d8fadca2ab5de17acf66d744f4888049ca8f1bb9b8a1ab8afd9d032cc959c5dc" |
1507 | dependencies = [ | 1410 | dependencies = [ |
1508 | "crossbeam-utils 0.8.1", | 1411 | "crossbeam-utils", |
1509 | "indexmap", | 1412 | "indexmap", |
1510 | "lock_api", | 1413 | "lock_api", |
1511 | "log", | 1414 | "log", |
@@ -1630,12 +1533,6 @@ dependencies = [ | |||
1630 | ] | 1533 | ] |
1631 | 1534 | ||
1632 | [[package]] | 1535 | [[package]] |
1633 | name = "slab" | ||
1634 | version = "0.4.2" | ||
1635 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1636 | checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" | ||
1637 | |||
1638 | [[package]] | ||
1639 | name = "smallvec" | 1536 | name = "smallvec" |
1640 | version = "1.6.1" | 1537 | version = "1.6.1" |
1641 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1538 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1651,6 +1548,17 @@ dependencies = [ | |||
1651 | ] | 1548 | ] |
1652 | 1549 | ||
1653 | [[package]] | 1550 | [[package]] |
1551 | name = "socket2" | ||
1552 | version = "0.3.19" | ||
1553 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1554 | checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e" | ||
1555 | dependencies = [ | ||
1556 | "cfg-if", | ||
1557 | "libc", | ||
1558 | "winapi", | ||
1559 | ] | ||
1560 | |||
1561 | [[package]] | ||
1654 | name = "ssr" | 1562 | name = "ssr" |
1655 | version = "0.0.0" | 1563 | version = "0.0.0" |
1656 | dependencies = [ | 1564 | dependencies = [ |
@@ -1777,7 +1685,7 @@ checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" | |||
1777 | dependencies = [ | 1685 | dependencies = [ |
1778 | "libc", | 1686 | "libc", |
1779 | "wasi", | 1687 | "wasi", |
1780 | "winapi 0.3.9", | 1688 | "winapi", |
1781 | ] | 1689 | ] |
1782 | 1690 | ||
1783 | [[package]] | 1691 | [[package]] |
@@ -1808,7 +1716,7 @@ version = "0.1.22" | |||
1808 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1716 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1809 | checksum = "9f47026cdc4080c07e49b37087de021820269d996f581aac150ef9e5583eefe3" | 1717 | checksum = "9f47026cdc4080c07e49b37087de021820269d996f581aac150ef9e5583eefe3" |
1810 | dependencies = [ | 1718 | dependencies = [ |
1811 | "cfg-if 1.0.0", | 1719 | "cfg-if", |
1812 | "pin-project-lite", | 1720 | "pin-project-lite", |
1813 | "tracing-attributes", | 1721 | "tracing-attributes", |
1814 | "tracing-core", | 1722 | "tracing-core", |
@@ -1983,7 +1891,7 @@ dependencies = [ | |||
1983 | name = "vfs-notify" | 1891 | name = "vfs-notify" |
1984 | version = "0.0.0" | 1892 | version = "0.0.0" |
1985 | dependencies = [ | 1893 | dependencies = [ |
1986 | "crossbeam-channel 0.5.0", | 1894 | "crossbeam-channel", |
1987 | "jod-thread", | 1895 | "jod-thread", |
1988 | "log", | 1896 | "log", |
1989 | "notify", | 1897 | "notify", |
@@ -2000,7 +1908,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
2000 | checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d" | 1908 | checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d" |
2001 | dependencies = [ | 1909 | dependencies = [ |
2002 | "same-file", | 1910 | "same-file", |
2003 | "winapi 0.3.9", | 1911 | "winapi", |
2004 | "winapi-util", | 1912 | "winapi-util", |
2005 | ] | 1913 | ] |
2006 | 1914 | ||
@@ -2012,12 +1920,6 @@ checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" | |||
2012 | 1920 | ||
2013 | [[package]] | 1921 | [[package]] |
2014 | name = "winapi" | 1922 | name = "winapi" |
2015 | version = "0.2.8" | ||
2016 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2017 | checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" | ||
2018 | |||
2019 | [[package]] | ||
2020 | name = "winapi" | ||
2021 | version = "0.3.9" | 1923 | version = "0.3.9" |
2022 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1924 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2023 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" | 1925 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" |
@@ -2027,12 +1929,6 @@ dependencies = [ | |||
2027 | ] | 1929 | ] |
2028 | 1930 | ||
2029 | [[package]] | 1931 | [[package]] |
2030 | name = "winapi-build" | ||
2031 | version = "0.1.1" | ||
2032 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2033 | checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" | ||
2034 | |||
2035 | [[package]] | ||
2036 | name = "winapi-i686-pc-windows-gnu" | 1932 | name = "winapi-i686-pc-windows-gnu" |
2037 | version = "0.4.0" | 1933 | version = "0.4.0" |
2038 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1934 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -2044,7 +1940,7 @@ version = "0.1.5" | |||
2044 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1940 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2045 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" | 1941 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" |
2046 | dependencies = [ | 1942 | dependencies = [ |
2047 | "winapi 0.3.9", | 1943 | "winapi", |
2048 | ] | 1944 | ] |
2049 | 1945 | ||
2050 | [[package]] | 1946 | [[package]] |
@@ -2060,16 +1956,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
2060 | checksum = "06069a848f95fceae3e5e03c0ddc8cb78452b56654ee0c8e68f938cf790fb9e3" | 1956 | checksum = "06069a848f95fceae3e5e03c0ddc8cb78452b56654ee0c8e68f938cf790fb9e3" |
2061 | 1957 | ||
2062 | [[package]] | 1958 | [[package]] |
2063 | name = "ws2_32-sys" | ||
2064 | version = "0.2.1" | ||
2065 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2066 | checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" | ||
2067 | dependencies = [ | ||
2068 | "winapi 0.2.8", | ||
2069 | "winapi-build", | ||
2070 | ] | ||
2071 | |||
2072 | [[package]] | ||
2073 | name = "xshell" | 1959 | name = "xshell" |
2074 | version = "0.1.8" | 1960 | version = "0.1.8" |
2075 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1961 | source = "registry+https://github.com/rust-lang/crates.io-index" |