c37218a301957c392e5b64a9a70f06eca5935568
[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 ]
66
67 [[package]]
68 name = "clap_derive"
69 version = "4.1.7"
70 source = "registry+https://github.com/rust-lang/crates.io-index"
71 checksum = "34d122164198950ba84a918270a3bb3f7ededd25e15f7451673d986f55bd2667"
72 dependencies = [
73  "heck",
74  "proc-macro-error",
75  "proc-macro2",
76  "quote",
77  "syn 1.0.109",
78 ]
79
80 [[package]]
81 name = "clap_lex"
82 version = "0.3.2"
83 source = "registry+https://github.com/rust-lang/crates.io-index"
84 checksum = "350b9cf31731f9957399229e9b2adc51eeabdfbe9d71d9a0552275fd12710d09"
85 dependencies = [
86  "os_str_bytes",
87 ]
88
89 [[package]]
90 name = "crc32fast"
91 version = "1.3.2"
92 source = "registry+https://github.com/rust-lang/crates.io-index"
93 checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
94 dependencies = [
95  "cfg-if",
96 ]
97
98 [[package]]
99 name = "errno"
100 version = "0.2.8"
101 source = "registry+https://github.com/rust-lang/crates.io-index"
102 checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
103 dependencies = [
104  "errno-dragonfly",
105  "libc",
106  "winapi",
107 ]
108
109 [[package]]
110 name = "errno-dragonfly"
111 version = "0.1.2"
112 source = "registry+https://github.com/rust-lang/crates.io-index"
113 checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
114 dependencies = [
115  "cc",
116  "libc",
117 ]
118
119 [[package]]
120 name = "flate2"
121 version = "1.0.26"
122 source = "registry+https://github.com/rust-lang/crates.io-index"
123 checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
124 dependencies = [
125  "crc32fast",
126  "miniz_oxide",
127 ]
128
129 [[package]]
130 name = "float_next_after"
131 version = "1.0.0"
132 source = "registry+https://github.com/rust-lang/crates.io-index"
133 checksum = "8bf7cc16383c4b8d58b9905a8509f02926ce3058053c056376248d958c9df1e8"
134
135 [[package]]
136 name = "heck"
137 version = "0.4.1"
138 source = "registry+https://github.com/rust-lang/crates.io-index"
139 checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
140
141 [[package]]
142 name = "hermit-abi"
143 version = "0.1.19"
144 source = "registry+https://github.com/rust-lang/crates.io-index"
145 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
146 dependencies = [
147  "libc",
148 ]
149
150 [[package]]
151 name = "hermit-abi"
152 version = "0.3.1"
153 source = "registry+https://github.com/rust-lang/crates.io-index"
154 checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
155
156 [[package]]
157 name = "hexplay"
158 version = "0.2.1"
159 source = "registry+https://github.com/rust-lang/crates.io-index"
160 checksum = "0962bea6731e28b5a443ba4aa00fe3e4fe7555dadf12012435efb738eeac5898"
161 dependencies = [
162  "atty",
163  "termcolor 0.3.6",
164 ]
165
166 [[package]]
167 name = "io-lifetimes"
168 version = "1.0.5"
169 source = "registry+https://github.com/rust-lang/crates.io-index"
170 checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3"
171 dependencies = [
172  "libc",
173  "windows-sys",
174 ]
175
176 [[package]]
177 name = "is-terminal"
178 version = "0.4.4"
179 source = "registry+https://github.com/rust-lang/crates.io-index"
180 checksum = "21b6b32576413a8e69b90e952e4a026476040d81017b80445deda5f2d3921857"
181 dependencies = [
182  "hermit-abi 0.3.1",
183  "io-lifetimes",
184  "rustix",
185  "windows-sys",
186 ]
187
188 [[package]]
189 name = "libc"
190 version = "0.2.139"
191 source = "registry+https://github.com/rust-lang/crates.io-index"
192 checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
193
194 [[package]]
195 name = "linux-raw-sys"
196 version = "0.1.4"
197 source = "registry+https://github.com/rust-lang/crates.io-index"
198 checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
199
200 [[package]]
201 name = "miniz_oxide"
202 version = "0.7.1"
203 source = "registry+https://github.com/rust-lang/crates.io-index"
204 checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
205 dependencies = [
206  "adler",
207 ]
208
209 [[package]]
210 name = "num"
211 version = "0.4.0"
212 source = "registry+https://github.com/rust-lang/crates.io-index"
213 checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606"
214 dependencies = [
215  "num-bigint",
216  "num-complex",
217  "num-integer",
218  "num-iter",
219  "num-rational",
220  "num-traits",
221 ]
222
223 [[package]]
224 name = "num-bigint"
225 version = "0.4.3"
226 source = "registry+https://github.com/rust-lang/crates.io-index"
227 checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
228 dependencies = [
229  "autocfg",
230  "num-integer",
231  "num-traits",
232 ]
233
234 [[package]]
235 name = "num-complex"
236 version = "0.4.3"
237 source = "registry+https://github.com/rust-lang/crates.io-index"
238 checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
239 dependencies = [
240  "num-traits",
241 ]
242
243 [[package]]
244 name = "num-derive"
245 version = "0.4.0"
246 source = "registry+https://github.com/rust-lang/crates.io-index"
247 checksum = "9e6a0fd4f737c707bd9086cc16c925f294943eb62eb71499e9fd4cf71f8b9f4e"
248 dependencies = [
249  "proc-macro2",
250  "quote",
251  "syn 2.0.27",
252 ]
253
254 [[package]]
255 name = "num-integer"
256 version = "0.1.45"
257 source = "registry+https://github.com/rust-lang/crates.io-index"
258 checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
259 dependencies = [
260  "autocfg",
261  "num-traits",
262 ]
263
264 [[package]]
265 name = "num-iter"
266 version = "0.1.43"
267 source = "registry+https://github.com/rust-lang/crates.io-index"
268 checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
269 dependencies = [
270  "autocfg",
271  "num-integer",
272  "num-traits",
273 ]
274
275 [[package]]
276 name = "num-rational"
277 version = "0.4.1"
278 source = "registry+https://github.com/rust-lang/crates.io-index"
279 checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
280 dependencies = [
281  "autocfg",
282  "num-bigint",
283  "num-integer",
284  "num-traits",
285 ]
286
287 [[package]]
288 name = "num-traits"
289 version = "0.2.16"
290 source = "registry+https://github.com/rust-lang/crates.io-index"
291 checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
292 dependencies = [
293  "autocfg",
294 ]
295
296 [[package]]
297 name = "once_cell"
298 version = "1.17.1"
299 source = "registry+https://github.com/rust-lang/crates.io-index"
300 checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
301
302 [[package]]
303 name = "os_str_bytes"
304 version = "6.4.1"
305 source = "registry+https://github.com/rust-lang/crates.io-index"
306 checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
307
308 [[package]]
309 name = "proc-macro-error"
310 version = "1.0.4"
311 source = "registry+https://github.com/rust-lang/crates.io-index"
312 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
313 dependencies = [
314  "proc-macro-error-attr",
315  "proc-macro2",
316  "quote",
317  "syn 1.0.109",
318  "version_check",
319 ]
320
321 [[package]]
322 name = "proc-macro-error-attr"
323 version = "1.0.4"
324 source = "registry+https://github.com/rust-lang/crates.io-index"
325 checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
326 dependencies = [
327  "proc-macro2",
328  "quote",
329  "version_check",
330 ]
331
332 [[package]]
333 name = "proc-macro2"
334 version = "1.0.66"
335 source = "registry+https://github.com/rust-lang/crates.io-index"
336 checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
337 dependencies = [
338  "unicode-ident",
339 ]
340
341 [[package]]
342 name = "pspp"
343 version = "1.0.0"
344 dependencies = [
345  "anyhow",
346  "clap",
347  "flate2",
348  "float_next_after",
349  "hexplay",
350  "num",
351  "num-derive",
352  "num-traits",
353  "thiserror",
354 ]
355
356 [[package]]
357 name = "quote"
358 version = "1.0.32"
359 source = "registry+https://github.com/rust-lang/crates.io-index"
360 checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965"
361 dependencies = [
362  "proc-macro2",
363 ]
364
365 [[package]]
366 name = "rustix"
367 version = "0.36.8"
368 source = "registry+https://github.com/rust-lang/crates.io-index"
369 checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644"
370 dependencies = [
371  "bitflags",
372  "errno",
373  "io-lifetimes",
374  "libc",
375  "linux-raw-sys",
376  "windows-sys",
377 ]
378
379 [[package]]
380 name = "strsim"
381 version = "0.10.0"
382 source = "registry+https://github.com/rust-lang/crates.io-index"
383 checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
384
385 [[package]]
386 name = "syn"
387 version = "1.0.109"
388 source = "registry+https://github.com/rust-lang/crates.io-index"
389 checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
390 dependencies = [
391  "proc-macro2",
392  "quote",
393  "unicode-ident",
394 ]
395
396 [[package]]
397 name = "syn"
398 version = "2.0.27"
399 source = "registry+https://github.com/rust-lang/crates.io-index"
400 checksum = "b60f673f44a8255b9c8c657daf66a596d435f2da81a555b06dc644d080ba45e0"
401 dependencies = [
402  "proc-macro2",
403  "quote",
404  "unicode-ident",
405 ]
406
407 [[package]]
408 name = "termcolor"
409 version = "0.3.6"
410 source = "registry+https://github.com/rust-lang/crates.io-index"
411 checksum = "adc4587ead41bf016f11af03e55a624c06568b5a19db4e90fde573d805074f83"
412 dependencies = [
413  "wincolor",
414 ]
415
416 [[package]]
417 name = "termcolor"
418 version = "1.2.0"
419 source = "registry+https://github.com/rust-lang/crates.io-index"
420 checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
421 dependencies = [
422  "winapi-util",
423 ]
424
425 [[package]]
426 name = "thiserror"
427 version = "1.0.39"
428 source = "registry+https://github.com/rust-lang/crates.io-index"
429 checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c"
430 dependencies = [
431  "thiserror-impl",
432 ]
433
434 [[package]]
435 name = "thiserror-impl"
436 version = "1.0.39"
437 source = "registry+https://github.com/rust-lang/crates.io-index"
438 checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e"
439 dependencies = [
440  "proc-macro2",
441  "quote",
442  "syn 1.0.109",
443 ]
444
445 [[package]]
446 name = "unicode-ident"
447 version = "1.0.6"
448 source = "registry+https://github.com/rust-lang/crates.io-index"
449 checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
450
451 [[package]]
452 name = "version_check"
453 version = "0.9.4"
454 source = "registry+https://github.com/rust-lang/crates.io-index"
455 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
456
457 [[package]]
458 name = "winapi"
459 version = "0.3.9"
460 source = "registry+https://github.com/rust-lang/crates.io-index"
461 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
462 dependencies = [
463  "winapi-i686-pc-windows-gnu",
464  "winapi-x86_64-pc-windows-gnu",
465 ]
466
467 [[package]]
468 name = "winapi-i686-pc-windows-gnu"
469 version = "0.4.0"
470 source = "registry+https://github.com/rust-lang/crates.io-index"
471 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
472
473 [[package]]
474 name = "winapi-util"
475 version = "0.1.5"
476 source = "registry+https://github.com/rust-lang/crates.io-index"
477 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
478 dependencies = [
479  "winapi",
480 ]
481
482 [[package]]
483 name = "winapi-x86_64-pc-windows-gnu"
484 version = "0.4.0"
485 source = "registry+https://github.com/rust-lang/crates.io-index"
486 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
487
488 [[package]]
489 name = "wincolor"
490 version = "0.1.6"
491 source = "registry+https://github.com/rust-lang/crates.io-index"
492 checksum = "eeb06499a3a4d44302791052df005d5232b927ed1a9658146d842165c4de7767"
493 dependencies = [
494  "winapi",
495 ]
496
497 [[package]]
498 name = "windows-sys"
499 version = "0.45.0"
500 source = "registry+https://github.com/rust-lang/crates.io-index"
501 checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
502 dependencies = [
503  "windows-targets",
504 ]
505
506 [[package]]
507 name = "windows-targets"
508 version = "0.42.1"
509 source = "registry+https://github.com/rust-lang/crates.io-index"
510 checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
511 dependencies = [
512  "windows_aarch64_gnullvm",
513  "windows_aarch64_msvc",
514  "windows_i686_gnu",
515  "windows_i686_msvc",
516  "windows_x86_64_gnu",
517  "windows_x86_64_gnullvm",
518  "windows_x86_64_msvc",
519 ]
520
521 [[package]]
522 name = "windows_aarch64_gnullvm"
523 version = "0.42.1"
524 source = "registry+https://github.com/rust-lang/crates.io-index"
525 checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
526
527 [[package]]
528 name = "windows_aarch64_msvc"
529 version = "0.42.1"
530 source = "registry+https://github.com/rust-lang/crates.io-index"
531 checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
532
533 [[package]]
534 name = "windows_i686_gnu"
535 version = "0.42.1"
536 source = "registry+https://github.com/rust-lang/crates.io-index"
537 checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
538
539 [[package]]
540 name = "windows_i686_msvc"
541 version = "0.42.1"
542 source = "registry+https://github.com/rust-lang/crates.io-index"
543 checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
544
545 [[package]]
546 name = "windows_x86_64_gnu"
547 version = "0.42.1"
548 source = "registry+https://github.com/rust-lang/crates.io-index"
549 checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
550
551 [[package]]
552 name = "windows_x86_64_gnullvm"
553 version = "0.42.1"
554 source = "registry+https://github.com/rust-lang/crates.io-index"
555 checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
556
557 [[package]]
558 name = "windows_x86_64_msvc"
559 version = "0.42.1"
560 source = "registry+https://github.com/rust-lang/crates.io-index"
561 checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"