diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 186 |
1 files changed, 164 insertions, 22 deletions
@@ -21,6 +21,12 @@ dependencies = [ | |||
21 | ] | 21 | ] |
22 | 22 | ||
23 | [[package]] | 23 | [[package]] |
24 | name = "arrayvec" | ||
25 | version = "0.5.2" | ||
26 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
27 | checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" | ||
28 | |||
29 | [[package]] | ||
24 | name = "atty" | 30 | name = "atty" |
25 | version = "0.2.14" | 31 | version = "0.2.14" |
26 | source = "registry+https://github.com/rust-lang/crates.io-index" | 32 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -69,9 +75,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | |||
69 | 75 | ||
70 | [[package]] | 76 | [[package]] |
71 | name = "clap" | 77 | name = "clap" |
72 | version = "3.0.0-beta.4" | 78 | version = "3.0.0-beta.5" |
73 | source = "registry+https://github.com/rust-lang/crates.io-index" | 79 | source = "registry+https://github.com/rust-lang/crates.io-index" |
74 | checksum = "fcd70aa5597dbc42f7217a543f9ef2768b2ef823ba29036072d30e1d88e98406" | 80 | checksum = "feff3878564edb93745d58cf63e17b63f24142506e7a20c87a5521ed7bfb1d63" |
75 | dependencies = [ | 81 | dependencies = [ |
76 | "atty", | 82 | "atty", |
77 | "bitflags", | 83 | "bitflags", |
@@ -82,14 +88,14 @@ dependencies = [ | |||
82 | "strsim", | 88 | "strsim", |
83 | "termcolor", | 89 | "termcolor", |
84 | "textwrap", | 90 | "textwrap", |
85 | "vec_map", | 91 | "unicase", |
86 | ] | 92 | ] |
87 | 93 | ||
88 | [[package]] | 94 | [[package]] |
89 | name = "clap_derive" | 95 | name = "clap_derive" |
90 | version = "3.0.0-beta.4" | 96 | version = "3.0.0-beta.5" |
91 | source = "registry+https://github.com/rust-lang/crates.io-index" | 97 | source = "registry+https://github.com/rust-lang/crates.io-index" |
92 | checksum = "0b5bb0d655624a0b8770d1c178fb8ffcb1f91cc722cb08f451e3dc72465421ac" | 98 | checksum = "8b15c6b4f786ffb6192ffe65a36855bc1fc2444bcd0945ae16748dcd6ed7d0d3" |
93 | dependencies = [ | 99 | dependencies = [ |
94 | "heck", | 100 | "heck", |
95 | "proc-macro-error", | 101 | "proc-macro-error", |
@@ -99,6 +105,19 @@ dependencies = [ | |||
99 | ] | 105 | ] |
100 | 106 | ||
101 | [[package]] | 107 | [[package]] |
108 | name = "console" | ||
109 | version = "0.14.1" | ||
110 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
111 | checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45" | ||
112 | dependencies = [ | ||
113 | "encode_unicode", | ||
114 | "lazy_static", | ||
115 | "libc", | ||
116 | "terminal_size", | ||
117 | "winapi", | ||
118 | ] | ||
119 | |||
120 | [[package]] | ||
102 | name = "countme" | 121 | name = "countme" |
103 | version = "2.0.4" | 122 | version = "2.0.4" |
104 | source = "registry+https://github.com/rust-lang/crates.io-index" | 123 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -115,6 +134,18 @@ dependencies = [ | |||
115 | ] | 134 | ] |
116 | 135 | ||
117 | [[package]] | 136 | [[package]] |
137 | name = "dtoa" | ||
138 | version = "0.4.8" | ||
139 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
140 | checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" | ||
141 | |||
142 | [[package]] | ||
143 | name = "encode_unicode" | ||
144 | version = "0.3.6" | ||
145 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
146 | checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" | ||
147 | |||
148 | [[package]] | ||
118 | name = "fnv" | 149 | name = "fnv" |
119 | version = "1.0.7" | 150 | version = "1.0.7" |
120 | source = "registry+https://github.com/rust-lang/crates.io-index" | 151 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -198,6 +229,21 @@ dependencies = [ | |||
198 | ] | 229 | ] |
199 | 230 | ||
200 | [[package]] | 231 | [[package]] |
232 | name = "insta" | ||
233 | version = "1.8.0" | ||
234 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
235 | checksum = "15226a375927344c78d39dc6b49e2d5562a5b0705e26a589093c6792e52eed8e" | ||
236 | dependencies = [ | ||
237 | "console", | ||
238 | "lazy_static", | ||
239 | "serde", | ||
240 | "serde_json", | ||
241 | "serde_yaml", | ||
242 | "similar 1.3.0", | ||
243 | "uuid", | ||
244 | ] | ||
245 | |||
246 | [[package]] | ||
201 | name = "itoa" | 247 | name = "itoa" |
202 | version = "0.4.8" | 248 | version = "0.4.8" |
203 | source = "registry+https://github.com/rust-lang/crates.io-index" | 249 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -224,9 +270,15 @@ dependencies = [ | |||
224 | 270 | ||
225 | [[package]] | 271 | [[package]] |
226 | name = "libc" | 272 | name = "libc" |
227 | version = "0.2.103" | 273 | version = "0.2.106" |
228 | source = "registry+https://github.com/rust-lang/crates.io-index" | 274 | source = "registry+https://github.com/rust-lang/crates.io-index" |
229 | checksum = "dd8f7255a17a627354f321ef0055d63b898c6fb27eff628af4d1b66b7331edf6" | 275 | checksum = "a60553f9a9e039a333b4e9b20573b9e9b9c0bb3a11e201ccc48ef4283456d673" |
276 | |||
277 | [[package]] | ||
278 | name = "linked-hash-map" | ||
279 | version = "0.5.4" | ||
280 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
281 | checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3" | ||
230 | 282 | ||
231 | [[package]] | 283 | [[package]] |
232 | name = "log" | 284 | name = "log" |
@@ -278,9 +330,12 @@ checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" | |||
278 | 330 | ||
279 | [[package]] | 331 | [[package]] |
280 | name = "os_str_bytes" | 332 | name = "os_str_bytes" |
281 | version = "3.1.0" | 333 | version = "4.2.0" |
282 | source = "registry+https://github.com/rust-lang/crates.io-index" | 334 | source = "registry+https://github.com/rust-lang/crates.io-index" |
283 | checksum = "6acbef58a60fe69ab50510a55bc8cdd4d6cf2283d27ad338f54cb52747a9cf2d" | 335 | checksum = "addaa943333a514159c80c97ff4a93306530d965d27e139188283cd13e06a799" |
336 | dependencies = [ | ||
337 | "memchr", | ||
338 | ] | ||
284 | 339 | ||
285 | [[package]] | 340 | [[package]] |
286 | name = "proc-macro-error" | 341 | name = "proc-macro-error" |
@@ -308,18 +363,18 @@ dependencies = [ | |||
308 | 363 | ||
309 | [[package]] | 364 | [[package]] |
310 | name = "proc-macro2" | 365 | name = "proc-macro2" |
311 | version = "1.0.29" | 366 | version = "1.0.32" |
312 | source = "registry+https://github.com/rust-lang/crates.io-index" | 367 | source = "registry+https://github.com/rust-lang/crates.io-index" |
313 | checksum = "b9f5105d4fdaab20335ca9565e106a5d9b82b6219b5ba735731124ac6711d23d" | 368 | checksum = "ba508cc11742c0dc5c1659771673afbab7a0efab23aa17e854cbab0837ed0b43" |
314 | dependencies = [ | 369 | dependencies = [ |
315 | "unicode-xid", | 370 | "unicode-xid", |
316 | ] | 371 | ] |
317 | 372 | ||
318 | [[package]] | 373 | [[package]] |
319 | name = "quote" | 374 | name = "quote" |
320 | version = "1.0.9" | 375 | version = "1.0.10" |
321 | source = "registry+https://github.com/rust-lang/crates.io-index" | 376 | source = "registry+https://github.com/rust-lang/crates.io-index" |
322 | checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" | 377 | checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05" |
323 | dependencies = [ | 378 | dependencies = [ |
324 | "proc-macro2", | 379 | "proc-macro2", |
325 | ] | 380 | ] |
@@ -343,9 +398,9 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" | |||
343 | 398 | ||
344 | [[package]] | 399 | [[package]] |
345 | name = "rnix" | 400 | name = "rnix" |
346 | version = "0.9.0" | 401 | version = "0.9.1" |
347 | source = "registry+https://github.com/rust-lang/crates.io-index" | 402 | source = "registry+https://github.com/rust-lang/crates.io-index" |
348 | checksum = "1b37f8af07a0354606141df076458660af7e22238e4117a041c21c548080addd" | 403 | checksum = "294becb48f58c496d96c10a12df290266204ca75c9799be4d04222bfaebb6a37" |
349 | dependencies = [ | 404 | dependencies = [ |
350 | "cbitset", | 405 | "cbitset", |
351 | "rowan", | 406 | "rowan", |
@@ -418,6 +473,24 @@ dependencies = [ | |||
418 | ] | 473 | ] |
419 | 474 | ||
420 | [[package]] | 475 | [[package]] |
476 | name = "serde_yaml" | ||
477 | version = "0.8.21" | ||
478 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
479 | checksum = "d8c608a35705a5d3cdc9fbe403147647ff34b921f8e833e49306df898f9b20af" | ||
480 | dependencies = [ | ||
481 | "dtoa", | ||
482 | "indexmap", | ||
483 | "serde", | ||
484 | "yaml-rust", | ||
485 | ] | ||
486 | |||
487 | [[package]] | ||
488 | name = "similar" | ||
489 | version = "1.3.0" | ||
490 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
491 | checksum = "1ad1d488a557b235fc46dae55512ffbfc429d2482b08b4d9435ab07384ca8aec" | ||
492 | |||
493 | [[package]] | ||
421 | name = "similar" | 494 | name = "similar" |
422 | version = "2.1.0" | 495 | version = "2.1.0" |
423 | source = "registry+https://github.com/rust-lang/crates.io-index" | 496 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -425,9 +498,12 @@ checksum = "2e24979f63a11545f5f2c60141afe249d4f19f84581ea2138065e400941d83d3" | |||
425 | 498 | ||
426 | [[package]] | 499 | [[package]] |
427 | name = "smol_str" | 500 | name = "smol_str" |
428 | version = "0.1.18" | 501 | version = "0.1.20" |
429 | source = "registry+https://github.com/rust-lang/crates.io-index" | 502 | source = "registry+https://github.com/rust-lang/crates.io-index" |
430 | checksum = "b203e79e90905594272c1c97c7af701533d42adaab0beb3859018e477d54a3b0" | 503 | checksum = "559b173452ec4061933b0c0e22d7d429c90ecdc1b3ae1c6e64238e7c15c3ee15" |
504 | dependencies = [ | ||
505 | "serde", | ||
506 | ] | ||
431 | 507 | ||
432 | [[package]] | 508 | [[package]] |
433 | name = "statix" | 509 | name = "statix" |
@@ -436,16 +512,27 @@ dependencies = [ | |||
436 | "ariadne", | 512 | "ariadne", |
437 | "clap", | 513 | "clap", |
438 | "ignore", | 514 | "ignore", |
515 | "insta", | ||
439 | "lib", | 516 | "lib", |
440 | "rnix", | 517 | "rnix", |
441 | "serde", | 518 | "serde", |
442 | "serde_json", | 519 | "serde_json", |
443 | "similar", | 520 | "similar 2.1.0", |
521 | "strip-ansi-escapes", | ||
444 | "thiserror", | 522 | "thiserror", |
445 | "vfs", | 523 | "vfs", |
446 | ] | 524 | ] |
447 | 525 | ||
448 | [[package]] | 526 | [[package]] |
527 | name = "strip-ansi-escapes" | ||
528 | version = "0.1.1" | ||
529 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
530 | checksum = "011cbb39cf7c1f62871aea3cc46e5817b0937b49e9447370c93cacbe93a766d8" | ||
531 | dependencies = [ | ||
532 | "vte", | ||
533 | ] | ||
534 | |||
535 | [[package]] | ||
449 | name = "strsim" | 536 | name = "strsim" |
450 | version = "0.10.0" | 537 | version = "0.10.0" |
451 | source = "registry+https://github.com/rust-lang/crates.io-index" | 538 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -453,9 +540,9 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" | |||
453 | 540 | ||
454 | [[package]] | 541 | [[package]] |
455 | name = "syn" | 542 | name = "syn" |
456 | version = "1.0.76" | 543 | version = "1.0.81" |
457 | source = "registry+https://github.com/rust-lang/crates.io-index" | 544 | source = "registry+https://github.com/rust-lang/crates.io-index" |
458 | checksum = "c6f107db402c2c2055242dbf4d2af0e69197202e9faacbef9571bbe47f5a1b84" | 545 | checksum = "f2afee18b8beb5a596ecb4a2dce128c719b4ba399d34126b9e4396e3f9860966" |
459 | dependencies = [ | 546 | dependencies = [ |
460 | "proc-macro2", | 547 | "proc-macro2", |
461 | "quote", | 548 | "quote", |
@@ -472,6 +559,16 @@ dependencies = [ | |||
472 | ] | 559 | ] |
473 | 560 | ||
474 | [[package]] | 561 | [[package]] |
562 | name = "terminal_size" | ||
563 | version = "0.1.17" | ||
564 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
565 | checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df" | ||
566 | dependencies = [ | ||
567 | "libc", | ||
568 | "winapi", | ||
569 | ] | ||
570 | |||
571 | [[package]] | ||
475 | name = "text-size" | 572 | name = "text-size" |
476 | version = "1.1.0" | 573 | version = "1.1.0" |
477 | source = "registry+https://github.com/rust-lang/crates.io-index" | 574 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -516,6 +613,15 @@ dependencies = [ | |||
516 | ] | 613 | ] |
517 | 614 | ||
518 | [[package]] | 615 | [[package]] |
616 | name = "unicase" | ||
617 | version = "2.6.0" | ||
618 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
619 | checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" | ||
620 | dependencies = [ | ||
621 | "version_check", | ||
622 | ] | ||
623 | |||
624 | [[package]] | ||
519 | name = "unicode-segmentation" | 625 | name = "unicode-segmentation" |
520 | version = "1.8.0" | 626 | version = "1.8.0" |
521 | source = "registry+https://github.com/rust-lang/crates.io-index" | 627 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -534,10 +640,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
534 | checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" | 640 | checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" |
535 | 641 | ||
536 | [[package]] | 642 | [[package]] |
537 | name = "vec_map" | 643 | name = "utf8parse" |
644 | version = "0.2.0" | ||
645 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
646 | checksum = "936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372" | ||
647 | |||
648 | [[package]] | ||
649 | name = "uuid" | ||
538 | version = "0.8.2" | 650 | version = "0.8.2" |
539 | source = "registry+https://github.com/rust-lang/crates.io-index" | 651 | source = "registry+https://github.com/rust-lang/crates.io-index" |
540 | checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" | 652 | checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" |
541 | 653 | ||
542 | [[package]] | 654 | [[package]] |
543 | name = "version_check" | 655 | name = "version_check" |
@@ -553,6 +665,27 @@ dependencies = [ | |||
553 | ] | 665 | ] |
554 | 666 | ||
555 | [[package]] | 667 | [[package]] |
668 | name = "vte" | ||
669 | version = "0.10.1" | ||
670 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
671 | checksum = "6cbce692ab4ca2f1f3047fcf732430249c0e971bfdd2b234cf2c47ad93af5983" | ||
672 | dependencies = [ | ||
673 | "arrayvec", | ||
674 | "utf8parse", | ||
675 | "vte_generate_state_changes", | ||
676 | ] | ||
677 | |||
678 | [[package]] | ||
679 | name = "vte_generate_state_changes" | ||
680 | version = "0.1.1" | ||
681 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
682 | checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff" | ||
683 | dependencies = [ | ||
684 | "proc-macro2", | ||
685 | "quote", | ||
686 | ] | ||
687 | |||
688 | [[package]] | ||
556 | name = "walkdir" | 689 | name = "walkdir" |
557 | version = "2.3.2" | 690 | version = "2.3.2" |
558 | source = "registry+https://github.com/rust-lang/crates.io-index" | 691 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -595,6 +728,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
595 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | 728 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" |
596 | 729 | ||
597 | [[package]] | 730 | [[package]] |
731 | name = "yaml-rust" | ||
732 | version = "0.4.5" | ||
733 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
734 | checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" | ||
735 | dependencies = [ | ||
736 | "linked-hash-map", | ||
737 | ] | ||
738 | |||
739 | [[package]] | ||
598 | name = "yansi" | 740 | name = "yansi" |
599 | version = "0.5.0" | 741 | version = "0.5.0" |
600 | source = "registry+https://github.com/rust-lang/crates.io-index" | 742 | source = "registry+https://github.com/rust-lang/crates.io-index" |