Work on system file library.
[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 = "anyhow"
7 version = "1.0.69"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800"
10
11 [[package]]
12 name = "atty"
13 version = "0.2.14"
14 source = "registry+https://github.com/rust-lang/crates.io-index"
15 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
16 dependencies = [
17  "hermit-abi 0.1.19",
18  "libc",
19  "winapi",
20 ]
21
22 [[package]]
23 name = "autocfg"
24 version = "1.1.0"
25 source = "registry+https://github.com/rust-lang/crates.io-index"
26 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
27
28 [[package]]
29 name = "bitflags"
30 version = "1.3.2"
31 source = "registry+https://github.com/rust-lang/crates.io-index"
32 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
33
34 [[package]]
35 name = "cc"
36 version = "1.0.79"
37 source = "registry+https://github.com/rust-lang/crates.io-index"
38 checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
39
40 [[package]]
41 name = "clap"
42 version = "4.1.7"
43 source = "registry+https://github.com/rust-lang/crates.io-index"
44 checksum = "2f3061d6db6d8fcbbd4b05e057f2acace52e64e96b498c08c2d7a4e65addd340"
45 dependencies = [
46  "bitflags",
47  "clap_derive",
48  "clap_lex",
49  "is-terminal",
50  "once_cell",
51  "strsim",
52  "termcolor 1.2.0",
53 ]
54
55 [[package]]
56 name = "clap_derive"
57 version = "4.1.7"
58 source = "registry+https://github.com/rust-lang/crates.io-index"
59 checksum = "34d122164198950ba84a918270a3bb3f7ededd25e15f7451673d986f55bd2667"
60 dependencies = [
61  "heck",
62  "proc-macro-error",
63  "proc-macro2",
64  "quote",
65  "syn",
66 ]
67
68 [[package]]
69 name = "clap_lex"
70 version = "0.3.2"
71 source = "registry+https://github.com/rust-lang/crates.io-index"
72 checksum = "350b9cf31731f9957399229e9b2adc51eeabdfbe9d71d9a0552275fd12710d09"
73 dependencies = [
74  "os_str_bytes",
75 ]
76
77 [[package]]
78 name = "errno"
79 version = "0.2.8"
80 source = "registry+https://github.com/rust-lang/crates.io-index"
81 checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
82 dependencies = [
83  "errno-dragonfly",
84  "libc",
85  "winapi",
86 ]
87
88 [[package]]
89 name = "errno-dragonfly"
90 version = "0.1.2"
91 source = "registry+https://github.com/rust-lang/crates.io-index"
92 checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
93 dependencies = [
94  "cc",
95  "libc",
96 ]
97
98 [[package]]
99 name = "heck"
100 version = "0.4.1"
101 source = "registry+https://github.com/rust-lang/crates.io-index"
102 checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
103
104 [[package]]
105 name = "hermit-abi"
106 version = "0.1.19"
107 source = "registry+https://github.com/rust-lang/crates.io-index"
108 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
109 dependencies = [
110  "libc",
111 ]
112
113 [[package]]
114 name = "hermit-abi"
115 version = "0.3.1"
116 source = "registry+https://github.com/rust-lang/crates.io-index"
117 checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
118
119 [[package]]
120 name = "hexplay"
121 version = "0.2.1"
122 source = "registry+https://github.com/rust-lang/crates.io-index"
123 checksum = "0962bea6731e28b5a443ba4aa00fe3e4fe7555dadf12012435efb738eeac5898"
124 dependencies = [
125  "atty",
126  "termcolor 0.3.6",
127 ]
128
129 [[package]]
130 name = "io-lifetimes"
131 version = "1.0.5"
132 source = "registry+https://github.com/rust-lang/crates.io-index"
133 checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3"
134 dependencies = [
135  "libc",
136  "windows-sys",
137 ]
138
139 [[package]]
140 name = "is-terminal"
141 version = "0.4.4"
142 source = "registry+https://github.com/rust-lang/crates.io-index"
143 checksum = "21b6b32576413a8e69b90e952e4a026476040d81017b80445deda5f2d3921857"
144 dependencies = [
145  "hermit-abi 0.3.1",
146  "io-lifetimes",
147  "rustix",
148  "windows-sys",
149 ]
150
151 [[package]]
152 name = "libc"
153 version = "0.2.139"
154 source = "registry+https://github.com/rust-lang/crates.io-index"
155 checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
156
157 [[package]]
158 name = "linux-raw-sys"
159 version = "0.1.4"
160 source = "registry+https://github.com/rust-lang/crates.io-index"
161 checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
162
163 [[package]]
164 name = "num"
165 version = "0.4.0"
166 source = "registry+https://github.com/rust-lang/crates.io-index"
167 checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606"
168 dependencies = [
169  "num-bigint",
170  "num-complex",
171  "num-integer",
172  "num-iter",
173  "num-rational",
174  "num-traits",
175 ]
176
177 [[package]]
178 name = "num-bigint"
179 version = "0.4.3"
180 source = "registry+https://github.com/rust-lang/crates.io-index"
181 checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
182 dependencies = [
183  "autocfg",
184  "num-integer",
185  "num-traits",
186 ]
187
188 [[package]]
189 name = "num-complex"
190 version = "0.4.3"
191 source = "registry+https://github.com/rust-lang/crates.io-index"
192 checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
193 dependencies = [
194  "num-traits",
195 ]
196
197 [[package]]
198 name = "num-integer"
199 version = "0.1.45"
200 source = "registry+https://github.com/rust-lang/crates.io-index"
201 checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
202 dependencies = [
203  "autocfg",
204  "num-traits",
205 ]
206
207 [[package]]
208 name = "num-iter"
209 version = "0.1.43"
210 source = "registry+https://github.com/rust-lang/crates.io-index"
211 checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
212 dependencies = [
213  "autocfg",
214  "num-integer",
215  "num-traits",
216 ]
217
218 [[package]]
219 name = "num-rational"
220 version = "0.4.1"
221 source = "registry+https://github.com/rust-lang/crates.io-index"
222 checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
223 dependencies = [
224  "autocfg",
225  "num-bigint",
226  "num-integer",
227  "num-traits",
228 ]
229
230 [[package]]
231 name = "num-traits"
232 version = "0.2.15"
233 source = "registry+https://github.com/rust-lang/crates.io-index"
234 checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
235 dependencies = [
236  "autocfg",
237 ]
238
239 [[package]]
240 name = "once_cell"
241 version = "1.17.1"
242 source = "registry+https://github.com/rust-lang/crates.io-index"
243 checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
244
245 [[package]]
246 name = "os_str_bytes"
247 version = "6.4.1"
248 source = "registry+https://github.com/rust-lang/crates.io-index"
249 checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
250
251 [[package]]
252 name = "proc-macro-error"
253 version = "1.0.4"
254 source = "registry+https://github.com/rust-lang/crates.io-index"
255 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
256 dependencies = [
257  "proc-macro-error-attr",
258  "proc-macro2",
259  "quote",
260  "syn",
261  "version_check",
262 ]
263
264 [[package]]
265 name = "proc-macro-error-attr"
266 version = "1.0.4"
267 source = "registry+https://github.com/rust-lang/crates.io-index"
268 checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
269 dependencies = [
270  "proc-macro2",
271  "quote",
272  "version_check",
273 ]
274
275 [[package]]
276 name = "proc-macro2"
277 version = "1.0.51"
278 source = "registry+https://github.com/rust-lang/crates.io-index"
279 checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6"
280 dependencies = [
281  "unicode-ident",
282 ]
283
284 [[package]]
285 name = "pspp"
286 version = "1.0.0"
287 dependencies = [
288  "anyhow",
289  "clap",
290  "hexplay",
291  "num",
292  "thiserror",
293 ]
294
295 [[package]]
296 name = "quote"
297 version = "1.0.23"
298 source = "registry+https://github.com/rust-lang/crates.io-index"
299 checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
300 dependencies = [
301  "proc-macro2",
302 ]
303
304 [[package]]
305 name = "rustix"
306 version = "0.36.8"
307 source = "registry+https://github.com/rust-lang/crates.io-index"
308 checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644"
309 dependencies = [
310  "bitflags",
311  "errno",
312  "io-lifetimes",
313  "libc",
314  "linux-raw-sys",
315  "windows-sys",
316 ]
317
318 [[package]]
319 name = "strsim"
320 version = "0.10.0"
321 source = "registry+https://github.com/rust-lang/crates.io-index"
322 checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
323
324 [[package]]
325 name = "syn"
326 version = "1.0.109"
327 source = "registry+https://github.com/rust-lang/crates.io-index"
328 checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
329 dependencies = [
330  "proc-macro2",
331  "quote",
332  "unicode-ident",
333 ]
334
335 [[package]]
336 name = "termcolor"
337 version = "0.3.6"
338 source = "registry+https://github.com/rust-lang/crates.io-index"
339 checksum = "adc4587ead41bf016f11af03e55a624c06568b5a19db4e90fde573d805074f83"
340 dependencies = [
341  "wincolor",
342 ]
343
344 [[package]]
345 name = "termcolor"
346 version = "1.2.0"
347 source = "registry+https://github.com/rust-lang/crates.io-index"
348 checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
349 dependencies = [
350  "winapi-util",
351 ]
352
353 [[package]]
354 name = "thiserror"
355 version = "1.0.39"
356 source = "registry+https://github.com/rust-lang/crates.io-index"
357 checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c"
358 dependencies = [
359  "thiserror-impl",
360 ]
361
362 [[package]]
363 name = "thiserror-impl"
364 version = "1.0.39"
365 source = "registry+https://github.com/rust-lang/crates.io-index"
366 checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e"
367 dependencies = [
368  "proc-macro2",
369  "quote",
370  "syn",
371 ]
372
373 [[package]]
374 name = "unicode-ident"
375 version = "1.0.6"
376 source = "registry+https://github.com/rust-lang/crates.io-index"
377 checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
378
379 [[package]]
380 name = "version_check"
381 version = "0.9.4"
382 source = "registry+https://github.com/rust-lang/crates.io-index"
383 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
384
385 [[package]]
386 name = "winapi"
387 version = "0.3.9"
388 source = "registry+https://github.com/rust-lang/crates.io-index"
389 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
390 dependencies = [
391  "winapi-i686-pc-windows-gnu",
392  "winapi-x86_64-pc-windows-gnu",
393 ]
394
395 [[package]]
396 name = "winapi-i686-pc-windows-gnu"
397 version = "0.4.0"
398 source = "registry+https://github.com/rust-lang/crates.io-index"
399 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
400
401 [[package]]
402 name = "winapi-util"
403 version = "0.1.5"
404 source = "registry+https://github.com/rust-lang/crates.io-index"
405 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
406 dependencies = [
407  "winapi",
408 ]
409
410 [[package]]
411 name = "winapi-x86_64-pc-windows-gnu"
412 version = "0.4.0"
413 source = "registry+https://github.com/rust-lang/crates.io-index"
414 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
415
416 [[package]]
417 name = "wincolor"
418 version = "0.1.6"
419 source = "registry+https://github.com/rust-lang/crates.io-index"
420 checksum = "eeb06499a3a4d44302791052df005d5232b927ed1a9658146d842165c4de7767"
421 dependencies = [
422  "winapi",
423 ]
424
425 [[package]]
426 name = "windows-sys"
427 version = "0.45.0"
428 source = "registry+https://github.com/rust-lang/crates.io-index"
429 checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
430 dependencies = [
431  "windows-targets",
432 ]
433
434 [[package]]
435 name = "windows-targets"
436 version = "0.42.1"
437 source = "registry+https://github.com/rust-lang/crates.io-index"
438 checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
439 dependencies = [
440  "windows_aarch64_gnullvm",
441  "windows_aarch64_msvc",
442  "windows_i686_gnu",
443  "windows_i686_msvc",
444  "windows_x86_64_gnu",
445  "windows_x86_64_gnullvm",
446  "windows_x86_64_msvc",
447 ]
448
449 [[package]]
450 name = "windows_aarch64_gnullvm"
451 version = "0.42.1"
452 source = "registry+https://github.com/rust-lang/crates.io-index"
453 checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
454
455 [[package]]
456 name = "windows_aarch64_msvc"
457 version = "0.42.1"
458 source = "registry+https://github.com/rust-lang/crates.io-index"
459 checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
460
461 [[package]]
462 name = "windows_i686_gnu"
463 version = "0.42.1"
464 source = "registry+https://github.com/rust-lang/crates.io-index"
465 checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
466
467 [[package]]
468 name = "windows_i686_msvc"
469 version = "0.42.1"
470 source = "registry+https://github.com/rust-lang/crates.io-index"
471 checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
472
473 [[package]]
474 name = "windows_x86_64_gnu"
475 version = "0.42.1"
476 source = "registry+https://github.com/rust-lang/crates.io-index"
477 checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
478
479 [[package]]
480 name = "windows_x86_64_gnullvm"
481 version = "0.42.1"
482 source = "registry+https://github.com/rust-lang/crates.io-index"
483 checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
484
485 [[package]]
486 name = "windows_x86_64_msvc"
487 version = "0.42.1"
488 source = "registry+https://github.com/rust-lang/crates.io-index"
489 checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"