comparison rust/Cargo.lock @ 48952:8848c3453661

rhg: upgrade dependencies This upgrades all dependencies to their latest version, except `clap`, which is upgraded to the last 2.x series version, since 3.x does not support our minimum supported Rust version of 1.48.0. This contains a 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/D12357
author Raphaël Gomès <rgomes@octobus.net>
date Wed, 09 Mar 2022 11:17:09 +0100
parents 11c0411bf4e2
children ec8d9b5a5e7c
comparison
equal deleted inserted replaced
48951:cf99c4af1079 48952:8848c3453661
14 source = "registry+https://github.com/rust-lang/crates.io-index" 14 source = "registry+https://github.com/rust-lang/crates.io-index"
15 checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e" 15 checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e"
16 16
17 [[package]] 17 [[package]]
18 name = "aho-corasick" 18 name = "aho-corasick"
19 version = "0.7.15" 19 version = "0.7.18"
20 source = "registry+https://github.com/rust-lang/crates.io-index" 20 source = "registry+https://github.com/rust-lang/crates.io-index"
21 checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5" 21 checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
22 dependencies = [ 22 dependencies = [
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" 28 version = "0.11.0"
29 source = "registry+https://github.com/rust-lang/crates.io-index" 29 source = "registry+https://github.com/rust-lang/crates.io-index"
30 checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" 30 checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
31 dependencies = [
32 "winapi",
33 ]
34
35 [[package]]
36 name = "ansi_term"
37 version = "0.12.1"
38 source = "registry+https://github.com/rust-lang/crates.io-index"
39 checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
31 dependencies = [ 40 dependencies = [
32 "winapi", 41 "winapi",
33 ] 42 ]
34 43
35 [[package]] 44 [[package]]
133 "winapi", 142 "winapi",
134 ] 143 ]
135 144
136 [[package]] 145 [[package]]
137 name = "clap" 146 name = "clap"
138 version = "2.33.3" 147 version = "2.34.0"
139 source = "registry+https://github.com/rust-lang/crates.io-index" 148 source = "registry+https://github.com/rust-lang/crates.io-index"
140 checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002" 149 checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
141 dependencies = [ 150 dependencies = [
142 "ansi_term", 151 "ansi_term 0.12.1",
143 "atty", 152 "atty",
144 "bitflags", 153 "bitflags",
145 "strsim", 154 "strsim 0.8.0",
146 "textwrap", 155 "textwrap 0.11.0",
147 "unicode-width", 156 "unicode-width",
148 "vec_map", 157 "vec_map",
149 ] 158 ]
150 159
151 [[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]]
152 name = "const_fn" 176 name = "const_fn"
153 version = "0.4.4" 177 version = "0.4.4"
154 source = "registry+https://github.com/rust-lang/crates.io-index" 178 source = "registry+https://github.com/rust-lang/crates.io-index"
155 checksum = "cd51eab21ab4fd6a3bf889e2d0958c0a6e3a61ad04260325e919e652a2a62826" 179 checksum = "cd51eab21ab4fd6a3bf889e2d0958c0a6e3a61ad04260325e919e652a2a62826"
180
181 [[package]]
182 name = "convert_case"
183 version = "0.4.0"
184 source = "registry+https://github.com/rust-lang/crates.io-index"
185 checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
156 186
157 [[package]] 187 [[package]]
158 name = "cpufeatures" 188 name = "cpufeatures"
159 version = "0.1.4" 189 version = "0.1.4"
160 source = "registry+https://github.com/rust-lang/crates.io-index" 190 source = "registry+https://github.com/rust-lang/crates.io-index"
261 "syn", 291 "syn",
262 ] 292 ]
263 293
264 [[package]] 294 [[package]]
265 name = "derive_more" 295 name = "derive_more"
266 version = "0.99.11" 296 version = "0.99.17"
267 source = "registry+https://github.com/rust-lang/crates.io-index" 297 source = "registry+https://github.com/rust-lang/crates.io-index"
268 checksum = "41cb0e6161ad61ed084a36ba71fbba9e3ac5aee3606fb607fe08da6acbcf3d8c" 298 checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
299 dependencies = [
300 "convert_case",
301 "proc-macro2",
302 "quote",
303 "rustc_version",
304 "syn",
305 ]
306
307 [[package]]
308 name = "difference"
309 version = "2.0.0"
310 source = "registry+https://github.com/rust-lang/crates.io-index"
311 checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
312
313 [[package]]
314 name = "digest"
315 version = "0.9.0"
316 source = "registry+https://github.com/rust-lang/crates.io-index"
317 checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
318 dependencies = [
319 "generic-array",
320 ]
321
322 [[package]]
323 name = "either"
324 version = "1.6.1"
325 source = "registry+https://github.com/rust-lang/crates.io-index"
326 checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
327
328 [[package]]
329 name = "env_logger"
330 version = "0.7.1"
331 source = "registry+https://github.com/rust-lang/crates.io-index"
332 checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
333 dependencies = [
334 "atty",
335 "humantime 1.3.0",
336 "log",
337 "regex",
338 "termcolor",
339 ]
340
341 [[package]]
342 name = "env_logger"
343 version = "0.9.0"
344 source = "registry+https://github.com/rust-lang/crates.io-index"
345 checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
346 dependencies = [
347 "atty",
348 "humantime 2.1.0",
349 "log",
350 "regex",
351 "termcolor",
352 ]
353
354 [[package]]
355 name = "flate2"
356 version = "1.0.19"
357 source = "registry+https://github.com/rust-lang/crates.io-index"
358 checksum = "7411863d55df97a419aa64cb4d2f167103ea9d767e2c54a1868b7ac3f6b47129"
359 dependencies = [
360 "cfg-if 1.0.0",
361 "crc32fast",
362 "libc",
363 "libz-sys",
364 "miniz_oxide",
365 ]
366
367 [[package]]
368 name = "format-bytes"
369 version = "0.3.0"
370 source = "registry+https://github.com/rust-lang/crates.io-index"
371 checksum = "48942366ef93975da38e175ac9e10068c6fc08ca9e85930d4f098f4d5b14c2fd"
372 dependencies = [
373 "format-bytes-macros",
374 ]
375
376 [[package]]
377 name = "format-bytes-macros"
378 version = "0.4.0"
379 source = "registry+https://github.com/rust-lang/crates.io-index"
380 checksum = "203aadebefcc73d12038296c228eabf830f99cba991b0032adf20e9fa6ce7e4f"
269 dependencies = [ 381 dependencies = [
270 "proc-macro2", 382 "proc-macro2",
271 "quote", 383 "quote",
272 "syn", 384 "syn",
273 ] 385 ]
274 386
275 [[package]] 387 [[package]]
276 name = "difference"
277 version = "2.0.0"
278 source = "registry+https://github.com/rust-lang/crates.io-index"
279 checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
280
281 [[package]]
282 name = "digest"
283 version = "0.9.0"
284 source = "registry+https://github.com/rust-lang/crates.io-index"
285 checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
286 dependencies = [
287 "generic-array",
288 ]
289
290 [[package]]
291 name = "either"
292 version = "1.6.1"
293 source = "registry+https://github.com/rust-lang/crates.io-index"
294 checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
295
296 [[package]]
297 name = "env_logger"
298 version = "0.7.1"
299 source = "registry+https://github.com/rust-lang/crates.io-index"
300 checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
301 dependencies = [
302 "atty",
303 "humantime",
304 "log",
305 "regex",
306 "termcolor",
307 ]
308
309 [[package]]
310 name = "flate2"
311 version = "1.0.19"
312 source = "registry+https://github.com/rust-lang/crates.io-index"
313 checksum = "7411863d55df97a419aa64cb4d2f167103ea9d767e2c54a1868b7ac3f6b47129"
314 dependencies = [
315 "cfg-if 1.0.0",
316 "crc32fast",
317 "libc",
318 "libz-sys",
319 "miniz_oxide",
320 ]
321
322 [[package]]
323 name = "format-bytes"
324 version = "0.3.0"
325 source = "registry+https://github.com/rust-lang/crates.io-index"
326 checksum = "48942366ef93975da38e175ac9e10068c6fc08ca9e85930d4f098f4d5b14c2fd"
327 dependencies = [
328 "format-bytes-macros",
329 ]
330
331 [[package]]
332 name = "format-bytes-macros"
333 version = "0.4.0"
334 source = "registry+https://github.com/rust-lang/crates.io-index"
335 checksum = "203aadebefcc73d12038296c228eabf830f99cba991b0032adf20e9fa6ce7e4f"
336 dependencies = [
337 "proc-macro2",
338 "quote",
339 "syn",
340 ]
341
342 [[package]]
343 name = "generic-array" 388 name = "generic-array"
344 version = "0.14.4" 389 version = "0.14.4"
345 source = "registry+https://github.com/rust-lang/crates.io-index" 390 source = "registry+https://github.com/rust-lang/crates.io-index"
346 checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817" 391 checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
347 dependencies = [ 392 dependencies = [
384 checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" 429 checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
385 dependencies = [ 430 dependencies = [
386 "ahash", 431 "ahash",
387 "rayon", 432 "rayon",
388 ] 433 ]
434
435 [[package]]
436 name = "hashbrown"
437 version = "0.11.2"
438 source = "registry+https://github.com/rust-lang/crates.io-index"
439 checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
389 440
390 [[package]] 441 [[package]]
391 name = "hermit-abi" 442 name = "hermit-abi"
392 version = "0.1.17" 443 version = "0.1.17"
393 source = "registry+https://github.com/rust-lang/crates.io-index" 444 source = "registry+https://github.com/rust-lang/crates.io-index"
407 version = "0.1.0" 458 version = "0.1.0"
408 dependencies = [ 459 dependencies = [
409 "bitflags", 460 "bitflags",
410 "byteorder", 461 "byteorder",
411 "bytes-cast", 462 "bytes-cast",
412 "clap", 463 "clap 3.1.6",
413 "crossbeam-channel 0.4.4", 464 "crossbeam-channel 0.4.4",
414 "derive_more", 465 "derive_more",
415 "flate2", 466 "flate2",
416 "format-bytes", 467 "format-bytes",
417 "hashbrown", 468 "hashbrown 0.9.1",
418 "home", 469 "home",
419 "im-rc", 470 "im-rc",
420 "itertools", 471 "itertools",
421 "lazy_static", 472 "lazy_static",
422 "libc", 473 "libc",
423 "log", 474 "log",
424 "memmap2", 475 "memmap2",
425 "micro-timer", 476 "micro-timer 0.3.1",
426 "pretty_assertions", 477 "pretty_assertions",
427 "rand 0.8.4", 478 "rand 0.8.4",
428 "rand_distr", 479 "rand_distr",
429 "rand_pcg", 480 "rand_pcg",
430 "rayon", 481 "rayon",
441 name = "hg-cpython" 492 name = "hg-cpython"
442 version = "0.1.0" 493 version = "0.1.0"
443 dependencies = [ 494 dependencies = [
444 "cpython", 495 "cpython",
445 "crossbeam-channel 0.4.4", 496 "crossbeam-channel 0.4.4",
446 "env_logger", 497 "env_logger 0.7.1",
447 "hg-core", 498 "hg-core",
448 "libc", 499 "libc",
449 "log", 500 "log",
450 "stable_deref_trait", 501 "stable_deref_trait",
451 "vcsgraph", 502 "vcsgraph",
466 source = "registry+https://github.com/rust-lang/crates.io-index" 517 source = "registry+https://github.com/rust-lang/crates.io-index"
467 checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" 518 checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
468 dependencies = [ 519 dependencies = [
469 "quick-error", 520 "quick-error",
470 ] 521 ]
522
523 [[package]]
524 name = "humantime"
525 version = "2.1.0"
526 source = "registry+https://github.com/rust-lang/crates.io-index"
527 checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
471 528
472 [[package]] 529 [[package]]
473 name = "im-rc" 530 name = "im-rc"
474 version = "15.0.0" 531 version = "15.0.0"
475 source = "registry+https://github.com/rust-lang/crates.io-index" 532 source = "registry+https://github.com/rust-lang/crates.io-index"
482 "typenum", 539 "typenum",
483 "version_check", 540 "version_check",
484 ] 541 ]
485 542
486 [[package]] 543 [[package]]
544 name = "indexmap"
545 version = "1.8.0"
546 source = "registry+https://github.com/rust-lang/crates.io-index"
547 checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
548 dependencies = [
549 "autocfg",
550 "hashbrown 0.11.2",
551 ]
552
553 [[package]]
487 name = "itertools" 554 name = "itertools"
488 version = "0.9.0" 555 version = "0.9.0"
489 source = "registry+https://github.com/rust-lang/crates.io-index" 556 source = "registry+https://github.com/rust-lang/crates.io-index"
490 checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b" 557 checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
491 dependencies = [ 558 dependencies = [
530 "vcpkg", 597 "vcpkg",
531 ] 598 ]
532 599
533 [[package]] 600 [[package]]
534 name = "log" 601 name = "log"
535 version = "0.4.11" 602 version = "0.4.14"
536 source = "registry+https://github.com/rust-lang/crates.io-index" 603 source = "registry+https://github.com/rust-lang/crates.io-index"
537 checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b" 604 checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
538 dependencies = [ 605 dependencies = [
539 "cfg-if 0.1.10", 606 "cfg-if 1.0.0",
540 ] 607 ]
541 608
542 [[package]] 609 [[package]]
543 name = "maybe-uninit" 610 name = "maybe-uninit"
544 version = "2.0.0" 611 version = "2.0.0"
545 source = "registry+https://github.com/rust-lang/crates.io-index" 612 source = "registry+https://github.com/rust-lang/crates.io-index"
546 checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" 613 checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
547 614
548 [[package]] 615 [[package]]
549 name = "memchr" 616 name = "memchr"
550 version = "2.3.4" 617 version = "2.4.1"
551 source = "registry+https://github.com/rust-lang/crates.io-index" 618 source = "registry+https://github.com/rust-lang/crates.io-index"
552 checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525" 619 checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
553 620
554 [[package]] 621 [[package]]
555 name = "memmap2" 622 name = "memmap2"
556 version = "0.4.0" 623 version = "0.4.0"
557 source = "registry+https://github.com/rust-lang/crates.io-index" 624 source = "registry+https://github.com/rust-lang/crates.io-index"
574 name = "micro-timer" 641 name = "micro-timer"
575 version = "0.3.1" 642 version = "0.3.1"
576 source = "registry+https://github.com/rust-lang/crates.io-index" 643 source = "registry+https://github.com/rust-lang/crates.io-index"
577 checksum = "2620153e1d903d26b72b89f0e9c48d8c4756cba941c185461dddc234980c298c" 644 checksum = "2620153e1d903d26b72b89f0e9c48d8c4756cba941c185461dddc234980c298c"
578 dependencies = [ 645 dependencies = [
579 "micro-timer-macros", 646 "micro-timer-macros 0.3.1",
647 "scopeguard",
648 ]
649
650 [[package]]
651 name = "micro-timer"
652 version = "0.4.0"
653 source = "registry+https://github.com/rust-lang/crates.io-index"
654 checksum = "5de32cb59a062672560d6f0842c4aa7714727457b9fe2daf8987d995a176a405"
655 dependencies = [
656 "micro-timer-macros 0.4.0",
580 "scopeguard", 657 "scopeguard",
581 ] 658 ]
582 659
583 [[package]] 660 [[package]]
584 name = "micro-timer-macros" 661 name = "micro-timer-macros"
591 "scopeguard", 668 "scopeguard",
592 "syn", 669 "syn",
593 ] 670 ]
594 671
595 [[package]] 672 [[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]]
596 name = "miniz_oxide" 685 name = "miniz_oxide"
597 version = "0.4.3" 686 version = "0.4.3"
598 source = "registry+https://github.com/rust-lang/crates.io-index" 687 source = "registry+https://github.com/rust-lang/crates.io-index"
599 checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d" 688 checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d"
600 dependencies = [ 689 dependencies = [
637 version = "0.3.0" 726 version = "0.3.0"
638 source = "registry+https://github.com/rust-lang/crates.io-index" 727 source = "registry+https://github.com/rust-lang/crates.io-index"
639 checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 728 checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
640 729
641 [[package]] 730 [[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]]
642 name = "output_vt100" 740 name = "output_vt100"
643 version = "0.1.2" 741 version = "0.1.2"
644 source = "registry+https://github.com/rust-lang/crates.io-index" 742 source = "registry+https://github.com/rust-lang/crates.io-index"
645 checksum = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9" 743 checksum = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9"
646 dependencies = [ 744 dependencies = [
669 name = "pretty_assertions" 767 name = "pretty_assertions"
670 version = "0.6.1" 768 version = "0.6.1"
671 source = "registry+https://github.com/rust-lang/crates.io-index" 769 source = "registry+https://github.com/rust-lang/crates.io-index"
672 checksum = "3f81e1644e1b54f5a68959a29aa86cde704219254669da328ecfdf6a1f09d427" 770 checksum = "3f81e1644e1b54f5a68959a29aa86cde704219254669da328ecfdf6a1f09d427"
673 dependencies = [ 771 dependencies = [
674 "ansi_term", 772 "ansi_term 0.11.0",
675 "ctor", 773 "ctor",
676 "difference", 774 "difference",
677 "output_vt100", 775 "output_vt100",
678 ] 776 ]
679 777
851 source = "registry+https://github.com/rust-lang/crates.io-index" 949 source = "registry+https://github.com/rust-lang/crates.io-index"
852 checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" 950 checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
853 951
854 [[package]] 952 [[package]]
855 name = "regex" 953 name = "regex"
856 version = "1.4.2" 954 version = "1.5.5"
857 source = "registry+https://github.com/rust-lang/crates.io-index" 955 source = "registry+https://github.com/rust-lang/crates.io-index"
858 checksum = "38cf2c13ed4745de91a5eb834e11c00bcc3709e773173b2ce4c56c9fbde04b9c" 956 checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
859 dependencies = [ 957 dependencies = [
860 "aho-corasick", 958 "aho-corasick",
861 "memchr", 959 "memchr",
862 "regex-syntax", 960 "regex-syntax",
863 "thread_local",
864 ] 961 ]
865 962
866 [[package]] 963 [[package]]
867 name = "regex-syntax" 964 name = "regex-syntax"
868 version = "0.6.21" 965 version = "0.6.25"
869 source = "registry+https://github.com/rust-lang/crates.io-index" 966 source = "registry+https://github.com/rust-lang/crates.io-index"
870 checksum = "3b181ba2dcf07aaccad5448e8ead58db5b742cf85dfe035e2227f137a539a189" 967 checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
871 968
872 [[package]] 969 [[package]]
873 name = "remove_dir_all" 970 name = "remove_dir_all"
874 version = "0.5.3" 971 version = "0.5.3"
875 source = "registry+https://github.com/rust-lang/crates.io-index" 972 source = "registry+https://github.com/rust-lang/crates.io-index"
882 name = "rhg" 979 name = "rhg"
883 version = "0.1.0" 980 version = "0.1.0"
884 dependencies = [ 981 dependencies = [
885 "atty", 982 "atty",
886 "chrono", 983 "chrono",
887 "clap", 984 "clap 2.34.0",
888 "derive_more", 985 "derive_more",
889 "env_logger", 986 "env_logger 0.9.0",
890 "format-bytes", 987 "format-bytes",
891 "hg-core", 988 "hg-core",
892 "home", 989 "home",
893 "lazy_static", 990 "lazy_static",
894 "log", 991 "log",
895 "micro-timer", 992 "micro-timer 0.4.0",
896 "regex", 993 "regex",
897 "users", 994 "users",
898 ] 995 ]
899 996
900 [[package]] 997 [[package]]
998 name = "rustc_version"
999 version = "0.4.0"
1000 source = "registry+https://github.com/rust-lang/crates.io-index"
1001 checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
1002 dependencies = [
1003 "semver",
1004 ]
1005
1006 [[package]]
901 name = "same-file" 1007 name = "same-file"
902 version = "1.0.6" 1008 version = "1.0.6"
903 source = "registry+https://github.com/rust-lang/crates.io-index" 1009 source = "registry+https://github.com/rust-lang/crates.io-index"
904 checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1010 checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
905 dependencies = [ 1011 dependencies = [
909 [[package]] 1015 [[package]]
910 name = "scopeguard" 1016 name = "scopeguard"
911 version = "1.1.0" 1017 version = "1.1.0"
912 source = "registry+https://github.com/rust-lang/crates.io-index" 1018 source = "registry+https://github.com/rust-lang/crates.io-index"
913 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1019 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1020
1021 [[package]]
1022 name = "semver"
1023 version = "1.0.6"
1024 source = "registry+https://github.com/rust-lang/crates.io-index"
1025 checksum = "a4a3381e03edd24287172047536f20cabde766e2cd3e65e6b00fb3af51c4f38d"
914 1026
915 [[package]] 1027 [[package]]
916 name = "sha-1" 1028 name = "sha-1"
917 version = "0.9.6" 1029 version = "0.9.6"
918 source = "registry+https://github.com/rust-lang/crates.io-index" 1030 source = "registry+https://github.com/rust-lang/crates.io-index"
952 version = "0.8.0" 1064 version = "0.8.0"
953 source = "registry+https://github.com/rust-lang/crates.io-index" 1065 source = "registry+https://github.com/rust-lang/crates.io-index"
954 checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 1066 checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
955 1067
956 [[package]] 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
1074 [[package]]
957 name = "syn" 1075 name = "syn"
958 version = "1.0.54" 1076 version = "1.0.54"
959 source = "registry+https://github.com/rust-lang/crates.io-index" 1077 source = "registry+https://github.com/rust-lang/crates.io-index"
960 checksum = "9a2af957a63d6bd42255c359c93d9bfdb97076bd3b820897ce55ffbfbf107f44" 1078 checksum = "9a2af957a63d6bd42255c359c93d9bfdb97076bd3b820897ce55ffbfbf107f44"
961 dependencies = [ 1079 dependencies = [
995 dependencies = [ 1113 dependencies = [
996 "unicode-width", 1114 "unicode-width",
997 ] 1115 ]
998 1116
999 [[package]] 1117 [[package]]
1000 name = "thread_local" 1118 name = "textwrap"
1001 version = "1.0.1" 1119 version = "0.15.0"
1002 source = "registry+https://github.com/rust-lang/crates.io-index" 1120 source = "registry+https://github.com/rust-lang/crates.io-index"
1003 checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" 1121 checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
1004 dependencies = [
1005 "lazy_static",
1006 ]
1007 1122
1008 [[package]] 1123 [[package]]
1009 name = "time" 1124 name = "time"
1010 version = "0.1.44" 1125 version = "0.1.44"
1011 source = "registry+https://github.com/rust-lang/crates.io-index" 1126 source = "registry+https://github.com/rust-lang/crates.io-index"
1033 source = "registry+https://github.com/rust-lang/crates.io-index" 1148 source = "registry+https://github.com/rust-lang/crates.io-index"
1034 checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33" 1149 checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
1035 1150
1036 [[package]] 1151 [[package]]
1037 name = "unicode-width" 1152 name = "unicode-width"
1038 version = "0.1.8" 1153 version = "0.1.9"
1039 source = "registry+https://github.com/rust-lang/crates.io-index" 1154 source = "registry+https://github.com/rust-lang/crates.io-index"
1040 checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3" 1155 checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
1041 1156
1042 [[package]] 1157 [[package]]
1043 name = "unicode-xid" 1158 name = "unicode-xid"
1044 version = "0.2.1" 1159 version = "0.2.1"
1045 source = "registry+https://github.com/rust-lang/crates.io-index" 1160 source = "registry+https://github.com/rust-lang/crates.io-index"