diff options
author | fxqnlr <[email protected]> | 2024-09-09 23:03:49 +0200 |
---|---|---|
committer | fxqnlr <[email protected]> | 2024-09-09 23:03:49 +0200 |
commit | 553bbac36bdc483135a7053ca64507e01397e5e1 (patch) | |
tree | 494dad0623628df4f1b86b93da51edf60795a901 /Cargo.lock | |
parent | d396881816cd256cb12d03deebea445cba99ea85 (diff) | |
download | arbs-553bbac36bdc483135a7053ca64507e01397e5e1.tar arbs-553bbac36bdc483135a7053ca64507e01397e5e1.tar.gz arbs-553bbac36bdc483135a7053ca64507e01397e5e1.zip |
add package manager recognition
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 267 |
1 files changed, 243 insertions, 24 deletions
@@ -27,6 +27,55 @@ dependencies = [ | |||
27 | ] | 27 | ] |
28 | 28 | ||
29 | [[package]] | 29 | [[package]] |
30 | name = "anstream" | ||
31 | version = "0.6.15" | ||
32 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
33 | checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" | ||
34 | dependencies = [ | ||
35 | "anstyle", | ||
36 | "anstyle-parse", | ||
37 | "anstyle-query", | ||
38 | "anstyle-wincon", | ||
39 | "colorchoice", | ||
40 | "is_terminal_polyfill", | ||
41 | "utf8parse", | ||
42 | ] | ||
43 | |||
44 | [[package]] | ||
45 | name = "anstyle" | ||
46 | version = "1.0.8" | ||
47 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
48 | checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" | ||
49 | |||
50 | [[package]] | ||
51 | name = "anstyle-parse" | ||
52 | version = "0.2.5" | ||
53 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
54 | checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" | ||
55 | dependencies = [ | ||
56 | "utf8parse", | ||
57 | ] | ||
58 | |||
59 | [[package]] | ||
60 | name = "anstyle-query" | ||
61 | version = "1.1.1" | ||
62 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
63 | checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" | ||
64 | dependencies = [ | ||
65 | "windows-sys 0.52.0", | ||
66 | ] | ||
67 | |||
68 | [[package]] | ||
69 | name = "anstyle-wincon" | ||
70 | version = "3.0.4" | ||
71 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
72 | checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" | ||
73 | dependencies = [ | ||
74 | "anstyle", | ||
75 | "windows-sys 0.52.0", | ||
76 | ] | ||
77 | |||
78 | [[package]] | ||
30 | name = "anyhow" | 79 | name = "anyhow" |
31 | version = "1.0.86" | 80 | version = "1.0.86" |
32 | source = "registry+https://github.com/rust-lang/crates.io-index" | 81 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -37,8 +86,10 @@ name = "arbs" | |||
37 | version = "0.1.0" | 86 | version = "0.1.0" |
38 | dependencies = [ | 87 | dependencies = [ |
39 | "anyhow", | 88 | "anyhow", |
89 | "clap", | ||
40 | "color-eyre", | 90 | "color-eyre", |
41 | "config", | 91 | "config", |
92 | "dirs", | ||
42 | "gethostname", | 93 | "gethostname", |
43 | "serde", | 94 | "serde", |
44 | "serde_json", | 95 | "serde_json", |
@@ -116,6 +167,46 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
116 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | 167 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" |
117 | 168 | ||
118 | [[package]] | 169 | [[package]] |
170 | name = "clap" | ||
171 | version = "4.5.17" | ||
172 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
173 | checksum = "3e5a21b8495e732f1b3c364c9949b201ca7bae518c502c80256c96ad79eaf6ac" | ||
174 | dependencies = [ | ||
175 | "clap_builder", | ||
176 | "clap_derive", | ||
177 | ] | ||
178 | |||
179 | [[package]] | ||
180 | name = "clap_builder" | ||
181 | version = "4.5.17" | ||
182 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
183 | checksum = "8cf2dd12af7a047ad9d6da2b6b249759a22a7abc0f474c1dae1777afa4b21a73" | ||
184 | dependencies = [ | ||
185 | "anstream", | ||
186 | "anstyle", | ||
187 | "clap_lex", | ||
188 | "strsim", | ||
189 | ] | ||
190 | |||
191 | [[package]] | ||
192 | name = "clap_derive" | ||
193 | version = "4.5.13" | ||
194 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
195 | checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0" | ||
196 | dependencies = [ | ||
197 | "heck", | ||
198 | "proc-macro2", | ||
199 | "quote", | ||
200 | "syn", | ||
201 | ] | ||
202 | |||
203 | [[package]] | ||
204 | name = "clap_lex" | ||
205 | version = "0.7.2" | ||
206 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
207 | checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" | ||
208 | |||
209 | [[package]] | ||
119 | name = "color-eyre" | 210 | name = "color-eyre" |
120 | version = "0.6.3" | 211 | version = "0.6.3" |
121 | source = "registry+https://github.com/rust-lang/crates.io-index" | 212 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -143,6 +234,12 @@ dependencies = [ | |||
143 | ] | 234 | ] |
144 | 235 | ||
145 | [[package]] | 236 | [[package]] |
237 | name = "colorchoice" | ||
238 | version = "1.0.2" | ||
239 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
240 | checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" | ||
241 | |||
242 | [[package]] | ||
146 | name = "config" | 243 | name = "config" |
147 | version = "0.14.0" | 244 | version = "0.14.0" |
148 | source = "registry+https://github.com/rust-lang/crates.io-index" | 245 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -159,7 +256,6 @@ dependencies = [ | |||
159 | "serde", | 256 | "serde", |
160 | "serde_json", | 257 | "serde_json", |
161 | "toml", | 258 | "toml", |
162 | "yaml-rust", | ||
163 | ] | 259 | ] |
164 | 260 | ||
165 | [[package]] | 261 | [[package]] |
@@ -251,6 +347,27 @@ dependencies = [ | |||
251 | ] | 347 | ] |
252 | 348 | ||
253 | [[package]] | 349 | [[package]] |
350 | name = "dirs" | ||
351 | version = "5.0.1" | ||
352 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
353 | checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" | ||
354 | dependencies = [ | ||
355 | "dirs-sys", | ||
356 | ] | ||
357 | |||
358 | [[package]] | ||
359 | name = "dirs-sys" | ||
360 | version = "0.4.1" | ||
361 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
362 | checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" | ||
363 | dependencies = [ | ||
364 | "libc", | ||
365 | "option-ext", | ||
366 | "redox_users", | ||
367 | "windows-sys 0.48.0", | ||
368 | ] | ||
369 | |||
370 | [[package]] | ||
254 | name = "dlv-list" | 371 | name = "dlv-list" |
255 | version = "0.5.2" | 372 | version = "0.5.2" |
256 | source = "registry+https://github.com/rust-lang/crates.io-index" | 373 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -272,7 +389,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
272 | checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" | 389 | checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" |
273 | dependencies = [ | 390 | dependencies = [ |
274 | "libc", | 391 | "libc", |
275 | "windows-sys", | 392 | "windows-sys 0.52.0", |
276 | ] | 393 | ] |
277 | 394 | ||
278 | [[package]] | 395 | [[package]] |
@@ -302,7 +419,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
302 | checksum = "dc3655aa6818d65bc620d6911f05aa7b6aeb596291e1e9f79e52df85583d1e30" | 419 | checksum = "dc3655aa6818d65bc620d6911f05aa7b6aeb596291e1e9f79e52df85583d1e30" |
303 | dependencies = [ | 420 | dependencies = [ |
304 | "rustix", | 421 | "rustix", |
305 | "windows-targets", | 422 | "windows-targets 0.52.6", |
306 | ] | 423 | ] |
307 | 424 | ||
308 | [[package]] | 425 | [[package]] |
@@ -335,6 +452,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
335 | checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" | 452 | checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" |
336 | 453 | ||
337 | [[package]] | 454 | [[package]] |
455 | name = "heck" | ||
456 | version = "0.5.0" | ||
457 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
458 | checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" | ||
459 | |||
460 | [[package]] | ||
338 | name = "indenter" | 461 | name = "indenter" |
339 | version = "0.3.3" | 462 | version = "0.3.3" |
340 | source = "registry+https://github.com/rust-lang/crates.io-index" | 463 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -351,6 +474,12 @@ dependencies = [ | |||
351 | ] | 474 | ] |
352 | 475 | ||
353 | [[package]] | 476 | [[package]] |
477 | name = "is_terminal_polyfill" | ||
478 | version = "1.70.1" | ||
479 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
480 | checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" | ||
481 | |||
482 | [[package]] | ||
354 | name = "itoa" | 483 | name = "itoa" |
355 | version = "1.0.11" | 484 | version = "1.0.11" |
356 | source = "registry+https://github.com/rust-lang/crates.io-index" | 485 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -380,10 +509,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
380 | checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" | 509 | checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" |
381 | 510 | ||
382 | [[package]] | 511 | [[package]] |
383 | name = "linked-hash-map" | 512 | name = "libredox" |
384 | version = "0.5.6" | 513 | version = "0.1.3" |
385 | source = "registry+https://github.com/rust-lang/crates.io-index" | 514 | source = "registry+https://github.com/rust-lang/crates.io-index" |
386 | checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" | 515 | checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" |
516 | dependencies = [ | ||
517 | "bitflags", | ||
518 | "libc", | ||
519 | ] | ||
387 | 520 | ||
388 | [[package]] | 521 | [[package]] |
389 | name = "linux-raw-sys" | 522 | name = "linux-raw-sys" |
@@ -469,6 +602,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
469 | checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" | 602 | checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" |
470 | 603 | ||
471 | [[package]] | 604 | [[package]] |
605 | name = "option-ext" | ||
606 | version = "0.2.0" | ||
607 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
608 | checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" | ||
609 | |||
610 | [[package]] | ||
472 | name = "ordered-multimap" | 611 | name = "ordered-multimap" |
473 | version = "0.6.0" | 612 | version = "0.6.0" |
474 | source = "registry+https://github.com/rust-lang/crates.io-index" | 613 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -572,6 +711,17 @@ dependencies = [ | |||
572 | ] | 711 | ] |
573 | 712 | ||
574 | [[package]] | 713 | [[package]] |
714 | name = "redox_users" | ||
715 | version = "0.4.6" | ||
716 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
717 | checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" | ||
718 | dependencies = [ | ||
719 | "getrandom", | ||
720 | "libredox", | ||
721 | "thiserror", | ||
722 | ] | ||
723 | |||
724 | [[package]] | ||
575 | name = "regex" | 725 | name = "regex" |
576 | version = "1.10.6" | 726 | version = "1.10.6" |
577 | source = "registry+https://github.com/rust-lang/crates.io-index" | 727 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -653,7 +803,7 @@ dependencies = [ | |||
653 | "errno", | 803 | "errno", |
654 | "libc", | 804 | "libc", |
655 | "linux-raw-sys", | 805 | "linux-raw-sys", |
656 | "windows-sys", | 806 | "windows-sys 0.52.0", |
657 | ] | 807 | ] |
658 | 808 | ||
659 | [[package]] | 809 | [[package]] |
@@ -736,6 +886,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
736 | checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" | 886 | checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" |
737 | 887 | ||
738 | [[package]] | 888 | [[package]] |
889 | name = "strsim" | ||
890 | version = "0.11.1" | ||
891 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
892 | checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" | ||
893 | |||
894 | [[package]] | ||
739 | name = "syn" | 895 | name = "syn" |
740 | version = "2.0.77" | 896 | version = "2.0.77" |
741 | source = "registry+https://github.com/rust-lang/crates.io-index" | 897 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -958,6 +1114,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
958 | checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" | 1114 | checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" |
959 | 1115 | ||
960 | [[package]] | 1116 | [[package]] |
1117 | name = "utf8parse" | ||
1118 | version = "0.2.2" | ||
1119 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1120 | checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" | ||
1121 | |||
1122 | [[package]] | ||
961 | name = "uuid" | 1123 | name = "uuid" |
962 | version = "1.10.0" | 1124 | version = "1.10.0" |
963 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1125 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1008,11 +1170,35 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | |||
1008 | 1170 | ||
1009 | [[package]] | 1171 | [[package]] |
1010 | name = "windows-sys" | 1172 | name = "windows-sys" |
1173 | version = "0.48.0" | ||
1174 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1175 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" | ||
1176 | dependencies = [ | ||
1177 | "windows-targets 0.48.5", | ||
1178 | ] | ||
1179 | |||
1180 | [[package]] | ||
1181 | name = "windows-sys" | ||
1011 | version = "0.52.0" | 1182 | version = "0.52.0" |
1012 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1183 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1013 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" | 1184 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" |
1014 | dependencies = [ | 1185 | dependencies = [ |
1015 | "windows-targets", | 1186 | "windows-targets 0.52.6", |
1187 | ] | ||
1188 | |||
1189 | [[package]] | ||
1190 | name = "windows-targets" | ||
1191 | version = "0.48.5" | ||
1192 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1193 | checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" | ||
1194 | dependencies = [ | ||
1195 | "windows_aarch64_gnullvm 0.48.5", | ||
1196 | "windows_aarch64_msvc 0.48.5", | ||
1197 | "windows_i686_gnu 0.48.5", | ||
1198 | "windows_i686_msvc 0.48.5", | ||
1199 | "windows_x86_64_gnu 0.48.5", | ||
1200 | "windows_x86_64_gnullvm 0.48.5", | ||
1201 | "windows_x86_64_msvc 0.48.5", | ||
1016 | ] | 1202 | ] |
1017 | 1203 | ||
1018 | [[package]] | 1204 | [[package]] |
@@ -1021,30 +1207,48 @@ version = "0.52.6" | |||
1021 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1207 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1022 | checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" | 1208 | checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" |
1023 | dependencies = [ | 1209 | dependencies = [ |
1024 | "windows_aarch64_gnullvm", | 1210 | "windows_aarch64_gnullvm 0.52.6", |
1025 | "windows_aarch64_msvc", | 1211 | "windows_aarch64_msvc 0.52.6", |
1026 | "windows_i686_gnu", | 1212 | "windows_i686_gnu 0.52.6", |
1027 | "windows_i686_gnullvm", | 1213 | "windows_i686_gnullvm", |
1028 | "windows_i686_msvc", | 1214 | "windows_i686_msvc 0.52.6", |
1029 | "windows_x86_64_gnu", | 1215 | "windows_x86_64_gnu 0.52.6", |
1030 | "windows_x86_64_gnullvm", | 1216 | "windows_x86_64_gnullvm 0.52.6", |
1031 | "windows_x86_64_msvc", | 1217 | "windows_x86_64_msvc 0.52.6", |
1032 | ] | 1218 | ] |
1033 | 1219 | ||
1034 | [[package]] | 1220 | [[package]] |
1035 | name = "windows_aarch64_gnullvm" | 1221 | name = "windows_aarch64_gnullvm" |
1222 | version = "0.48.5" | ||
1223 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1224 | checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" | ||
1225 | |||
1226 | [[package]] | ||
1227 | name = "windows_aarch64_gnullvm" | ||
1036 | version = "0.52.6" | 1228 | version = "0.52.6" |
1037 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1229 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1038 | checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" | 1230 | checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" |
1039 | 1231 | ||
1040 | [[package]] | 1232 | [[package]] |
1041 | name = "windows_aarch64_msvc" | 1233 | name = "windows_aarch64_msvc" |
1234 | version = "0.48.5" | ||
1235 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1236 | checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" | ||
1237 | |||
1238 | [[package]] | ||
1239 | name = "windows_aarch64_msvc" | ||
1042 | version = "0.52.6" | 1240 | version = "0.52.6" |
1043 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1241 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1044 | checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" | 1242 | checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" |
1045 | 1243 | ||
1046 | [[package]] | 1244 | [[package]] |
1047 | name = "windows_i686_gnu" | 1245 | name = "windows_i686_gnu" |
1246 | version = "0.48.5" | ||
1247 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1248 | checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" | ||
1249 | |||
1250 | [[package]] | ||
1251 | name = "windows_i686_gnu" | ||
1048 | version = "0.52.6" | 1252 | version = "0.52.6" |
1049 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1253 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1050 | checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" | 1254 | checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" |
@@ -1057,24 +1261,48 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" | |||
1057 | 1261 | ||
1058 | [[package]] | 1262 | [[package]] |
1059 | name = "windows_i686_msvc" | 1263 | name = "windows_i686_msvc" |
1264 | version = "0.48.5" | ||
1265 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1266 | checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" | ||
1267 | |||
1268 | [[package]] | ||
1269 | name = "windows_i686_msvc" | ||
1060 | version = "0.52.6" | 1270 | version = "0.52.6" |
1061 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1271 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1062 | checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" | 1272 | checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" |
1063 | 1273 | ||
1064 | [[package]] | 1274 | [[package]] |
1065 | name = "windows_x86_64_gnu" | 1275 | name = "windows_x86_64_gnu" |
1276 | version = "0.48.5" | ||
1277 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1278 | checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" | ||
1279 | |||
1280 | [[package]] | ||
1281 | name = "windows_x86_64_gnu" | ||
1066 | version = "0.52.6" | 1282 | version = "0.52.6" |
1067 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1283 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1068 | checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" | 1284 | checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" |
1069 | 1285 | ||
1070 | [[package]] | 1286 | [[package]] |
1071 | name = "windows_x86_64_gnullvm" | 1287 | name = "windows_x86_64_gnullvm" |
1288 | version = "0.48.5" | ||
1289 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1290 | checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" | ||
1291 | |||
1292 | [[package]] | ||
1293 | name = "windows_x86_64_gnullvm" | ||
1072 | version = "0.52.6" | 1294 | version = "0.52.6" |
1073 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1295 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1074 | checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" | 1296 | checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" |
1075 | 1297 | ||
1076 | [[package]] | 1298 | [[package]] |
1077 | name = "windows_x86_64_msvc" | 1299 | name = "windows_x86_64_msvc" |
1300 | version = "0.48.5" | ||
1301 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1302 | checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" | ||
1303 | |||
1304 | [[package]] | ||
1305 | name = "windows_x86_64_msvc" | ||
1078 | version = "0.52.6" | 1306 | version = "0.52.6" |
1079 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1307 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1080 | checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" | 1308 | checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" |
@@ -1087,12 +1315,3 @@ checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f" | |||
1087 | dependencies = [ | 1315 | dependencies = [ |
1088 | "memchr", | 1316 | "memchr", |
1089 | ] | 1317 | ] |
1090 | |||
1091 | [[package]] | ||
1092 | name = "yaml-rust" | ||
1093 | version = "0.4.5" | ||
1094 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1095 | checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" | ||
1096 | dependencies = [ | ||
1097 | "linked-hash-map", | ||
1098 | ] | ||