work
[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 = "lazy_static"
202 version = "1.4.0"
203 source = "registry+https://github.com/rust-lang/crates.io-index"
204 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
205
206 [[package]]
207 name = "libc"
208 version = "0.2.139"
209 source = "registry+https://github.com/rust-lang/crates.io-index"
210 checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
211
212 [[package]]
213 name = "linux-raw-sys"
214 version = "0.1.4"
215 source = "registry+https://github.com/rust-lang/crates.io-index"
216 checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
217
218 [[package]]
219 name = "linux-raw-sys"
220 version = "0.3.8"
221 source = "registry+https://github.com/rust-lang/crates.io-index"
222 checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
223
224 [[package]]
225 name = "miniz_oxide"
226 version = "0.7.1"
227 source = "registry+https://github.com/rust-lang/crates.io-index"
228 checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
229 dependencies = [
230  "adler",
231 ]
232
233 [[package]]
234 name = "num"
235 version = "0.4.0"
236 source = "registry+https://github.com/rust-lang/crates.io-index"
237 checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606"
238 dependencies = [
239  "num-bigint",
240  "num-complex",
241  "num-integer",
242  "num-iter",
243  "num-rational",
244  "num-traits",
245 ]
246
247 [[package]]
248 name = "num-bigint"
249 version = "0.4.3"
250 source = "registry+https://github.com/rust-lang/crates.io-index"
251 checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
252 dependencies = [
253  "autocfg",
254  "num-integer",
255  "num-traits",
256 ]
257
258 [[package]]
259 name = "num-complex"
260 version = "0.4.3"
261 source = "registry+https://github.com/rust-lang/crates.io-index"
262 checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
263 dependencies = [
264  "num-traits",
265 ]
266
267 [[package]]
268 name = "num-derive"
269 version = "0.4.0"
270 source = "registry+https://github.com/rust-lang/crates.io-index"
271 checksum = "9e6a0fd4f737c707bd9086cc16c925f294943eb62eb71499e9fd4cf71f8b9f4e"
272 dependencies = [
273  "proc-macro2",
274  "quote",
275  "syn 2.0.27",
276 ]
277
278 [[package]]
279 name = "num-integer"
280 version = "0.1.45"
281 source = "registry+https://github.com/rust-lang/crates.io-index"
282 checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
283 dependencies = [
284  "autocfg",
285  "num-traits",
286 ]
287
288 [[package]]
289 name = "num-iter"
290 version = "0.1.43"
291 source = "registry+https://github.com/rust-lang/crates.io-index"
292 checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
293 dependencies = [
294  "autocfg",
295  "num-integer",
296  "num-traits",
297 ]
298
299 [[package]]
300 name = "num-rational"
301 version = "0.4.1"
302 source = "registry+https://github.com/rust-lang/crates.io-index"
303 checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
304 dependencies = [
305  "autocfg",
306  "num-bigint",
307  "num-integer",
308  "num-traits",
309 ]
310
311 [[package]]
312 name = "num-traits"
313 version = "0.2.16"
314 source = "registry+https://github.com/rust-lang/crates.io-index"
315 checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
316 dependencies = [
317  "autocfg",
318 ]
319
320 [[package]]
321 name = "once_cell"
322 version = "1.17.1"
323 source = "registry+https://github.com/rust-lang/crates.io-index"
324 checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
325
326 [[package]]
327 name = "ordered-float"
328 version = "3.7.0"
329 source = "registry+https://github.com/rust-lang/crates.io-index"
330 checksum = "2fc2dbde8f8a79f2102cc474ceb0ad68e3b80b85289ea62389b60e66777e4213"
331 dependencies = [
332  "num-traits",
333 ]
334
335 [[package]]
336 name = "os_str_bytes"
337 version = "6.4.1"
338 source = "registry+https://github.com/rust-lang/crates.io-index"
339 checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
340
341 [[package]]
342 name = "proc-macro-error"
343 version = "1.0.4"
344 source = "registry+https://github.com/rust-lang/crates.io-index"
345 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
346 dependencies = [
347  "proc-macro-error-attr",
348  "proc-macro2",
349  "quote",
350  "syn 1.0.109",
351  "version_check",
352 ]
353
354 [[package]]
355 name = "proc-macro-error-attr"
356 version = "1.0.4"
357 source = "registry+https://github.com/rust-lang/crates.io-index"
358 checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
359 dependencies = [
360  "proc-macro2",
361  "quote",
362  "version_check",
363 ]
364
365 [[package]]
366 name = "proc-macro2"
367 version = "1.0.66"
368 source = "registry+https://github.com/rust-lang/crates.io-index"
369 checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
370 dependencies = [
371  "unicode-ident",
372 ]
373
374 [[package]]
375 name = "pspp"
376 version = "1.0.0"
377 dependencies = [
378  "anyhow",
379  "clap",
380  "flate2",
381  "float_next_after",
382  "hexplay",
383  "lazy_static",
384  "num",
385  "num-derive",
386  "num-traits",
387  "ordered-float",
388  "thiserror",
389 ]
390
391 [[package]]
392 name = "quote"
393 version = "1.0.32"
394 source = "registry+https://github.com/rust-lang/crates.io-index"
395 checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965"
396 dependencies = [
397  "proc-macro2",
398 ]
399
400 [[package]]
401 name = "rustix"
402 version = "0.36.8"
403 source = "registry+https://github.com/rust-lang/crates.io-index"
404 checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644"
405 dependencies = [
406  "bitflags",
407  "errno 0.2.8",
408  "io-lifetimes",
409  "libc",
410  "linux-raw-sys 0.1.4",
411  "windows-sys 0.45.0",
412 ]
413
414 [[package]]
415 name = "rustix"
416 version = "0.37.3"
417 source = "registry+https://github.com/rust-lang/crates.io-index"
418 checksum = "62b24138615de35e32031d041a09032ef3487a616d901ca4db224e7d557efae2"
419 dependencies = [
420  "bitflags",
421  "errno 0.3.1",
422  "io-lifetimes",
423  "libc",
424  "linux-raw-sys 0.3.8",
425  "windows-sys 0.45.0",
426 ]
427
428 [[package]]
429 name = "strsim"
430 version = "0.10.0"
431 source = "registry+https://github.com/rust-lang/crates.io-index"
432 checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
433
434 [[package]]
435 name = "syn"
436 version = "1.0.109"
437 source = "registry+https://github.com/rust-lang/crates.io-index"
438 checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
439 dependencies = [
440  "proc-macro2",
441  "quote",
442  "unicode-ident",
443 ]
444
445 [[package]]
446 name = "syn"
447 version = "2.0.27"
448 source = "registry+https://github.com/rust-lang/crates.io-index"
449 checksum = "b60f673f44a8255b9c8c657daf66a596d435f2da81a555b06dc644d080ba45e0"
450 dependencies = [
451  "proc-macro2",
452  "quote",
453  "unicode-ident",
454 ]
455
456 [[package]]
457 name = "termcolor"
458 version = "0.3.6"
459 source = "registry+https://github.com/rust-lang/crates.io-index"
460 checksum = "adc4587ead41bf016f11af03e55a624c06568b5a19db4e90fde573d805074f83"
461 dependencies = [
462  "wincolor",
463 ]
464
465 [[package]]
466 name = "termcolor"
467 version = "1.2.0"
468 source = "registry+https://github.com/rust-lang/crates.io-index"
469 checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
470 dependencies = [
471  "winapi-util",
472 ]
473
474 [[package]]
475 name = "terminal_size"
476 version = "0.2.6"
477 source = "registry+https://github.com/rust-lang/crates.io-index"
478 checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237"
479 dependencies = [
480  "rustix 0.37.3",
481  "windows-sys 0.48.0",
482 ]
483
484 [[package]]
485 name = "thiserror"
486 version = "1.0.39"
487 source = "registry+https://github.com/rust-lang/crates.io-index"
488 checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c"
489 dependencies = [
490  "thiserror-impl",
491 ]
492
493 [[package]]
494 name = "thiserror-impl"
495 version = "1.0.39"
496 source = "registry+https://github.com/rust-lang/crates.io-index"
497 checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e"
498 dependencies = [
499  "proc-macro2",
500  "quote",
501  "syn 1.0.109",
502 ]
503
504 [[package]]
505 name = "unicode-ident"
506 version = "1.0.6"
507 source = "registry+https://github.com/rust-lang/crates.io-index"
508 checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
509
510 [[package]]
511 name = "version_check"
512 version = "0.9.4"
513 source = "registry+https://github.com/rust-lang/crates.io-index"
514 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
515
516 [[package]]
517 name = "winapi"
518 version = "0.3.9"
519 source = "registry+https://github.com/rust-lang/crates.io-index"
520 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
521 dependencies = [
522  "winapi-i686-pc-windows-gnu",
523  "winapi-x86_64-pc-windows-gnu",
524 ]
525
526 [[package]]
527 name = "winapi-i686-pc-windows-gnu"
528 version = "0.4.0"
529 source = "registry+https://github.com/rust-lang/crates.io-index"
530 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
531
532 [[package]]
533 name = "winapi-util"
534 version = "0.1.5"
535 source = "registry+https://github.com/rust-lang/crates.io-index"
536 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
537 dependencies = [
538  "winapi",
539 ]
540
541 [[package]]
542 name = "winapi-x86_64-pc-windows-gnu"
543 version = "0.4.0"
544 source = "registry+https://github.com/rust-lang/crates.io-index"
545 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
546
547 [[package]]
548 name = "wincolor"
549 version = "0.1.6"
550 source = "registry+https://github.com/rust-lang/crates.io-index"
551 checksum = "eeb06499a3a4d44302791052df005d5232b927ed1a9658146d842165c4de7767"
552 dependencies = [
553  "winapi",
554 ]
555
556 [[package]]
557 name = "windows-sys"
558 version = "0.45.0"
559 source = "registry+https://github.com/rust-lang/crates.io-index"
560 checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
561 dependencies = [
562  "windows-targets 0.42.1",
563 ]
564
565 [[package]]
566 name = "windows-sys"
567 version = "0.48.0"
568 source = "registry+https://github.com/rust-lang/crates.io-index"
569 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
570 dependencies = [
571  "windows-targets 0.48.1",
572 ]
573
574 [[package]]
575 name = "windows-targets"
576 version = "0.42.1"
577 source = "registry+https://github.com/rust-lang/crates.io-index"
578 checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
579 dependencies = [
580  "windows_aarch64_gnullvm 0.42.1",
581  "windows_aarch64_msvc 0.42.1",
582  "windows_i686_gnu 0.42.1",
583  "windows_i686_msvc 0.42.1",
584  "windows_x86_64_gnu 0.42.1",
585  "windows_x86_64_gnullvm 0.42.1",
586  "windows_x86_64_msvc 0.42.1",
587 ]
588
589 [[package]]
590 name = "windows-targets"
591 version = "0.48.1"
592 source = "registry+https://github.com/rust-lang/crates.io-index"
593 checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
594 dependencies = [
595  "windows_aarch64_gnullvm 0.48.0",
596  "windows_aarch64_msvc 0.48.0",
597  "windows_i686_gnu 0.48.0",
598  "windows_i686_msvc 0.48.0",
599  "windows_x86_64_gnu 0.48.0",
600  "windows_x86_64_gnullvm 0.48.0",
601  "windows_x86_64_msvc 0.48.0",
602 ]
603
604 [[package]]
605 name = "windows_aarch64_gnullvm"
606 version = "0.42.1"
607 source = "registry+https://github.com/rust-lang/crates.io-index"
608 checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
609
610 [[package]]
611 name = "windows_aarch64_gnullvm"
612 version = "0.48.0"
613 source = "registry+https://github.com/rust-lang/crates.io-index"
614 checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
615
616 [[package]]
617 name = "windows_aarch64_msvc"
618 version = "0.42.1"
619 source = "registry+https://github.com/rust-lang/crates.io-index"
620 checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
621
622 [[package]]
623 name = "windows_aarch64_msvc"
624 version = "0.48.0"
625 source = "registry+https://github.com/rust-lang/crates.io-index"
626 checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
627
628 [[package]]
629 name = "windows_i686_gnu"
630 version = "0.42.1"
631 source = "registry+https://github.com/rust-lang/crates.io-index"
632 checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
633
634 [[package]]
635 name = "windows_i686_gnu"
636 version = "0.48.0"
637 source = "registry+https://github.com/rust-lang/crates.io-index"
638 checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
639
640 [[package]]
641 name = "windows_i686_msvc"
642 version = "0.42.1"
643 source = "registry+https://github.com/rust-lang/crates.io-index"
644 checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
645
646 [[package]]
647 name = "windows_i686_msvc"
648 version = "0.48.0"
649 source = "registry+https://github.com/rust-lang/crates.io-index"
650 checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
651
652 [[package]]
653 name = "windows_x86_64_gnu"
654 version = "0.42.1"
655 source = "registry+https://github.com/rust-lang/crates.io-index"
656 checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
657
658 [[package]]
659 name = "windows_x86_64_gnu"
660 version = "0.48.0"
661 source = "registry+https://github.com/rust-lang/crates.io-index"
662 checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
663
664 [[package]]
665 name = "windows_x86_64_gnullvm"
666 version = "0.42.1"
667 source = "registry+https://github.com/rust-lang/crates.io-index"
668 checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
669
670 [[package]]
671 name = "windows_x86_64_gnullvm"
672 version = "0.48.0"
673 source = "registry+https://github.com/rust-lang/crates.io-index"
674 checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
675
676 [[package]]
677 name = "windows_x86_64_msvc"
678 version = "0.42.1"
679 source = "registry+https://github.com/rust-lang/crates.io-index"
680 checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
681
682 [[package]]
683 name = "windows_x86_64_msvc"
684 version = "0.48.0"
685 source = "registry+https://github.com/rust-lang/crates.io-index"
686 checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"