b69e7e9b22da0528ef7017bb152b78a436bf2802
[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 = "ordered-float"
304 version = "3.7.0"
305 source = "registry+https://github.com/rust-lang/crates.io-index"
306 checksum = "2fc2dbde8f8a79f2102cc474ceb0ad68e3b80b85289ea62389b60e66777e4213"
307 dependencies = [
308  "num-traits",
309 ]
310
311 [[package]]
312 name = "os_str_bytes"
313 version = "6.4.1"
314 source = "registry+https://github.com/rust-lang/crates.io-index"
315 checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
316
317 [[package]]
318 name = "proc-macro-error"
319 version = "1.0.4"
320 source = "registry+https://github.com/rust-lang/crates.io-index"
321 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
322 dependencies = [
323  "proc-macro-error-attr",
324  "proc-macro2",
325  "quote",
326  "syn 1.0.109",
327  "version_check",
328 ]
329
330 [[package]]
331 name = "proc-macro-error-attr"
332 version = "1.0.4"
333 source = "registry+https://github.com/rust-lang/crates.io-index"
334 checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
335 dependencies = [
336  "proc-macro2",
337  "quote",
338  "version_check",
339 ]
340
341 [[package]]
342 name = "proc-macro2"
343 version = "1.0.66"
344 source = "registry+https://github.com/rust-lang/crates.io-index"
345 checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
346 dependencies = [
347  "unicode-ident",
348 ]
349
350 [[package]]
351 name = "pspp"
352 version = "1.0.0"
353 dependencies = [
354  "anyhow",
355  "clap",
356  "flate2",
357  "float_next_after",
358  "hexplay",
359  "num",
360  "num-derive",
361  "num-traits",
362  "ordered-float",
363  "thiserror",
364 ]
365
366 [[package]]
367 name = "quote"
368 version = "1.0.32"
369 source = "registry+https://github.com/rust-lang/crates.io-index"
370 checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965"
371 dependencies = [
372  "proc-macro2",
373 ]
374
375 [[package]]
376 name = "rustix"
377 version = "0.36.8"
378 source = "registry+https://github.com/rust-lang/crates.io-index"
379 checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644"
380 dependencies = [
381  "bitflags",
382  "errno",
383  "io-lifetimes",
384  "libc",
385  "linux-raw-sys",
386  "windows-sys",
387 ]
388
389 [[package]]
390 name = "strsim"
391 version = "0.10.0"
392 source = "registry+https://github.com/rust-lang/crates.io-index"
393 checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
394
395 [[package]]
396 name = "syn"
397 version = "1.0.109"
398 source = "registry+https://github.com/rust-lang/crates.io-index"
399 checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
400 dependencies = [
401  "proc-macro2",
402  "quote",
403  "unicode-ident",
404 ]
405
406 [[package]]
407 name = "syn"
408 version = "2.0.27"
409 source = "registry+https://github.com/rust-lang/crates.io-index"
410 checksum = "b60f673f44a8255b9c8c657daf66a596d435f2da81a555b06dc644d080ba45e0"
411 dependencies = [
412  "proc-macro2",
413  "quote",
414  "unicode-ident",
415 ]
416
417 [[package]]
418 name = "termcolor"
419 version = "0.3.6"
420 source = "registry+https://github.com/rust-lang/crates.io-index"
421 checksum = "adc4587ead41bf016f11af03e55a624c06568b5a19db4e90fde573d805074f83"
422 dependencies = [
423  "wincolor",
424 ]
425
426 [[package]]
427 name = "termcolor"
428 version = "1.2.0"
429 source = "registry+https://github.com/rust-lang/crates.io-index"
430 checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
431 dependencies = [
432  "winapi-util",
433 ]
434
435 [[package]]
436 name = "thiserror"
437 version = "1.0.39"
438 source = "registry+https://github.com/rust-lang/crates.io-index"
439 checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c"
440 dependencies = [
441  "thiserror-impl",
442 ]
443
444 [[package]]
445 name = "thiserror-impl"
446 version = "1.0.39"
447 source = "registry+https://github.com/rust-lang/crates.io-index"
448 checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e"
449 dependencies = [
450  "proc-macro2",
451  "quote",
452  "syn 1.0.109",
453 ]
454
455 [[package]]
456 name = "unicode-ident"
457 version = "1.0.6"
458 source = "registry+https://github.com/rust-lang/crates.io-index"
459 checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
460
461 [[package]]
462 name = "version_check"
463 version = "0.9.4"
464 source = "registry+https://github.com/rust-lang/crates.io-index"
465 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
466
467 [[package]]
468 name = "winapi"
469 version = "0.3.9"
470 source = "registry+https://github.com/rust-lang/crates.io-index"
471 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
472 dependencies = [
473  "winapi-i686-pc-windows-gnu",
474  "winapi-x86_64-pc-windows-gnu",
475 ]
476
477 [[package]]
478 name = "winapi-i686-pc-windows-gnu"
479 version = "0.4.0"
480 source = "registry+https://github.com/rust-lang/crates.io-index"
481 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
482
483 [[package]]
484 name = "winapi-util"
485 version = "0.1.5"
486 source = "registry+https://github.com/rust-lang/crates.io-index"
487 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
488 dependencies = [
489  "winapi",
490 ]
491
492 [[package]]
493 name = "winapi-x86_64-pc-windows-gnu"
494 version = "0.4.0"
495 source = "registry+https://github.com/rust-lang/crates.io-index"
496 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
497
498 [[package]]
499 name = "wincolor"
500 version = "0.1.6"
501 source = "registry+https://github.com/rust-lang/crates.io-index"
502 checksum = "eeb06499a3a4d44302791052df005d5232b927ed1a9658146d842165c4de7767"
503 dependencies = [
504  "winapi",
505 ]
506
507 [[package]]
508 name = "windows-sys"
509 version = "0.45.0"
510 source = "registry+https://github.com/rust-lang/crates.io-index"
511 checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
512 dependencies = [
513  "windows-targets",
514 ]
515
516 [[package]]
517 name = "windows-targets"
518 version = "0.42.1"
519 source = "registry+https://github.com/rust-lang/crates.io-index"
520 checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
521 dependencies = [
522  "windows_aarch64_gnullvm",
523  "windows_aarch64_msvc",
524  "windows_i686_gnu",
525  "windows_i686_msvc",
526  "windows_x86_64_gnu",
527  "windows_x86_64_gnullvm",
528  "windows_x86_64_msvc",
529 ]
530
531 [[package]]
532 name = "windows_aarch64_gnullvm"
533 version = "0.42.1"
534 source = "registry+https://github.com/rust-lang/crates.io-index"
535 checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
536
537 [[package]]
538 name = "windows_aarch64_msvc"
539 version = "0.42.1"
540 source = "registry+https://github.com/rust-lang/crates.io-index"
541 checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
542
543 [[package]]
544 name = "windows_i686_gnu"
545 version = "0.42.1"
546 source = "registry+https://github.com/rust-lang/crates.io-index"
547 checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
548
549 [[package]]
550 name = "windows_i686_msvc"
551 version = "0.42.1"
552 source = "registry+https://github.com/rust-lang/crates.io-index"
553 checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
554
555 [[package]]
556 name = "windows_x86_64_gnu"
557 version = "0.42.1"
558 source = "registry+https://github.com/rust-lang/crates.io-index"
559 checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
560
561 [[package]]
562 name = "windows_x86_64_gnullvm"
563 version = "0.42.1"
564 source = "registry+https://github.com/rust-lang/crates.io-index"
565 checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
566
567 [[package]]
568 name = "windows_x86_64_msvc"
569 version = "0.42.1"
570 source = "registry+https://github.com/rust-lang/crates.io-index"
571 checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"