339237c316115d9f23ff5bf651cbee857cd7c250
[pspp] / rust / 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 = "adler"
7 version = "1.0.2"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
10
11 [[package]]
12 name = "anyhow"
13 version = "1.0.69"
14 source = "registry+https://github.com/rust-lang/crates.io-index"
15 checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800"
16
17 [[package]]
18 name = "atty"
19 version = "0.2.14"
20 source = "registry+https://github.com/rust-lang/crates.io-index"
21 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
22 dependencies = [
23  "hermit-abi 0.1.19",
24  "libc",
25  "winapi",
26 ]
27
28 [[package]]
29 name = "autocfg"
30 version = "1.1.0"
31 source = "registry+https://github.com/rust-lang/crates.io-index"
32 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
33
34 [[package]]
35 name = "bitflags"
36 version = "1.3.2"
37 source = "registry+https://github.com/rust-lang/crates.io-index"
38 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
39
40 [[package]]
41 name = "cc"
42 version = "1.0.79"
43 source = "registry+https://github.com/rust-lang/crates.io-index"
44 checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
45
46 [[package]]
47 name = "cfg-if"
48 version = "1.0.0"
49 source = "registry+https://github.com/rust-lang/crates.io-index"
50 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
51
52 [[package]]
53 name = "clap"
54 version = "4.1.7"
55 source = "registry+https://github.com/rust-lang/crates.io-index"
56 checksum = "2f3061d6db6d8fcbbd4b05e057f2acace52e64e96b498c08c2d7a4e65addd340"
57 dependencies = [
58  "bitflags",
59  "clap_derive",
60  "clap_lex",
61  "is-terminal",
62  "once_cell",
63  "strsim",
64  "termcolor 1.2.0",
65  "terminal_size",
66 ]
67
68 [[package]]
69 name = "clap_derive"
70 version = "4.1.7"
71 source = "registry+https://github.com/rust-lang/crates.io-index"
72 checksum = "34d122164198950ba84a918270a3bb3f7ededd25e15f7451673d986f55bd2667"
73 dependencies = [
74  "heck",
75  "proc-macro-error",
76  "proc-macro2",
77  "quote",
78  "syn 1.0.109",
79 ]
80
81 [[package]]
82 name = "clap_lex"
83 version = "0.3.2"
84 source = "registry+https://github.com/rust-lang/crates.io-index"
85 checksum = "350b9cf31731f9957399229e9b2adc51eeabdfbe9d71d9a0552275fd12710d09"
86 dependencies = [
87  "os_str_bytes",
88 ]
89
90 [[package]]
91 name = "crc32fast"
92 version = "1.3.2"
93 source = "registry+https://github.com/rust-lang/crates.io-index"
94 checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
95 dependencies = [
96  "cfg-if",
97 ]
98
99 [[package]]
100 name = "errno"
101 version = "0.2.8"
102 source = "registry+https://github.com/rust-lang/crates.io-index"
103 checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
104 dependencies = [
105  "errno-dragonfly",
106  "libc",
107  "winapi",
108 ]
109
110 [[package]]
111 name = "errno"
112 version = "0.3.1"
113 source = "registry+https://github.com/rust-lang/crates.io-index"
114 checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
115 dependencies = [
116  "errno-dragonfly",
117  "libc",
118  "windows-sys 0.48.0",
119 ]
120
121 [[package]]
122 name = "errno-dragonfly"
123 version = "0.1.2"
124 source = "registry+https://github.com/rust-lang/crates.io-index"
125 checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
126 dependencies = [
127  "cc",
128  "libc",
129 ]
130
131 [[package]]
132 name = "flate2"
133 version = "1.0.26"
134 source = "registry+https://github.com/rust-lang/crates.io-index"
135 checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
136 dependencies = [
137  "crc32fast",
138  "miniz_oxide",
139 ]
140
141 [[package]]
142 name = "float_next_after"
143 version = "1.0.0"
144 source = "registry+https://github.com/rust-lang/crates.io-index"
145 checksum = "8bf7cc16383c4b8d58b9905a8509f02926ce3058053c056376248d958c9df1e8"
146
147 [[package]]
148 name = "heck"
149 version = "0.4.1"
150 source = "registry+https://github.com/rust-lang/crates.io-index"
151 checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
152
153 [[package]]
154 name = "hermit-abi"
155 version = "0.1.19"
156 source = "registry+https://github.com/rust-lang/crates.io-index"
157 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
158 dependencies = [
159  "libc",
160 ]
161
162 [[package]]
163 name = "hermit-abi"
164 version = "0.3.1"
165 source = "registry+https://github.com/rust-lang/crates.io-index"
166 checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
167
168 [[package]]
169 name = "hexplay"
170 version = "0.2.1"
171 source = "registry+https://github.com/rust-lang/crates.io-index"
172 checksum = "0962bea6731e28b5a443ba4aa00fe3e4fe7555dadf12012435efb738eeac5898"
173 dependencies = [
174  "atty",
175  "termcolor 0.3.6",
176 ]
177
178 [[package]]
179 name = "io-lifetimes"
180 version = "1.0.5"
181 source = "registry+https://github.com/rust-lang/crates.io-index"
182 checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3"
183 dependencies = [
184  "libc",
185  "windows-sys 0.45.0",
186 ]
187
188 [[package]]
189 name = "is-terminal"
190 version = "0.4.4"
191 source = "registry+https://github.com/rust-lang/crates.io-index"
192 checksum = "21b6b32576413a8e69b90e952e4a026476040d81017b80445deda5f2d3921857"
193 dependencies = [
194  "hermit-abi 0.3.1",
195  "io-lifetimes",
196  "rustix 0.36.8",
197  "windows-sys 0.45.0",
198 ]
199
200 [[package]]
201 name = "libc"
202 version = "0.2.139"
203 source = "registry+https://github.com/rust-lang/crates.io-index"
204 checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
205
206 [[package]]
207 name = "linux-raw-sys"
208 version = "0.1.4"
209 source = "registry+https://github.com/rust-lang/crates.io-index"
210 checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
211
212 [[package]]
213 name = "linux-raw-sys"
214 version = "0.3.8"
215 source = "registry+https://github.com/rust-lang/crates.io-index"
216 checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
217
218 [[package]]
219 name = "miniz_oxide"
220 version = "0.7.1"
221 source = "registry+https://github.com/rust-lang/crates.io-index"
222 checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
223 dependencies = [
224  "adler",
225 ]
226
227 [[package]]
228 name = "num"
229 version = "0.4.0"
230 source = "registry+https://github.com/rust-lang/crates.io-index"
231 checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606"
232 dependencies = [
233  "num-bigint",
234  "num-complex",
235  "num-integer",
236  "num-iter",
237  "num-rational",
238  "num-traits",
239 ]
240
241 [[package]]
242 name = "num-bigint"
243 version = "0.4.3"
244 source = "registry+https://github.com/rust-lang/crates.io-index"
245 checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
246 dependencies = [
247  "autocfg",
248  "num-integer",
249  "num-traits",
250 ]
251
252 [[package]]
253 name = "num-complex"
254 version = "0.4.3"
255 source = "registry+https://github.com/rust-lang/crates.io-index"
256 checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
257 dependencies = [
258  "num-traits",
259 ]
260
261 [[package]]
262 name = "num-derive"
263 version = "0.4.0"
264 source = "registry+https://github.com/rust-lang/crates.io-index"
265 checksum = "9e6a0fd4f737c707bd9086cc16c925f294943eb62eb71499e9fd4cf71f8b9f4e"
266 dependencies = [
267  "proc-macro2",
268  "quote",
269  "syn 2.0.27",
270 ]
271
272 [[package]]
273 name = "num-integer"
274 version = "0.1.45"
275 source = "registry+https://github.com/rust-lang/crates.io-index"
276 checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
277 dependencies = [
278  "autocfg",
279  "num-traits",
280 ]
281
282 [[package]]
283 name = "num-iter"
284 version = "0.1.43"
285 source = "registry+https://github.com/rust-lang/crates.io-index"
286 checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
287 dependencies = [
288  "autocfg",
289  "num-integer",
290  "num-traits",
291 ]
292
293 [[package]]
294 name = "num-rational"
295 version = "0.4.1"
296 source = "registry+https://github.com/rust-lang/crates.io-index"
297 checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
298 dependencies = [
299  "autocfg",
300  "num-bigint",
301  "num-integer",
302  "num-traits",
303 ]
304
305 [[package]]
306 name = "num-traits"
307 version = "0.2.16"
308 source = "registry+https://github.com/rust-lang/crates.io-index"
309 checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
310 dependencies = [
311  "autocfg",
312 ]
313
314 [[package]]
315 name = "once_cell"
316 version = "1.17.1"
317 source = "registry+https://github.com/rust-lang/crates.io-index"
318 checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
319
320 [[package]]
321 name = "ordered-float"
322 version = "3.7.0"
323 source = "registry+https://github.com/rust-lang/crates.io-index"
324 checksum = "2fc2dbde8f8a79f2102cc474ceb0ad68e3b80b85289ea62389b60e66777e4213"
325 dependencies = [
326  "num-traits",
327 ]
328
329 [[package]]
330 name = "os_str_bytes"
331 version = "6.4.1"
332 source = "registry+https://github.com/rust-lang/crates.io-index"
333 checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
334
335 [[package]]
336 name = "proc-macro-error"
337 version = "1.0.4"
338 source = "registry+https://github.com/rust-lang/crates.io-index"
339 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
340 dependencies = [
341  "proc-macro-error-attr",
342  "proc-macro2",
343  "quote",
344  "syn 1.0.109",
345  "version_check",
346 ]
347
348 [[package]]
349 name = "proc-macro-error-attr"
350 version = "1.0.4"
351 source = "registry+https://github.com/rust-lang/crates.io-index"
352 checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
353 dependencies = [
354  "proc-macro2",
355  "quote",
356  "version_check",
357 ]
358
359 [[package]]
360 name = "proc-macro2"
361 version = "1.0.66"
362 source = "registry+https://github.com/rust-lang/crates.io-index"
363 checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
364 dependencies = [
365  "unicode-ident",
366 ]
367
368 [[package]]
369 name = "pspp"
370 version = "1.0.0"
371 dependencies = [
372  "anyhow",
373  "clap",
374  "flate2",
375  "float_next_after",
376  "hexplay",
377  "num",
378  "num-derive",
379  "num-traits",
380  "ordered-float",
381  "thiserror",
382 ]
383
384 [[package]]
385 name = "quote"
386 version = "1.0.32"
387 source = "registry+https://github.com/rust-lang/crates.io-index"
388 checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965"
389 dependencies = [
390  "proc-macro2",
391 ]
392
393 [[package]]
394 name = "rustix"
395 version = "0.36.8"
396 source = "registry+https://github.com/rust-lang/crates.io-index"
397 checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644"
398 dependencies = [
399  "bitflags",
400  "errno 0.2.8",
401  "io-lifetimes",
402  "libc",
403  "linux-raw-sys 0.1.4",
404  "windows-sys 0.45.0",
405 ]
406
407 [[package]]
408 name = "rustix"
409 version = "0.37.3"
410 source = "registry+https://github.com/rust-lang/crates.io-index"
411 checksum = "62b24138615de35e32031d041a09032ef3487a616d901ca4db224e7d557efae2"
412 dependencies = [
413  "bitflags",
414  "errno 0.3.1",
415  "io-lifetimes",
416  "libc",
417  "linux-raw-sys 0.3.8",
418  "windows-sys 0.45.0",
419 ]
420
421 [[package]]
422 name = "strsim"
423 version = "0.10.0"
424 source = "registry+https://github.com/rust-lang/crates.io-index"
425 checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
426
427 [[package]]
428 name = "syn"
429 version = "1.0.109"
430 source = "registry+https://github.com/rust-lang/crates.io-index"
431 checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
432 dependencies = [
433  "proc-macro2",
434  "quote",
435  "unicode-ident",
436 ]
437
438 [[package]]
439 name = "syn"
440 version = "2.0.27"
441 source = "registry+https://github.com/rust-lang/crates.io-index"
442 checksum = "b60f673f44a8255b9c8c657daf66a596d435f2da81a555b06dc644d080ba45e0"
443 dependencies = [
444  "proc-macro2",
445  "quote",
446  "unicode-ident",
447 ]
448
449 [[package]]
450 name = "termcolor"
451 version = "0.3.6"
452 source = "registry+https://github.com/rust-lang/crates.io-index"
453 checksum = "adc4587ead41bf016f11af03e55a624c06568b5a19db4e90fde573d805074f83"
454 dependencies = [
455  "wincolor",
456 ]
457
458 [[package]]
459 name = "termcolor"
460 version = "1.2.0"
461 source = "registry+https://github.com/rust-lang/crates.io-index"
462 checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
463 dependencies = [
464  "winapi-util",
465 ]
466
467 [[package]]
468 name = "terminal_size"
469 version = "0.2.6"
470 source = "registry+https://github.com/rust-lang/crates.io-index"
471 checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237"
472 dependencies = [
473  "rustix 0.37.3",
474  "windows-sys 0.48.0",
475 ]
476
477 [[package]]
478 name = "thiserror"
479 version = "1.0.39"
480 source = "registry+https://github.com/rust-lang/crates.io-index"
481 checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c"
482 dependencies = [
483  "thiserror-impl",
484 ]
485
486 [[package]]
487 name = "thiserror-impl"
488 version = "1.0.39"
489 source = "registry+https://github.com/rust-lang/crates.io-index"
490 checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e"
491 dependencies = [
492  "proc-macro2",
493  "quote",
494  "syn 1.0.109",
495 ]
496
497 [[package]]
498 name = "unicode-ident"
499 version = "1.0.6"
500 source = "registry+https://github.com/rust-lang/crates.io-index"
501 checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
502
503 [[package]]
504 name = "version_check"
505 version = "0.9.4"
506 source = "registry+https://github.com/rust-lang/crates.io-index"
507 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
508
509 [[package]]
510 name = "winapi"
511 version = "0.3.9"
512 source = "registry+https://github.com/rust-lang/crates.io-index"
513 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
514 dependencies = [
515  "winapi-i686-pc-windows-gnu",
516  "winapi-x86_64-pc-windows-gnu",
517 ]
518
519 [[package]]
520 name = "winapi-i686-pc-windows-gnu"
521 version = "0.4.0"
522 source = "registry+https://github.com/rust-lang/crates.io-index"
523 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
524
525 [[package]]
526 name = "winapi-util"
527 version = "0.1.5"
528 source = "registry+https://github.com/rust-lang/crates.io-index"
529 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
530 dependencies = [
531  "winapi",
532 ]
533
534 [[package]]
535 name = "winapi-x86_64-pc-windows-gnu"
536 version = "0.4.0"
537 source = "registry+https://github.com/rust-lang/crates.io-index"
538 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
539
540 [[package]]
541 name = "wincolor"
542 version = "0.1.6"
543 source = "registry+https://github.com/rust-lang/crates.io-index"
544 checksum = "eeb06499a3a4d44302791052df005d5232b927ed1a9658146d842165c4de7767"
545 dependencies = [
546  "winapi",
547 ]
548
549 [[package]]
550 name = "windows-sys"
551 version = "0.45.0"
552 source = "registry+https://github.com/rust-lang/crates.io-index"
553 checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
554 dependencies = [
555  "windows-targets 0.42.1",
556 ]
557
558 [[package]]
559 name = "windows-sys"
560 version = "0.48.0"
561 source = "registry+https://github.com/rust-lang/crates.io-index"
562 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
563 dependencies = [
564  "windows-targets 0.48.1",
565 ]
566
567 [[package]]
568 name = "windows-targets"
569 version = "0.42.1"
570 source = "registry+https://github.com/rust-lang/crates.io-index"
571 checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
572 dependencies = [
573  "windows_aarch64_gnullvm 0.42.1",
574  "windows_aarch64_msvc 0.42.1",
575  "windows_i686_gnu 0.42.1",
576  "windows_i686_msvc 0.42.1",
577  "windows_x86_64_gnu 0.42.1",
578  "windows_x86_64_gnullvm 0.42.1",
579  "windows_x86_64_msvc 0.42.1",
580 ]
581
582 [[package]]
583 name = "windows-targets"
584 version = "0.48.1"
585 source = "registry+https://github.com/rust-lang/crates.io-index"
586 checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
587 dependencies = [
588  "windows_aarch64_gnullvm 0.48.0",
589  "windows_aarch64_msvc 0.48.0",
590  "windows_i686_gnu 0.48.0",
591  "windows_i686_msvc 0.48.0",
592  "windows_x86_64_gnu 0.48.0",
593  "windows_x86_64_gnullvm 0.48.0",
594  "windows_x86_64_msvc 0.48.0",
595 ]
596
597 [[package]]
598 name = "windows_aarch64_gnullvm"
599 version = "0.42.1"
600 source = "registry+https://github.com/rust-lang/crates.io-index"
601 checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
602
603 [[package]]
604 name = "windows_aarch64_gnullvm"
605 version = "0.48.0"
606 source = "registry+https://github.com/rust-lang/crates.io-index"
607 checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
608
609 [[package]]
610 name = "windows_aarch64_msvc"
611 version = "0.42.1"
612 source = "registry+https://github.com/rust-lang/crates.io-index"
613 checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
614
615 [[package]]
616 name = "windows_aarch64_msvc"
617 version = "0.48.0"
618 source = "registry+https://github.com/rust-lang/crates.io-index"
619 checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
620
621 [[package]]
622 name = "windows_i686_gnu"
623 version = "0.42.1"
624 source = "registry+https://github.com/rust-lang/crates.io-index"
625 checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
626
627 [[package]]
628 name = "windows_i686_gnu"
629 version = "0.48.0"
630 source = "registry+https://github.com/rust-lang/crates.io-index"
631 checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
632
633 [[package]]
634 name = "windows_i686_msvc"
635 version = "0.42.1"
636 source = "registry+https://github.com/rust-lang/crates.io-index"
637 checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
638
639 [[package]]
640 name = "windows_i686_msvc"
641 version = "0.48.0"
642 source = "registry+https://github.com/rust-lang/crates.io-index"
643 checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
644
645 [[package]]
646 name = "windows_x86_64_gnu"
647 version = "0.42.1"
648 source = "registry+https://github.com/rust-lang/crates.io-index"
649 checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
650
651 [[package]]
652 name = "windows_x86_64_gnu"
653 version = "0.48.0"
654 source = "registry+https://github.com/rust-lang/crates.io-index"
655 checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
656
657 [[package]]
658 name = "windows_x86_64_gnullvm"
659 version = "0.42.1"
660 source = "registry+https://github.com/rust-lang/crates.io-index"
661 checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
662
663 [[package]]
664 name = "windows_x86_64_gnullvm"
665 version = "0.48.0"
666 source = "registry+https://github.com/rust-lang/crates.io-index"
667 checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
668
669 [[package]]
670 name = "windows_x86_64_msvc"
671 version = "0.42.1"
672 source = "registry+https://github.com/rust-lang/crates.io-index"
673 checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
674
675 [[package]]
676 name = "windows_x86_64_msvc"
677 version = "0.48.0"
678 source = "registry+https://github.com/rust-lang/crates.io-index"
679 checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"