Mercurial > hg
comparison rust/Cargo.lock @ 48953:ec8d9b5a5e7c
rust-hg-core: upgrade dependencies
This upgrades all dependencies to their latest version, except `clap` and `zstd`
whose latest versions do not support our minimum supported Rust version 1.48.0.
Same as for `rhg`, it contains security fix for `regex` which does not affect
us too much, but doesn't hurt, and the rest of the upgrades are there simply
to keep up.
Differential Revision: https://phab.mercurial-scm.org/D12358
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Wed, 09 Mar 2022 11:22:22 +0100 |
parents | 8848c3453661 |
children | 7b98f4f94911 |
comparison
equal
deleted
inserted
replaced
48952:8848c3453661 | 48953:ec8d9b5a5e7c |
---|---|
23 "memchr", | 23 "memchr", |
24 ] | 24 ] |
25 | 25 |
26 [[package]] | 26 [[package]] |
27 name = "ansi_term" | 27 name = "ansi_term" |
28 version = "0.11.0" | |
29 source = "registry+https://github.com/rust-lang/crates.io-index" | |
30 checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" | |
31 dependencies = [ | |
32 "winapi", | |
33 ] | |
34 | |
35 [[package]] | |
36 name = "ansi_term" | |
37 version = "0.12.1" | 28 version = "0.12.1" |
38 source = "registry+https://github.com/rust-lang/crates.io-index" | 29 source = "registry+https://github.com/rust-lang/crates.io-index" |
39 checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" | 30 checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" |
40 dependencies = [ | 31 dependencies = [ |
41 "winapi", | 32 "winapi", |
58 source = "registry+https://github.com/rust-lang/crates.io-index" | 49 source = "registry+https://github.com/rust-lang/crates.io-index" |
59 checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" | 50 checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" |
60 | 51 |
61 [[package]] | 52 [[package]] |
62 name = "bitflags" | 53 name = "bitflags" |
63 version = "1.2.1" | 54 version = "1.3.2" |
64 source = "registry+https://github.com/rust-lang/crates.io-index" | 55 source = "registry+https://github.com/rust-lang/crates.io-index" |
65 checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" | 56 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" |
66 | 57 |
67 [[package]] | 58 [[package]] |
68 name = "bitmaps" | 59 name = "bitmaps" |
69 version = "2.1.0" | 60 version = "2.1.0" |
70 source = "registry+https://github.com/rust-lang/crates.io-index" | 61 source = "registry+https://github.com/rust-lang/crates.io-index" |
81 dependencies = [ | 72 dependencies = [ |
82 "generic-array", | 73 "generic-array", |
83 ] | 74 ] |
84 | 75 |
85 [[package]] | 76 [[package]] |
77 name = "block-buffer" | |
78 version = "0.10.2" | |
79 source = "registry+https://github.com/rust-lang/crates.io-index" | |
80 checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324" | |
81 dependencies = [ | |
82 "generic-array", | |
83 ] | |
84 | |
85 [[package]] | |
86 name = "byteorder" | 86 name = "byteorder" |
87 version = "1.3.4" | 87 version = "1.4.3" |
88 source = "registry+https://github.com/rust-lang/crates.io-index" | 88 source = "registry+https://github.com/rust-lang/crates.io-index" |
89 checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" | 89 checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" |
90 | 90 |
91 [[package]] | 91 [[package]] |
92 name = "bytes-cast" | 92 name = "bytes-cast" |
93 version = "0.2.0" | 93 version = "0.2.0" |
94 source = "registry+https://github.com/rust-lang/crates.io-index" | 94 source = "registry+https://github.com/rust-lang/crates.io-index" |
146 name = "clap" | 146 name = "clap" |
147 version = "2.34.0" | 147 version = "2.34.0" |
148 source = "registry+https://github.com/rust-lang/crates.io-index" | 148 source = "registry+https://github.com/rust-lang/crates.io-index" |
149 checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" | 149 checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" |
150 dependencies = [ | 150 dependencies = [ |
151 "ansi_term 0.12.1", | 151 "ansi_term", |
152 "atty", | 152 "atty", |
153 "bitflags", | 153 "bitflags", |
154 "strsim 0.8.0", | 154 "strsim", |
155 "textwrap 0.11.0", | 155 "textwrap", |
156 "unicode-width", | 156 "unicode-width", |
157 "vec_map", | 157 "vec_map", |
158 ] | 158 ] |
159 | 159 |
160 [[package]] | 160 [[package]] |
161 name = "clap" | |
162 version = "3.1.6" | |
163 source = "registry+https://github.com/rust-lang/crates.io-index" | |
164 checksum = "d8c93436c21e4698bacadf42917db28b23017027a4deccb35dbe47a7e7840123" | |
165 dependencies = [ | |
166 "atty", | |
167 "bitflags", | |
168 "indexmap", | |
169 "os_str_bytes", | |
170 "strsim 0.10.0", | |
171 "termcolor", | |
172 "textwrap 0.15.0", | |
173 ] | |
174 | |
175 [[package]] | |
176 name = "const_fn" | 161 name = "const_fn" |
177 version = "0.4.4" | 162 version = "0.4.4" |
178 source = "registry+https://github.com/rust-lang/crates.io-index" | 163 source = "registry+https://github.com/rust-lang/crates.io-index" |
179 checksum = "cd51eab21ab4fd6a3bf889e2d0958c0a6e3a61ad04260325e919e652a2a62826" | 164 checksum = "cd51eab21ab4fd6a3bf889e2d0958c0a6e3a61ad04260325e919e652a2a62826" |
180 | 165 |
187 [[package]] | 172 [[package]] |
188 name = "cpufeatures" | 173 name = "cpufeatures" |
189 version = "0.1.4" | 174 version = "0.1.4" |
190 source = "registry+https://github.com/rust-lang/crates.io-index" | 175 source = "registry+https://github.com/rust-lang/crates.io-index" |
191 checksum = "ed00c67cb5d0a7d64a44f6ad2668db7e7530311dd53ea79bcd4fb022c64911c8" | 176 checksum = "ed00c67cb5d0a7d64a44f6ad2668db7e7530311dd53ea79bcd4fb022c64911c8" |
177 dependencies = [ | |
178 "libc", | |
179 ] | |
180 | |
181 [[package]] | |
182 name = "cpufeatures" | |
183 version = "0.2.1" | |
184 source = "registry+https://github.com/rust-lang/crates.io-index" | |
185 checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469" | |
192 dependencies = [ | 186 dependencies = [ |
193 "libc", | 187 "libc", |
194 ] | 188 ] |
195 | 189 |
196 [[package]] | 190 [[package]] |
224 "maybe-uninit", | 218 "maybe-uninit", |
225 ] | 219 ] |
226 | 220 |
227 [[package]] | 221 [[package]] |
228 name = "crossbeam-channel" | 222 name = "crossbeam-channel" |
229 version = "0.5.0" | 223 version = "0.5.2" |
230 source = "registry+https://github.com/rust-lang/crates.io-index" | 224 source = "registry+https://github.com/rust-lang/crates.io-index" |
231 checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775" | 225 checksum = "e54ea8bc3fb1ee042f5aace6e3c6e025d3874866da222930f70ce62aceba0bfa" |
232 dependencies = [ | 226 dependencies = [ |
233 "cfg-if 1.0.0", | 227 "cfg-if 1.0.0", |
234 "crossbeam-utils 0.8.1", | 228 "crossbeam-utils 0.8.1", |
235 ] | 229 ] |
236 | 230 |
280 "cfg-if 1.0.0", | 274 "cfg-if 1.0.0", |
281 "lazy_static", | 275 "lazy_static", |
282 ] | 276 ] |
283 | 277 |
284 [[package]] | 278 [[package]] |
279 name = "crypto-common" | |
280 version = "0.1.2" | |
281 source = "registry+https://github.com/rust-lang/crates.io-index" | |
282 checksum = "a4600d695eb3f6ce1cd44e6e291adceb2cc3ab12f20a33777ecd0bf6eba34e06" | |
283 dependencies = [ | |
284 "generic-array", | |
285 ] | |
286 | |
287 [[package]] | |
285 name = "ctor" | 288 name = "ctor" |
286 version = "0.1.16" | 289 version = "0.1.16" |
287 source = "registry+https://github.com/rust-lang/crates.io-index" | 290 source = "registry+https://github.com/rust-lang/crates.io-index" |
288 checksum = "7fbaabec2c953050352311293be5c6aba8e141ba19d6811862b232d6fd020484" | 291 checksum = "7fbaabec2c953050352311293be5c6aba8e141ba19d6811862b232d6fd020484" |
289 dependencies = [ | 292 dependencies = [ |
303 "rustc_version", | 306 "rustc_version", |
304 "syn", | 307 "syn", |
305 ] | 308 ] |
306 | 309 |
307 [[package]] | 310 [[package]] |
308 name = "difference" | 311 name = "diff" |
309 version = "2.0.0" | 312 version = "0.1.12" |
310 source = "registry+https://github.com/rust-lang/crates.io-index" | 313 source = "registry+https://github.com/rust-lang/crates.io-index" |
311 checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198" | 314 checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499" |
312 | 315 |
313 [[package]] | 316 [[package]] |
314 name = "digest" | 317 name = "digest" |
315 version = "0.9.0" | 318 version = "0.9.0" |
316 source = "registry+https://github.com/rust-lang/crates.io-index" | 319 source = "registry+https://github.com/rust-lang/crates.io-index" |
317 checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" | 320 checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" |
318 dependencies = [ | 321 dependencies = [ |
319 "generic-array", | 322 "generic-array", |
323 ] | |
324 | |
325 [[package]] | |
326 name = "digest" | |
327 version = "0.10.2" | |
328 source = "registry+https://github.com/rust-lang/crates.io-index" | |
329 checksum = "8cb780dce4f9a8f5c087362b3a4595936b2019e7c8b30f2c3e9a7e94e6ae9837" | |
330 dependencies = [ | |
331 "block-buffer 0.10.2", | |
332 "crypto-common", | |
320 ] | 333 ] |
321 | 334 |
322 [[package]] | 335 [[package]] |
323 name = "either" | 336 name = "either" |
324 version = "1.6.1" | 337 version = "1.6.1" |
350 "regex", | 363 "regex", |
351 "termcolor", | 364 "termcolor", |
352 ] | 365 ] |
353 | 366 |
354 [[package]] | 367 [[package]] |
368 name = "fastrand" | |
369 version = "1.7.0" | |
370 source = "registry+https://github.com/rust-lang/crates.io-index" | |
371 checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf" | |
372 dependencies = [ | |
373 "instant", | |
374 ] | |
375 | |
376 [[package]] | |
355 name = "flate2" | 377 name = "flate2" |
356 version = "1.0.19" | 378 version = "1.0.22" |
357 source = "registry+https://github.com/rust-lang/crates.io-index" | 379 source = "registry+https://github.com/rust-lang/crates.io-index" |
358 checksum = "7411863d55df97a419aa64cb4d2f167103ea9d767e2c54a1868b7ac3f6b47129" | 380 checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f" |
359 dependencies = [ | 381 dependencies = [ |
360 "cfg-if 1.0.0", | 382 "cfg-if 1.0.0", |
361 "crc32fast", | 383 "crc32fast", |
362 "libc", | 384 "libc", |
363 "libz-sys", | 385 "libz-sys", |
431 "ahash", | 453 "ahash", |
432 "rayon", | 454 "rayon", |
433 ] | 455 ] |
434 | 456 |
435 [[package]] | 457 [[package]] |
436 name = "hashbrown" | |
437 version = "0.11.2" | |
438 source = "registry+https://github.com/rust-lang/crates.io-index" | |
439 checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" | |
440 | |
441 [[package]] | |
442 name = "hermit-abi" | 458 name = "hermit-abi" |
443 version = "0.1.17" | 459 version = "0.1.17" |
444 source = "registry+https://github.com/rust-lang/crates.io-index" | 460 source = "registry+https://github.com/rust-lang/crates.io-index" |
445 checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8" | 461 checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8" |
446 dependencies = [ | 462 dependencies = [ |
458 version = "0.1.0" | 474 version = "0.1.0" |
459 dependencies = [ | 475 dependencies = [ |
460 "bitflags", | 476 "bitflags", |
461 "byteorder", | 477 "byteorder", |
462 "bytes-cast", | 478 "bytes-cast", |
463 "clap 3.1.6", | 479 "clap", |
464 "crossbeam-channel 0.4.4", | 480 "crossbeam-channel 0.5.2", |
465 "derive_more", | 481 "derive_more", |
466 "flate2", | 482 "flate2", |
467 "format-bytes", | 483 "format-bytes", |
468 "hashbrown 0.9.1", | 484 "hashbrown", |
469 "home", | 485 "home", |
470 "im-rc", | 486 "im-rc", |
471 "itertools", | 487 "itertools 0.10.3", |
472 "lazy_static", | 488 "lazy_static", |
473 "libc", | 489 "libc", |
474 "log", | 490 "log", |
475 "memmap2", | 491 "memmap2", |
476 "micro-timer 0.3.1", | 492 "micro-timer", |
477 "pretty_assertions", | 493 "pretty_assertions", |
478 "rand 0.8.4", | 494 "rand 0.8.5", |
479 "rand_distr", | 495 "rand_distr", |
480 "rand_pcg", | 496 "rand_pcg", |
481 "rayon", | 497 "rayon", |
482 "regex", | 498 "regex", |
483 "same-file", | 499 "same-file", |
484 "sha-1", | 500 "sha-1 0.10.0", |
485 "stable_deref_trait", | 501 "stable_deref_trait", |
486 "tempfile", | 502 "tempfile", |
487 "twox-hash", | 503 "twox-hash", |
488 "zstd", | 504 "zstd", |
489 ] | 505 ] |
539 "typenum", | 555 "typenum", |
540 "version_check", | 556 "version_check", |
541 ] | 557 ] |
542 | 558 |
543 [[package]] | 559 [[package]] |
544 name = "indexmap" | 560 name = "instant" |
545 version = "1.8.0" | 561 version = "0.1.12" |
546 source = "registry+https://github.com/rust-lang/crates.io-index" | 562 source = "registry+https://github.com/rust-lang/crates.io-index" |
547 checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223" | 563 checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" |
548 dependencies = [ | 564 dependencies = [ |
549 "autocfg", | 565 "cfg-if 1.0.0", |
550 "hashbrown 0.11.2", | |
551 ] | 566 ] |
552 | 567 |
553 [[package]] | 568 [[package]] |
554 name = "itertools" | 569 name = "itertools" |
555 version = "0.9.0" | 570 version = "0.9.0" |
558 dependencies = [ | 573 dependencies = [ |
559 "either", | 574 "either", |
560 ] | 575 ] |
561 | 576 |
562 [[package]] | 577 [[package]] |
578 name = "itertools" | |
579 version = "0.10.3" | |
580 source = "registry+https://github.com/rust-lang/crates.io-index" | |
581 checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3" | |
582 dependencies = [ | |
583 "either", | |
584 ] | |
585 | |
586 [[package]] | |
563 name = "jobserver" | 587 name = "jobserver" |
564 version = "0.1.21" | 588 version = "0.1.21" |
565 source = "registry+https://github.com/rust-lang/crates.io-index" | 589 source = "registry+https://github.com/rust-lang/crates.io-index" |
566 checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2" | 590 checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2" |
567 dependencies = [ | 591 dependencies = [ |
574 source = "registry+https://github.com/rust-lang/crates.io-index" | 598 source = "registry+https://github.com/rust-lang/crates.io-index" |
575 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | 599 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" |
576 | 600 |
577 [[package]] | 601 [[package]] |
578 name = "libc" | 602 name = "libc" |
579 version = "0.2.81" | 603 version = "0.2.119" |
580 source = "registry+https://github.com/rust-lang/crates.io-index" | 604 source = "registry+https://github.com/rust-lang/crates.io-index" |
581 checksum = "1482821306169ec4d07f6aca392a4681f66c75c9918aa49641a2595db64053cb" | 605 checksum = "1bf2e165bb3457c8e098ea76f3e3bc9db55f87aa90d52d0e6be741470916aaa4" |
582 | 606 |
583 [[package]] | 607 [[package]] |
584 name = "libm" | 608 name = "libm" |
585 version = "0.2.1" | 609 version = "0.2.1" |
586 source = "registry+https://github.com/rust-lang/crates.io-index" | 610 source = "registry+https://github.com/rust-lang/crates.io-index" |
618 source = "registry+https://github.com/rust-lang/crates.io-index" | 642 source = "registry+https://github.com/rust-lang/crates.io-index" |
619 checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" | 643 checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" |
620 | 644 |
621 [[package]] | 645 [[package]] |
622 name = "memmap2" | 646 name = "memmap2" |
623 version = "0.4.0" | 647 version = "0.5.3" |
624 source = "registry+https://github.com/rust-lang/crates.io-index" | 648 source = "registry+https://github.com/rust-lang/crates.io-index" |
625 checksum = "de5d3112c080d58ce560081baeaab7e1e864ca21795ddbf533d5b1842bb1ecf8" | 649 checksum = "057a3db23999c867821a7a59feb06a578fcb03685e983dff90daf9e7d24ac08f" |
626 dependencies = [ | 650 dependencies = [ |
627 "libc", | 651 "libc", |
628 "stable_deref_trait", | 652 "stable_deref_trait", |
629 ] | 653 ] |
630 | 654 |
637 "autocfg", | 661 "autocfg", |
638 ] | 662 ] |
639 | 663 |
640 [[package]] | 664 [[package]] |
641 name = "micro-timer" | 665 name = "micro-timer" |
642 version = "0.3.1" | 666 version = "0.4.0" |
643 source = "registry+https://github.com/rust-lang/crates.io-index" | 667 source = "registry+https://github.com/rust-lang/crates.io-index" |
644 checksum = "2620153e1d903d26b72b89f0e9c48d8c4756cba941c185461dddc234980c298c" | 668 checksum = "5de32cb59a062672560d6f0842c4aa7714727457b9fe2daf8987d995a176a405" |
645 dependencies = [ | 669 dependencies = [ |
646 "micro-timer-macros 0.3.1", | 670 "micro-timer-macros", |
647 "scopeguard", | 671 "scopeguard", |
648 ] | 672 ] |
649 | 673 |
650 [[package]] | 674 [[package]] |
651 name = "micro-timer" | 675 name = "micro-timer-macros" |
652 version = "0.4.0" | 676 version = "0.4.0" |
653 source = "registry+https://github.com/rust-lang/crates.io-index" | 677 source = "registry+https://github.com/rust-lang/crates.io-index" |
654 checksum = "5de32cb59a062672560d6f0842c4aa7714727457b9fe2daf8987d995a176a405" | 678 checksum = "cee948b94700125b52dfb68dd17c19f6326696c1df57f92c05ee857463c93ba1" |
655 dependencies = [ | |
656 "micro-timer-macros 0.4.0", | |
657 "scopeguard", | |
658 ] | |
659 | |
660 [[package]] | |
661 name = "micro-timer-macros" | |
662 version = "0.3.1" | |
663 source = "registry+https://github.com/rust-lang/crates.io-index" | |
664 checksum = "e28a3473e6abd6e9aab36aaeef32ad22ae0bd34e79f376643594c2b152ec1c5d" | |
665 dependencies = [ | 679 dependencies = [ |
666 "proc-macro2", | 680 "proc-macro2", |
667 "quote", | 681 "quote", |
668 "scopeguard", | 682 "scopeguard", |
669 "syn", | 683 "syn", |
670 ] | 684 ] |
671 | 685 |
672 [[package]] | 686 [[package]] |
673 name = "micro-timer-macros" | |
674 version = "0.4.0" | |
675 source = "registry+https://github.com/rust-lang/crates.io-index" | |
676 checksum = "cee948b94700125b52dfb68dd17c19f6326696c1df57f92c05ee857463c93ba1" | |
677 dependencies = [ | |
678 "proc-macro2", | |
679 "quote", | |
680 "scopeguard", | |
681 "syn", | |
682 ] | |
683 | |
684 [[package]] | |
685 name = "miniz_oxide" | 687 name = "miniz_oxide" |
686 version = "0.4.3" | 688 version = "0.4.3" |
687 source = "registry+https://github.com/rust-lang/crates.io-index" | 689 source = "registry+https://github.com/rust-lang/crates.io-index" |
688 checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d" | 690 checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d" |
689 dependencies = [ | 691 dependencies = [ |
726 version = "0.3.0" | 728 version = "0.3.0" |
727 source = "registry+https://github.com/rust-lang/crates.io-index" | 729 source = "registry+https://github.com/rust-lang/crates.io-index" |
728 checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" | 730 checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" |
729 | 731 |
730 [[package]] | 732 [[package]] |
731 name = "os_str_bytes" | |
732 version = "6.0.0" | |
733 source = "registry+https://github.com/rust-lang/crates.io-index" | |
734 checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" | |
735 dependencies = [ | |
736 "memchr", | |
737 ] | |
738 | |
739 [[package]] | |
740 name = "output_vt100" | 733 name = "output_vt100" |
741 version = "0.1.2" | 734 version = "0.1.2" |
742 source = "registry+https://github.com/rust-lang/crates.io-index" | 735 source = "registry+https://github.com/rust-lang/crates.io-index" |
743 checksum = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9" | 736 checksum = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9" |
744 dependencies = [ | 737 dependencies = [ |
763 source = "registry+https://github.com/rust-lang/crates.io-index" | 756 source = "registry+https://github.com/rust-lang/crates.io-index" |
764 checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" | 757 checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" |
765 | 758 |
766 [[package]] | 759 [[package]] |
767 name = "pretty_assertions" | 760 name = "pretty_assertions" |
768 version = "0.6.1" | 761 version = "1.1.0" |
769 source = "registry+https://github.com/rust-lang/crates.io-index" | 762 source = "registry+https://github.com/rust-lang/crates.io-index" |
770 checksum = "3f81e1644e1b54f5a68959a29aa86cde704219254669da328ecfdf6a1f09d427" | 763 checksum = "76d5b548b725018ab5496482b45cb8bef21e9fed1858a6d674e3a8a0f0bb5d50" |
771 dependencies = [ | 764 dependencies = [ |
772 "ansi_term 0.11.0", | 765 "ansi_term", |
773 "ctor", | 766 "ctor", |
774 "difference", | 767 "diff", |
775 "output_vt100", | 768 "output_vt100", |
776 ] | 769 ] |
777 | 770 |
778 [[package]] | 771 [[package]] |
779 name = "proc-macro2" | 772 name = "proc-macro2" |
817 dependencies = [ | 810 dependencies = [ |
818 "getrandom 0.1.15", | 811 "getrandom 0.1.15", |
819 "libc", | 812 "libc", |
820 "rand_chacha 0.2.2", | 813 "rand_chacha 0.2.2", |
821 "rand_core 0.5.1", | 814 "rand_core 0.5.1", |
822 "rand_hc 0.2.0", | 815 "rand_hc", |
823 ] | 816 ] |
824 | 817 |
825 [[package]] | 818 [[package]] |
826 name = "rand" | 819 name = "rand" |
827 version = "0.8.4" | 820 version = "0.8.5" |
828 source = "registry+https://github.com/rust-lang/crates.io-index" | 821 source = "registry+https://github.com/rust-lang/crates.io-index" |
829 checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" | 822 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" |
830 dependencies = [ | 823 dependencies = [ |
831 "libc", | 824 "libc", |
832 "rand_chacha 0.3.1", | 825 "rand_chacha 0.3.1", |
833 "rand_core 0.6.3", | 826 "rand_core 0.6.3", |
834 "rand_hc 0.3.1", | |
835 ] | 827 ] |
836 | 828 |
837 [[package]] | 829 [[package]] |
838 name = "rand_chacha" | 830 name = "rand_chacha" |
839 version = "0.2.2" | 831 version = "0.2.2" |
872 "getrandom 0.2.4", | 864 "getrandom 0.2.4", |
873 ] | 865 ] |
874 | 866 |
875 [[package]] | 867 [[package]] |
876 name = "rand_distr" | 868 name = "rand_distr" |
877 version = "0.4.2" | 869 version = "0.4.3" |
878 source = "registry+https://github.com/rust-lang/crates.io-index" | 870 source = "registry+https://github.com/rust-lang/crates.io-index" |
879 checksum = "964d548f8e7d12e102ef183a0de7e98180c9f8729f555897a857b96e48122d2f" | 871 checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" |
880 dependencies = [ | 872 dependencies = [ |
881 "num-traits", | 873 "num-traits", |
882 "rand 0.8.4", | 874 "rand 0.8.5", |
883 ] | 875 ] |
884 | 876 |
885 [[package]] | 877 [[package]] |
886 name = "rand_hc" | 878 name = "rand_hc" |
887 version = "0.2.0" | 879 version = "0.2.0" |
890 dependencies = [ | 882 dependencies = [ |
891 "rand_core 0.5.1", | 883 "rand_core 0.5.1", |
892 ] | 884 ] |
893 | 885 |
894 [[package]] | 886 [[package]] |
895 name = "rand_hc" | |
896 version = "0.3.1" | |
897 source = "registry+https://github.com/rust-lang/crates.io-index" | |
898 checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7" | |
899 dependencies = [ | |
900 "rand_core 0.6.3", | |
901 ] | |
902 | |
903 [[package]] | |
904 name = "rand_pcg" | 887 name = "rand_pcg" |
905 version = "0.3.1" | 888 version = "0.3.1" |
906 source = "registry+https://github.com/rust-lang/crates.io-index" | 889 source = "registry+https://github.com/rust-lang/crates.io-index" |
907 checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e" | 890 checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e" |
908 dependencies = [ | 891 dependencies = [ |
918 "rand_core 0.5.1", | 901 "rand_core 0.5.1", |
919 ] | 902 ] |
920 | 903 |
921 [[package]] | 904 [[package]] |
922 name = "rayon" | 905 name = "rayon" |
923 version = "1.5.0" | 906 version = "1.5.1" |
924 source = "registry+https://github.com/rust-lang/crates.io-index" | 907 source = "registry+https://github.com/rust-lang/crates.io-index" |
925 checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674" | 908 checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90" |
926 dependencies = [ | 909 dependencies = [ |
927 "autocfg", | 910 "autocfg", |
928 "crossbeam-deque", | 911 "crossbeam-deque", |
929 "either", | 912 "either", |
930 "rayon-core", | 913 "rayon-core", |
931 ] | 914 ] |
932 | 915 |
933 [[package]] | 916 [[package]] |
934 name = "rayon-core" | 917 name = "rayon-core" |
935 version = "1.9.0" | 918 version = "1.9.1" |
936 source = "registry+https://github.com/rust-lang/crates.io-index" | 919 source = "registry+https://github.com/rust-lang/crates.io-index" |
937 checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a" | 920 checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e" |
938 dependencies = [ | 921 dependencies = [ |
939 "crossbeam-channel 0.5.0", | 922 "crossbeam-channel 0.5.2", |
940 "crossbeam-deque", | 923 "crossbeam-deque", |
941 "crossbeam-utils 0.8.1", | 924 "crossbeam-utils 0.8.1", |
942 "lazy_static", | 925 "lazy_static", |
943 "num_cpus", | 926 "num_cpus", |
944 ] | 927 ] |
945 | 928 |
946 [[package]] | 929 [[package]] |
947 name = "redox_syscall" | 930 name = "redox_syscall" |
948 version = "0.1.57" | 931 version = "0.2.11" |
949 source = "registry+https://github.com/rust-lang/crates.io-index" | 932 source = "registry+https://github.com/rust-lang/crates.io-index" |
950 checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" | 933 checksum = "8380fe0152551244f0747b1bf41737e0f8a74f97a14ccefd1148187271634f3c" |
934 dependencies = [ | |
935 "bitflags", | |
936 ] | |
951 | 937 |
952 [[package]] | 938 [[package]] |
953 name = "regex" | 939 name = "regex" |
954 version = "1.5.5" | 940 version = "1.5.5" |
955 source = "registry+https://github.com/rust-lang/crates.io-index" | 941 source = "registry+https://github.com/rust-lang/crates.io-index" |
979 name = "rhg" | 965 name = "rhg" |
980 version = "0.1.0" | 966 version = "0.1.0" |
981 dependencies = [ | 967 dependencies = [ |
982 "atty", | 968 "atty", |
983 "chrono", | 969 "chrono", |
984 "clap 2.34.0", | 970 "clap", |
985 "derive_more", | 971 "derive_more", |
986 "env_logger 0.9.0", | 972 "env_logger 0.9.0", |
987 "format-bytes", | 973 "format-bytes", |
988 "hg-core", | 974 "hg-core", |
989 "home", | 975 "home", |
990 "lazy_static", | 976 "lazy_static", |
991 "log", | 977 "log", |
992 "micro-timer 0.4.0", | 978 "micro-timer", |
993 "regex", | 979 "regex", |
994 "users", | 980 "users", |
995 ] | 981 ] |
996 | 982 |
997 [[package]] | 983 [[package]] |
1028 name = "sha-1" | 1014 name = "sha-1" |
1029 version = "0.9.6" | 1015 version = "0.9.6" |
1030 source = "registry+https://github.com/rust-lang/crates.io-index" | 1016 source = "registry+https://github.com/rust-lang/crates.io-index" |
1031 checksum = "8c4cfa741c5832d0ef7fab46cabed29c2aae926db0b11bb2069edd8db5e64e16" | 1017 checksum = "8c4cfa741c5832d0ef7fab46cabed29c2aae926db0b11bb2069edd8db5e64e16" |
1032 dependencies = [ | 1018 dependencies = [ |
1033 "block-buffer", | 1019 "block-buffer 0.9.0", |
1034 "cfg-if 1.0.0", | 1020 "cfg-if 1.0.0", |
1035 "cpufeatures", | 1021 "cpufeatures 0.1.4", |
1036 "digest", | 1022 "digest 0.9.0", |
1037 "opaque-debug", | 1023 "opaque-debug", |
1024 ] | |
1025 | |
1026 [[package]] | |
1027 name = "sha-1" | |
1028 version = "0.10.0" | |
1029 source = "registry+https://github.com/rust-lang/crates.io-index" | |
1030 checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f" | |
1031 dependencies = [ | |
1032 "cfg-if 1.0.0", | |
1033 "cpufeatures 0.2.1", | |
1034 "digest 0.10.2", | |
1038 ] | 1035 ] |
1039 | 1036 |
1040 [[package]] | 1037 [[package]] |
1041 name = "sized-chunks" | 1038 name = "sized-chunks" |
1042 version = "0.6.2" | 1039 version = "0.6.2" |
1062 [[package]] | 1059 [[package]] |
1063 name = "strsim" | 1060 name = "strsim" |
1064 version = "0.8.0" | 1061 version = "0.8.0" |
1065 source = "registry+https://github.com/rust-lang/crates.io-index" | 1062 source = "registry+https://github.com/rust-lang/crates.io-index" |
1066 checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" | 1063 checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" |
1067 | |
1068 [[package]] | |
1069 name = "strsim" | |
1070 version = "0.10.0" | |
1071 source = "registry+https://github.com/rust-lang/crates.io-index" | |
1072 checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" | |
1073 | 1064 |
1074 [[package]] | 1065 [[package]] |
1075 name = "syn" | 1066 name = "syn" |
1076 version = "1.0.54" | 1067 version = "1.0.54" |
1077 source = "registry+https://github.com/rust-lang/crates.io-index" | 1068 source = "registry+https://github.com/rust-lang/crates.io-index" |
1082 "unicode-xid", | 1073 "unicode-xid", |
1083 ] | 1074 ] |
1084 | 1075 |
1085 [[package]] | 1076 [[package]] |
1086 name = "tempfile" | 1077 name = "tempfile" |
1087 version = "3.1.0" | 1078 version = "3.3.0" |
1088 source = "registry+https://github.com/rust-lang/crates.io-index" | 1079 source = "registry+https://github.com/rust-lang/crates.io-index" |
1089 checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" | 1080 checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" |
1090 dependencies = [ | 1081 dependencies = [ |
1091 "cfg-if 0.1.10", | 1082 "cfg-if 1.0.0", |
1092 "libc", | 1083 "fastrand", |
1093 "rand 0.7.3", | 1084 "libc", |
1094 "redox_syscall", | 1085 "redox_syscall", |
1095 "remove_dir_all", | 1086 "remove_dir_all", |
1096 "winapi", | 1087 "winapi", |
1097 ] | 1088 ] |
1098 | 1089 |
1113 dependencies = [ | 1104 dependencies = [ |
1114 "unicode-width", | 1105 "unicode-width", |
1115 ] | 1106 ] |
1116 | 1107 |
1117 [[package]] | 1108 [[package]] |
1118 name = "textwrap" | |
1119 version = "0.15.0" | |
1120 source = "registry+https://github.com/rust-lang/crates.io-index" | |
1121 checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" | |
1122 | |
1123 [[package]] | |
1124 name = "time" | 1109 name = "time" |
1125 version = "0.1.44" | 1110 version = "0.1.44" |
1126 source = "registry+https://github.com/rust-lang/crates.io-index" | 1111 source = "registry+https://github.com/rust-lang/crates.io-index" |
1127 checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" | 1112 checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" |
1128 dependencies = [ | 1113 dependencies = [ |
1131 "winapi", | 1116 "winapi", |
1132 ] | 1117 ] |
1133 | 1118 |
1134 [[package]] | 1119 [[package]] |
1135 name = "twox-hash" | 1120 name = "twox-hash" |
1136 version = "1.6.0" | 1121 version = "1.6.2" |
1137 source = "registry+https://github.com/rust-lang/crates.io-index" | 1122 source = "registry+https://github.com/rust-lang/crates.io-index" |
1138 checksum = "04f8ab788026715fa63b31960869617cba39117e520eb415b0139543e325ab59" | 1123 checksum = "4ee73e6e4924fe940354b8d4d98cad5231175d615cd855b758adc658c0aac6a0" |
1139 dependencies = [ | 1124 dependencies = [ |
1140 "cfg-if 0.1.10", | 1125 "cfg-if 1.0.0", |
1141 "rand 0.7.3", | 1126 "rand 0.8.5", |
1142 "static_assertions", | 1127 "static_assertions", |
1143 ] | 1128 ] |
1144 | 1129 |
1145 [[package]] | 1130 [[package]] |
1146 name = "typenum" | 1131 name = "typenum" |
1182 source = "registry+https://github.com/rust-lang/crates.io-index" | 1167 source = "registry+https://github.com/rust-lang/crates.io-index" |
1183 checksum = "4cb68c231e2575f7503a7c19213875f9d4ec2e84e963a56ce3de4b6bee351ef7" | 1168 checksum = "4cb68c231e2575f7503a7c19213875f9d4ec2e84e963a56ce3de4b6bee351ef7" |
1184 dependencies = [ | 1169 dependencies = [ |
1185 "hex", | 1170 "hex", |
1186 "rand 0.7.3", | 1171 "rand 0.7.3", |
1187 "sha-1", | 1172 "sha-1 0.9.6", |
1188 ] | 1173 ] |
1189 | 1174 |
1190 [[package]] | 1175 [[package]] |
1191 name = "vec_map" | 1176 name = "vec_map" |
1192 version = "0.8.2" | 1177 version = "0.8.2" |
1242 source = "registry+https://github.com/rust-lang/crates.io-index" | 1227 source = "registry+https://github.com/rust-lang/crates.io-index" |
1243 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | 1228 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" |
1244 | 1229 |
1245 [[package]] | 1230 [[package]] |
1246 name = "zstd" | 1231 name = "zstd" |
1247 version = "0.5.3+zstd.1.4.5" | 1232 version = "0.5.4+zstd.1.4.7" |
1248 source = "registry+https://github.com/rust-lang/crates.io-index" | 1233 source = "registry+https://github.com/rust-lang/crates.io-index" |
1249 checksum = "01b32eaf771efa709e8308605bbf9319bf485dc1503179ec0469b611937c0cd8" | 1234 checksum = "69996ebdb1ba8b1517f61387a883857818a66c8a295f487b1ffd8fd9d2c82910" |
1250 dependencies = [ | 1235 dependencies = [ |
1251 "zstd-safe", | 1236 "zstd-safe", |
1252 ] | 1237 ] |
1253 | 1238 |
1254 [[package]] | 1239 [[package]] |
1255 name = "zstd-safe" | 1240 name = "zstd-safe" |
1256 version = "2.0.5+zstd.1.4.5" | 1241 version = "2.0.6+zstd.1.4.7" |
1257 source = "registry+https://github.com/rust-lang/crates.io-index" | 1242 source = "registry+https://github.com/rust-lang/crates.io-index" |
1258 checksum = "1cfb642e0d27f64729a639c52db457e0ae906e7bc6f5fe8f5c453230400f1055" | 1243 checksum = "98aa931fb69ecee256d44589d19754e61851ae4769bf963b385119b1cc37a49e" |
1259 dependencies = [ | 1244 dependencies = [ |
1260 "libc", | 1245 "libc", |
1261 "zstd-sys", | 1246 "zstd-sys", |
1262 ] | 1247 ] |
1263 | 1248 |
1264 [[package]] | 1249 [[package]] |
1265 name = "zstd-sys" | 1250 name = "zstd-sys" |
1266 version = "1.4.17+zstd.1.4.5" | 1251 version = "1.4.18+zstd.1.4.7" |
1267 source = "registry+https://github.com/rust-lang/crates.io-index" | 1252 source = "registry+https://github.com/rust-lang/crates.io-index" |
1268 checksum = "b89249644df056b522696b1bb9e7c18c87e8ffa3e2f0dc3b0155875d6498f01b" | 1253 checksum = "a1e6e8778706838f43f771d80d37787cb2fe06dafe89dd3aebaf6721b9eaec81" |
1269 dependencies = [ | 1254 dependencies = [ |
1270 "cc", | 1255 "cc", |
1271 "glob", | 1256 "glob", |
1272 "itertools", | 1257 "itertools 0.9.0", |
1273 "libc", | 1258 "libc", |
1274 ] | 1259 ] |