Import toml 0.7.3
[platform/upstream/rust-toml.git] / Cargo.lock
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 version = 3
4
5 [[package]]
6 name = "aho-corasick"
7 version = "0.7.19"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
10 dependencies = [
11  "memchr",
12 ]
13
14 [[package]]
15 name = "autocfg"
16 version = "1.1.0"
17 source = "registry+https://github.com/rust-lang/crates.io-index"
18 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
19
20 [[package]]
21 name = "bitflags"
22 version = "1.3.2"
23 source = "registry+https://github.com/rust-lang/crates.io-index"
24 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
25
26 [[package]]
27 name = "bstr"
28 version = "0.2.17"
29 source = "registry+https://github.com/rust-lang/crates.io-index"
30 checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
31 dependencies = [
32  "memchr",
33 ]
34
35 [[package]]
36 name = "cc"
37 version = "1.0.73"
38 source = "registry+https://github.com/rust-lang/crates.io-index"
39 checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
40
41 [[package]]
42 name = "cfg-if"
43 version = "1.0.0"
44 source = "registry+https://github.com/rust-lang/crates.io-index"
45 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
46
47 [[package]]
48 name = "chrono"
49 version = "0.4.22"
50 source = "registry+https://github.com/rust-lang/crates.io-index"
51 checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1"
52 dependencies = [
53  "num-integer",
54  "num-traits",
55 ]
56
57 [[package]]
58 name = "clap"
59 version = "4.0.32"
60 source = "registry+https://github.com/rust-lang/crates.io-index"
61 checksum = "a7db700bc935f9e43e88d00b0850dae18a63773cfbec6d8e070fccf7fef89a39"
62 dependencies = [
63  "bitflags",
64  "clap_derive",
65  "clap_lex",
66  "is-terminal",
67  "once_cell",
68  "strsim",
69  "termcolor",
70 ]
71
72 [[package]]
73 name = "clap_derive"
74 version = "4.0.21"
75 source = "registry+https://github.com/rust-lang/crates.io-index"
76 checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014"
77 dependencies = [
78  "heck",
79  "proc-macro-error",
80  "proc-macro2",
81  "quote",
82  "syn",
83 ]
84
85 [[package]]
86 name = "clap_lex"
87 version = "0.3.0"
88 source = "registry+https://github.com/rust-lang/crates.io-index"
89 checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8"
90 dependencies = [
91  "os_str_bytes",
92 ]
93
94 [[package]]
95 name = "concolor"
96 version = "0.0.11"
97 source = "registry+https://github.com/rust-lang/crates.io-index"
98 checksum = "318d6c16e73b3a900eb212ad6a82fc7d298c5ab8184c7a9998646455bc474a16"
99 dependencies = [
100  "bitflags",
101  "concolor-query",
102  "is-terminal",
103 ]
104
105 [[package]]
106 name = "concolor-query"
107 version = "0.1.0"
108 source = "registry+https://github.com/rust-lang/crates.io-index"
109 checksum = "82a90734b3d5dcf656e7624cca6bce9c3a90ee11f900e80141a7427ccfb3d317"
110
111 [[package]]
112 name = "crossbeam-utils"
113 version = "0.8.11"
114 source = "registry+https://github.com/rust-lang/crates.io-index"
115 checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc"
116 dependencies = [
117  "cfg-if",
118  "once_cell",
119 ]
120
121 [[package]]
122 name = "errno"
123 version = "0.2.8"
124 source = "registry+https://github.com/rust-lang/crates.io-index"
125 checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
126 dependencies = [
127  "errno-dragonfly",
128  "libc",
129  "winapi",
130 ]
131
132 [[package]]
133 name = "errno-dragonfly"
134 version = "0.1.2"
135 source = "registry+https://github.com/rust-lang/crates.io-index"
136 checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
137 dependencies = [
138  "cc",
139  "libc",
140 ]
141
142 [[package]]
143 name = "fnv"
144 version = "1.0.7"
145 source = "registry+https://github.com/rust-lang/crates.io-index"
146 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
147
148 [[package]]
149 name = "globset"
150 version = "0.4.9"
151 source = "registry+https://github.com/rust-lang/crates.io-index"
152 checksum = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a"
153 dependencies = [
154  "aho-corasick",
155  "bstr",
156  "fnv",
157  "log",
158  "regex",
159 ]
160
161 [[package]]
162 name = "hashbrown"
163 version = "0.12.3"
164 source = "registry+https://github.com/rust-lang/crates.io-index"
165 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
166
167 [[package]]
168 name = "heck"
169 version = "0.4.0"
170 source = "registry+https://github.com/rust-lang/crates.io-index"
171 checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
172
173 [[package]]
174 name = "hermit-abi"
175 version = "0.1.19"
176 source = "registry+https://github.com/rust-lang/crates.io-index"
177 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
178 dependencies = [
179  "libc",
180 ]
181
182 [[package]]
183 name = "hermit-abi"
184 version = "0.3.1"
185 source = "registry+https://github.com/rust-lang/crates.io-index"
186 checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
187
188 [[package]]
189 name = "ignore"
190 version = "0.4.18"
191 source = "registry+https://github.com/rust-lang/crates.io-index"
192 checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d"
193 dependencies = [
194  "crossbeam-utils",
195  "globset",
196  "lazy_static",
197  "log",
198  "memchr",
199  "regex",
200  "same-file",
201  "thread_local",
202  "walkdir",
203  "winapi-util",
204 ]
205
206 [[package]]
207 name = "include_dir"
208 version = "0.7.3"
209 source = "registry+https://github.com/rust-lang/crates.io-index"
210 checksum = "18762faeff7122e89e0857b02f7ce6fcc0d101d5e9ad2ad7846cc01d61b7f19e"
211 dependencies = [
212  "include_dir_macros",
213 ]
214
215 [[package]]
216 name = "include_dir_macros"
217 version = "0.7.3"
218 source = "registry+https://github.com/rust-lang/crates.io-index"
219 checksum = "b139284b5cf57ecfa712bcc66950bb635b31aff41c188e8a4cfc758eca374a3f"
220 dependencies = [
221  "proc-macro2",
222  "quote",
223 ]
224
225 [[package]]
226 name = "indexmap"
227 version = "1.9.1"
228 source = "registry+https://github.com/rust-lang/crates.io-index"
229 checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
230 dependencies = [
231  "autocfg",
232  "hashbrown",
233 ]
234
235 [[package]]
236 name = "io-lifetimes"
237 version = "1.0.3"
238 source = "registry+https://github.com/rust-lang/crates.io-index"
239 checksum = "46112a93252b123d31a119a8d1a1ac19deac4fac6e0e8b0df58f0d4e5870e63c"
240 dependencies = [
241  "libc",
242  "windows-sys 0.42.0",
243 ]
244
245 [[package]]
246 name = "is-terminal"
247 version = "0.4.3"
248 source = "registry+https://github.com/rust-lang/crates.io-index"
249 checksum = "22e18b0a45d56fe973d6db23972bf5bc46f988a4a2385deac9cc29572f09daef"
250 dependencies = [
251  "hermit-abi 0.3.1",
252  "io-lifetimes",
253  "rustix",
254  "windows-sys 0.45.0",
255 ]
256
257 [[package]]
258 name = "itoa"
259 version = "1.0.3"
260 source = "registry+https://github.com/rust-lang/crates.io-index"
261 checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
262
263 [[package]]
264 name = "lazy_static"
265 version = "1.4.0"
266 source = "registry+https://github.com/rust-lang/crates.io-index"
267 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
268
269 [[package]]
270 name = "libc"
271 version = "0.2.133"
272 source = "registry+https://github.com/rust-lang/crates.io-index"
273 checksum = "c0f80d65747a3e43d1596c7c5492d95d5edddaabd45a7fcdb02b95f644164966"
274
275 [[package]]
276 name = "libtest-mimic"
277 version = "0.6.0"
278 source = "registry+https://github.com/rust-lang/crates.io-index"
279 checksum = "d7b603516767d1ab23d0de09d023e62966c3322f7148297c35cf3d97aa8b37fa"
280 dependencies = [
281  "clap",
282  "termcolor",
283  "threadpool",
284 ]
285
286 [[package]]
287 name = "linux-raw-sys"
288 version = "0.1.3"
289 source = "registry+https://github.com/rust-lang/crates.io-index"
290 checksum = "8f9f08d8963a6c613f4b1a78f4f4a4dbfadf8e6545b2d72861731e4858b8b47f"
291
292 [[package]]
293 name = "log"
294 version = "0.4.17"
295 source = "registry+https://github.com/rust-lang/crates.io-index"
296 checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
297 dependencies = [
298  "cfg-if",
299 ]
300
301 [[package]]
302 name = "memchr"
303 version = "2.5.0"
304 source = "registry+https://github.com/rust-lang/crates.io-index"
305 checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
306
307 [[package]]
308 name = "normalize-line-endings"
309 version = "0.3.0"
310 source = "registry+https://github.com/rust-lang/crates.io-index"
311 checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
312
313 [[package]]
314 name = "num-integer"
315 version = "0.1.45"
316 source = "registry+https://github.com/rust-lang/crates.io-index"
317 checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
318 dependencies = [
319  "autocfg",
320  "num-traits",
321 ]
322
323 [[package]]
324 name = "num-traits"
325 version = "0.2.15"
326 source = "registry+https://github.com/rust-lang/crates.io-index"
327 checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
328 dependencies = [
329  "autocfg",
330 ]
331
332 [[package]]
333 name = "num_cpus"
334 version = "1.13.1"
335 source = "registry+https://github.com/rust-lang/crates.io-index"
336 checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
337 dependencies = [
338  "hermit-abi 0.1.19",
339  "libc",
340 ]
341
342 [[package]]
343 name = "once_cell"
344 version = "1.15.0"
345 source = "registry+https://github.com/rust-lang/crates.io-index"
346 checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
347
348 [[package]]
349 name = "os_str_bytes"
350 version = "6.3.0"
351 source = "registry+https://github.com/rust-lang/crates.io-index"
352 checksum = "9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff"
353
354 [[package]]
355 name = "proc-macro-error"
356 version = "1.0.4"
357 source = "registry+https://github.com/rust-lang/crates.io-index"
358 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
359 dependencies = [
360  "proc-macro-error-attr",
361  "proc-macro2",
362  "quote",
363  "syn",
364  "version_check",
365 ]
366
367 [[package]]
368 name = "proc-macro-error-attr"
369 version = "1.0.4"
370 source = "registry+https://github.com/rust-lang/crates.io-index"
371 checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
372 dependencies = [
373  "proc-macro2",
374  "quote",
375  "version_check",
376 ]
377
378 [[package]]
379 name = "proc-macro2"
380 version = "1.0.47"
381 source = "registry+https://github.com/rust-lang/crates.io-index"
382 checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
383 dependencies = [
384  "unicode-ident",
385 ]
386
387 [[package]]
388 name = "quote"
389 version = "1.0.21"
390 source = "registry+https://github.com/rust-lang/crates.io-index"
391 checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
392 dependencies = [
393  "proc-macro2",
394 ]
395
396 [[package]]
397 name = "regex"
398 version = "1.6.0"
399 source = "registry+https://github.com/rust-lang/crates.io-index"
400 checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
401 dependencies = [
402  "aho-corasick",
403  "memchr",
404  "regex-syntax",
405 ]
406
407 [[package]]
408 name = "regex-syntax"
409 version = "0.6.27"
410 source = "registry+https://github.com/rust-lang/crates.io-index"
411 checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
412
413 [[package]]
414 name = "rustix"
415 version = "0.36.4"
416 source = "registry+https://github.com/rust-lang/crates.io-index"
417 checksum = "cb93e85278e08bb5788653183213d3a60fc242b10cb9be96586f5a73dcb67c23"
418 dependencies = [
419  "bitflags",
420  "errno",
421  "io-lifetimes",
422  "libc",
423  "linux-raw-sys",
424  "windows-sys 0.42.0",
425 ]
426
427 [[package]]
428 name = "ryu"
429 version = "1.0.11"
430 source = "registry+https://github.com/rust-lang/crates.io-index"
431 checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
432
433 [[package]]
434 name = "same-file"
435 version = "1.0.6"
436 source = "registry+https://github.com/rust-lang/crates.io-index"
437 checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
438 dependencies = [
439  "winapi-util",
440 ]
441
442 [[package]]
443 name = "serde"
444 version = "1.0.152"
445 source = "registry+https://github.com/rust-lang/crates.io-index"
446 checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
447 dependencies = [
448  "serde_derive",
449 ]
450
451 [[package]]
452 name = "serde_derive"
453 version = "1.0.152"
454 source = "registry+https://github.com/rust-lang/crates.io-index"
455 checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
456 dependencies = [
457  "proc-macro2",
458  "quote",
459  "syn",
460 ]
461
462 [[package]]
463 name = "serde_json"
464 version = "1.0.93"
465 source = "registry+https://github.com/rust-lang/crates.io-index"
466 checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76"
467 dependencies = [
468  "itoa",
469  "ryu",
470  "serde",
471 ]
472
473 [[package]]
474 name = "serde_spanned"
475 version = "0.6.1"
476 source = "registry+https://github.com/rust-lang/crates.io-index"
477 checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4"
478 dependencies = [
479  "serde",
480 ]
481
482 [[package]]
483 name = "similar"
484 version = "2.2.0"
485 source = "registry+https://github.com/rust-lang/crates.io-index"
486 checksum = "62ac7f900db32bf3fd12e0117dd3dc4da74bc52ebaac97f39668446d89694803"
487
488 [[package]]
489 name = "snapbox"
490 version = "0.4.7"
491 source = "registry+https://github.com/rust-lang/crates.io-index"
492 checksum = "09c20d8ee8713199cfd44148b70e47cb94f3e8dc538d727d31788f49e67b623e"
493 dependencies = [
494  "concolor",
495  "normalize-line-endings",
496  "similar",
497  "snapbox-macros",
498  "yansi",
499 ]
500
501 [[package]]
502 name = "snapbox-macros"
503 version = "0.3.1"
504 source = "registry+https://github.com/rust-lang/crates.io-index"
505 checksum = "485e65c1203eb37244465e857d15a26d3a85a5410648ccb53b18bd44cb3a7336"
506
507 [[package]]
508 name = "strsim"
509 version = "0.10.0"
510 source = "registry+https://github.com/rust-lang/crates.io-index"
511 checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
512
513 [[package]]
514 name = "syn"
515 version = "1.0.105"
516 source = "registry+https://github.com/rust-lang/crates.io-index"
517 checksum = "60b9b43d45702de4c839cb9b51d9f529c5dd26a4aff255b42b1ebc03e88ee908"
518 dependencies = [
519  "proc-macro2",
520  "quote",
521  "unicode-ident",
522 ]
523
524 [[package]]
525 name = "termcolor"
526 version = "1.1.3"
527 source = "registry+https://github.com/rust-lang/crates.io-index"
528 checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
529 dependencies = [
530  "winapi-util",
531 ]
532
533 [[package]]
534 name = "thread_local"
535 version = "1.1.4"
536 source = "registry+https://github.com/rust-lang/crates.io-index"
537 checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
538 dependencies = [
539  "once_cell",
540 ]
541
542 [[package]]
543 name = "threadpool"
544 version = "1.8.1"
545 source = "registry+https://github.com/rust-lang/crates.io-index"
546 checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
547 dependencies = [
548  "num_cpus",
549 ]
550
551 [[package]]
552 name = "toml"
553 version = "0.7.3"
554 dependencies = [
555  "indexmap",
556  "serde",
557  "serde_json",
558  "serde_spanned",
559  "snapbox",
560  "toml-test-harness",
561  "toml_datetime",
562  "toml_edit",
563 ]
564
565 [[package]]
566 name = "toml-test"
567 version = "0.3.4"
568 source = "registry+https://github.com/rust-lang/crates.io-index"
569 checksum = "37351256790aa1dbd6d60f4ff08e55e7f372e292f3e9040d6e077463d9a779c3"
570 dependencies = [
571  "chrono",
572  "serde",
573  "serde_json",
574 ]
575
576 [[package]]
577 name = "toml-test-data"
578 version = "1.3.0"
579 source = "registry+https://github.com/rust-lang/crates.io-index"
580 checksum = "93f351b6d6005ee802b0d4a53ca1cdf05636f441df4d299e62cba57f1da52646"
581 dependencies = [
582  "include_dir",
583 ]
584
585 [[package]]
586 name = "toml-test-harness"
587 version = "0.4.3"
588 source = "registry+https://github.com/rust-lang/crates.io-index"
589 checksum = "0e00fda5710922fe6b3005bf6a5050c303d6f9625249c37b7386e8818f4af675"
590 dependencies = [
591  "ignore",
592  "libtest-mimic",
593  "toml-test",
594  "toml-test-data",
595 ]
596
597 [[package]]
598 name = "toml_datetime"
599 version = "0.6.1"
600 source = "registry+https://github.com/rust-lang/crates.io-index"
601 checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622"
602 dependencies = [
603  "serde",
604 ]
605
606 [[package]]
607 name = "toml_edit"
608 version = "0.19.6"
609 source = "registry+https://github.com/rust-lang/crates.io-index"
610 checksum = "08de71aa0d6e348f070457f85af8bd566e2bc452156a423ddf22861b3a953fae"
611 dependencies = [
612  "indexmap",
613  "serde",
614  "serde_spanned",
615  "toml_datetime",
616  "winnow",
617 ]
618
619 [[package]]
620 name = "unicode-ident"
621 version = "1.0.4"
622 source = "registry+https://github.com/rust-lang/crates.io-index"
623 checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd"
624
625 [[package]]
626 name = "version_check"
627 version = "0.9.4"
628 source = "registry+https://github.com/rust-lang/crates.io-index"
629 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
630
631 [[package]]
632 name = "walkdir"
633 version = "2.3.2"
634 source = "registry+https://github.com/rust-lang/crates.io-index"
635 checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
636 dependencies = [
637  "same-file",
638  "winapi",
639  "winapi-util",
640 ]
641
642 [[package]]
643 name = "winapi"
644 version = "0.3.9"
645 source = "registry+https://github.com/rust-lang/crates.io-index"
646 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
647 dependencies = [
648  "winapi-i686-pc-windows-gnu",
649  "winapi-x86_64-pc-windows-gnu",
650 ]
651
652 [[package]]
653 name = "winapi-i686-pc-windows-gnu"
654 version = "0.4.0"
655 source = "registry+https://github.com/rust-lang/crates.io-index"
656 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
657
658 [[package]]
659 name = "winapi-util"
660 version = "0.1.5"
661 source = "registry+https://github.com/rust-lang/crates.io-index"
662 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
663 dependencies = [
664  "winapi",
665 ]
666
667 [[package]]
668 name = "winapi-x86_64-pc-windows-gnu"
669 version = "0.4.0"
670 source = "registry+https://github.com/rust-lang/crates.io-index"
671 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
672
673 [[package]]
674 name = "windows-sys"
675 version = "0.42.0"
676 source = "registry+https://github.com/rust-lang/crates.io-index"
677 checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
678 dependencies = [
679  "windows_aarch64_gnullvm",
680  "windows_aarch64_msvc",
681  "windows_i686_gnu",
682  "windows_i686_msvc",
683  "windows_x86_64_gnu",
684  "windows_x86_64_gnullvm",
685  "windows_x86_64_msvc",
686 ]
687
688 [[package]]
689 name = "windows-sys"
690 version = "0.45.0"
691 source = "registry+https://github.com/rust-lang/crates.io-index"
692 checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
693 dependencies = [
694  "windows-targets",
695 ]
696
697 [[package]]
698 name = "windows-targets"
699 version = "0.42.1"
700 source = "registry+https://github.com/rust-lang/crates.io-index"
701 checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
702 dependencies = [
703  "windows_aarch64_gnullvm",
704  "windows_aarch64_msvc",
705  "windows_i686_gnu",
706  "windows_i686_msvc",
707  "windows_x86_64_gnu",
708  "windows_x86_64_gnullvm",
709  "windows_x86_64_msvc",
710 ]
711
712 [[package]]
713 name = "windows_aarch64_gnullvm"
714 version = "0.42.1"
715 source = "registry+https://github.com/rust-lang/crates.io-index"
716 checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
717
718 [[package]]
719 name = "windows_aarch64_msvc"
720 version = "0.42.1"
721 source = "registry+https://github.com/rust-lang/crates.io-index"
722 checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
723
724 [[package]]
725 name = "windows_i686_gnu"
726 version = "0.42.1"
727 source = "registry+https://github.com/rust-lang/crates.io-index"
728 checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
729
730 [[package]]
731 name = "windows_i686_msvc"
732 version = "0.42.1"
733 source = "registry+https://github.com/rust-lang/crates.io-index"
734 checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
735
736 [[package]]
737 name = "windows_x86_64_gnu"
738 version = "0.42.1"
739 source = "registry+https://github.com/rust-lang/crates.io-index"
740 checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
741
742 [[package]]
743 name = "windows_x86_64_gnullvm"
744 version = "0.42.1"
745 source = "registry+https://github.com/rust-lang/crates.io-index"
746 checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
747
748 [[package]]
749 name = "windows_x86_64_msvc"
750 version = "0.42.1"
751 source = "registry+https://github.com/rust-lang/crates.io-index"
752 checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
753
754 [[package]]
755 name = "winnow"
756 version = "0.3.0"
757 source = "registry+https://github.com/rust-lang/crates.io-index"
758 checksum = "efdd927d1a3d5d98abcfc4cf8627371862ee6abfe52a988050621c50c66b4493"
759 dependencies = [
760  "memchr",
761 ]
762
763 [[package]]
764 name = "yansi"
765 version = "0.5.1"
766 source = "registry+https://github.com/rust-lang/crates.io-index"
767 checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"