1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 3
4
5[[package]]
6name = "aho-corasick"
7version = "0.7.15"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
10dependencies = [
11 "memchr",
12]
13
14[[package]]
15name = "ansi_term"
16version = "0.11.0"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
19dependencies = [
20 "winapi",
21]
22
23[[package]]
24name = "atty"
25version = "0.2.14"
26source = "registry+https://github.com/rust-lang/crates.io-index"
27checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
28dependencies = [
29 "hermit-abi",
30 "libc",
31 "winapi",
32]
33
34[[package]]
35name = "autocfg"
36version = "1.0.1"
37source = "registry+https://github.com/rust-lang/crates.io-index"
38checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
39
40[[package]]
41name = "bitflags"
42version = "1.2.1"
43source = "registry+https://github.com/rust-lang/crates.io-index"
44checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
45
46[[package]]
47name = "bstr"
48version = "0.2.15"
49source = "registry+https://github.com/rust-lang/crates.io-index"
50checksum = "a40b47ad93e1a5404e6c18dec46b628214fee441c70f4ab5d6942142cc268a3d"
51dependencies = [
52 "memchr",
53]
54
55[[package]]
56name = "cc"
57version = "1.0.67"
58source = "registry+https://github.com/rust-lang/crates.io-index"
59checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd"
60
61[[package]]
62name = "cfg-if"
63version = "1.0.0"
64source = "registry+https://github.com/rust-lang/crates.io-index"
65checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
66
67[[package]]
68name = "chrono"
69version = "0.4.19"
70source = "registry+https://github.com/rust-lang/crates.io-index"
71checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
72dependencies = [
73 "libc",
74 "num-integer",
75 "num-traits",
76 "time",
77 "winapi",
78]
79
80[[package]]
81name = "clap"
82version = "2.33.3"
83source = "registry+https://github.com/rust-lang/crates.io-index"
84checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
85dependencies = [
86 "ansi_term",
87 "atty",
88 "bitflags",
89 "strsim",
90 "textwrap",
91 "unicode-width",
92 "vec_map",
93]
94
95[[package]]
96name = "clml_rs"
97version = "0.3.0"
98source = "git+https://github.com/K4rakara/clml-rs#eecf1378f4e85a9b3dc91e8a15d497a2fd75906f"
99dependencies = [
100 "lazy_static",
101 "rand",
102 "regex",
103]
104
105[[package]]
106name = "cmd_lib"
107version = "0.8.5"
108source = "registry+https://github.com/rust-lang/crates.io-index"
109checksum = "42443b644d30f401746fb4483fba96b13076e1ef6cb5bca7d6a14d1d8f9f2bd9"
110dependencies = [
111 "cmd_lib_core",
112 "cmd_lib_macros",
113]
114
115[[package]]
116name = "cmd_lib_core"
117version = "0.1.0"
118source = "registry+https://github.com/rust-lang/crates.io-index"
119checksum = "c50c50a1536e882455aeaff22015146ea143b9106fc8e116669dd078ec7b7fc8"
120
121[[package]]
122name = "cmd_lib_macros"
123version = "0.1.0"
124source = "registry+https://github.com/rust-lang/crates.io-index"
125checksum = "2d202b0cfc28d8928ba89138c0a8248cf921b9870c6c9d60c9951092df5b62b2"
126dependencies = [
127 "cmd_lib_core",
128 "proc-macro2",
129 "quote",
130]
131
132[[package]]
133name = "core-foundation-sys"
134version = "0.8.2"
135source = "registry+https://github.com/rust-lang/crates.io-index"
136checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b"
137
138[[package]]
139name = "crossbeam-channel"
140version = "0.5.1"
141source = "registry+https://github.com/rust-lang/crates.io-index"
142checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4"
143dependencies = [
144 "cfg-if",
145 "crossbeam-utils",
146]
147
148[[package]]
149name = "crossbeam-deque"
150version = "0.8.0"
151source = "registry+https://github.com/rust-lang/crates.io-index"
152checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9"
153dependencies = [
154 "cfg-if",
155 "crossbeam-epoch",
156 "crossbeam-utils",
157]
158
159[[package]]
160name = "crossbeam-epoch"
161version = "0.9.3"
162source = "registry+https://github.com/rust-lang/crates.io-index"
163checksum = "2584f639eb95fea8c798496315b297cf81b9b58b6d30ab066a75455333cf4b12"
164dependencies = [
165 "cfg-if",
166 "crossbeam-utils",
167 "lazy_static",
168 "memoffset",
169 "scopeguard",
170]
171
172[[package]]
173name = "crossbeam-utils"
174version = "0.8.3"
175source = "registry+https://github.com/rust-lang/crates.io-index"
176checksum = "e7e9d99fa91428effe99c5c6d4634cdeba32b8cf784fc428a2a687f61a952c49"
177dependencies = [
178 "autocfg",
179 "cfg-if",
180 "lazy_static",
181]
182
183[[package]]
184name = "doc-comment"
185version = "0.3.3"
186source = "registry+https://github.com/rust-lang/crates.io-index"
187checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
188
189[[package]]
190name = "either"
191version = "1.6.1"
192source = "registry+https://github.com/rust-lang/crates.io-index"
193checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
194
195[[package]]
196name = "freshfetch"
197version = "0.2.0"
198dependencies = [
199 "chrono",
200 "clap",
201 "clml_rs",
202 "cmd_lib",
203 "cmd_lib_core",
204 "lazy_static",
205 "mlua",
206 "regex",
207 "sysinfo",
208 "term_size",
209 "uname",
210 "users",
211]
212
213[[package]]
214name = "getrandom"
215version = "0.1.16"
216source = "registry+https://github.com/rust-lang/crates.io-index"
217checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
218dependencies = [
219 "cfg-if",
220 "libc",
221 "wasi 0.9.0+wasi-snapshot-preview1",
222]
223
224[[package]]
225name = "hermit-abi"
226version = "0.1.18"
227source = "registry+https://github.com/rust-lang/crates.io-index"
228checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
229dependencies = [
230 "libc",
231]
232
233[[package]]
234name = "lazy_static"
235version = "1.4.0"
236source = "registry+https://github.com/rust-lang/crates.io-index"
237checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
238
239[[package]]
240name = "libc"
241version = "0.2.93"
242source = "registry+https://github.com/rust-lang/crates.io-index"
243checksum = "9385f66bf6105b241aa65a61cb923ef20efc665cb9f9bb50ac2f0c4b7f378d41"
244
245[[package]]
246name = "log"
247version = "0.4.14"
248source = "registry+https://github.com/rust-lang/crates.io-index"
249checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
250dependencies = [
251 "cfg-if",
252]
253
254[[package]]
255name = "lua-src"
256version = "543.0.0"
257source = "registry+https://github.com/rust-lang/crates.io-index"
258checksum = "029180f994b9b36f47d905f92569b516acf7d073778e2e781c15ee375b1ca27d"
259dependencies = [
260 "cc",
261]
262
263[[package]]
264name = "luajit-src"
265version = "210.1.3+restyfe08842"
266source = "registry+https://github.com/rust-lang/crates.io-index"
267checksum = "36d3de8377d8e0492b646527befb7eb826a9ecd2dc8c1f81ab0e654bc03a029b"
268dependencies = [
269 "cc",
270]
271
272[[package]]
273name = "memchr"
274version = "2.3.4"
275source = "registry+https://github.com/rust-lang/crates.io-index"
276checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
277
278[[package]]
279name = "memoffset"
280version = "0.6.3"
281source = "registry+https://github.com/rust-lang/crates.io-index"
282checksum = "f83fb6581e8ed1f85fd45c116db8405483899489e38406156c25eb743554361d"
283dependencies = [
284 "autocfg",
285]
286
287[[package]]
288name = "mlua"
289version = "0.5.3"
290source = "registry+https://github.com/rust-lang/crates.io-index"
291checksum = "6f2fc8e1085d53b72898c59ceee1980b5826b0c98ce99886b7518f0ead00e5cb"
292dependencies = [
293 "bstr",
294 "cc",
295 "lazy_static",
296 "lua-src",
297 "luajit-src",
298 "num-traits",
299 "pkg-config",
300]
301
302[[package]]
303name = "ntapi"
304version = "0.3.6"
305source = "registry+https://github.com/rust-lang/crates.io-index"
306checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
307dependencies = [
308 "winapi",
309]
310
311[[package]]
312name = "num-integer"
313version = "0.1.44"
314source = "registry+https://github.com/rust-lang/crates.io-index"
315checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
316dependencies = [
317 "autocfg",
318 "num-traits",
319]
320
321[[package]]
322name = "num-traits"
323version = "0.2.14"
324source = "registry+https://github.com/rust-lang/crates.io-index"
325checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
326dependencies = [
327 "autocfg",
328]
329
330[[package]]
331name = "num_cpus"
332version = "1.13.0"
333source = "registry+https://github.com/rust-lang/crates.io-index"
334checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
335dependencies = [
336 "hermit-abi",
337 "libc",
338]
339
340[[package]]
341name = "once_cell"
342version = "1.7.2"
343source = "registry+https://github.com/rust-lang/crates.io-index"
344checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3"
345
346[[package]]
347name = "pkg-config"
348version = "0.3.19"
349source = "registry+https://github.com/rust-lang/crates.io-index"
350checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
351
352[[package]]
353name = "ppv-lite86"
354version = "0.2.10"
355source = "registry+https://github.com/rust-lang/crates.io-index"
356checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
357
358[[package]]
359name = "proc-macro2"
360version = "1.0.26"
361source = "registry+https://github.com/rust-lang/crates.io-index"
362checksum = "a152013215dca273577e18d2bf00fa862b89b24169fb78c4c95aeb07992c9cec"
363dependencies = [
364 "unicode-xid",
365]
366
367[[package]]
368name = "quote"
369version = "1.0.9"
370source = "registry+https://github.com/rust-lang/crates.io-index"
371checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
372dependencies = [
373 "proc-macro2",
374]
375
376[[package]]
377name = "rand"
378version = "0.7.3"
379source = "registry+https://github.com/rust-lang/crates.io-index"
380checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
381dependencies = [
382 "getrandom",
383 "libc",
384 "rand_chacha",
385 "rand_core",
386 "rand_hc",
387]
388
389[[package]]
390name = "rand_chacha"
391version = "0.2.2"
392source = "registry+https://github.com/rust-lang/crates.io-index"
393checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
394dependencies = [
395 "ppv-lite86",
396 "rand_core",
397]
398
399[[package]]
400name = "rand_core"
401version = "0.5.1"
402source = "registry+https://github.com/rust-lang/crates.io-index"
403checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
404dependencies = [
405 "getrandom",
406]
407
408[[package]]
409name = "rand_hc"
410version = "0.2.0"
411source = "registry+https://github.com/rust-lang/crates.io-index"
412checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
413dependencies = [
414 "rand_core",
415]
416
417[[package]]
418name = "rayon"
419version = "1.5.0"
420source = "registry+https://github.com/rust-lang/crates.io-index"
421checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674"
422dependencies = [
423 "autocfg",
424 "crossbeam-deque",
425 "either",
426 "rayon-core",
427]
428
429[[package]]
430name = "rayon-core"
431version = "1.9.0"
432source = "registry+https://github.com/rust-lang/crates.io-index"
433checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a"
434dependencies = [
435 "crossbeam-channel",
436 "crossbeam-deque",
437 "crossbeam-utils",
438 "lazy_static",
439 "num_cpus",
440]
441
442[[package]]
443name = "regex"
444version = "1.4.5"
445source = "registry+https://github.com/rust-lang/crates.io-index"
446checksum = "957056ecddbeba1b26965114e191d2e8589ce74db242b6ea25fc4062427a5c19"
447dependencies = [
448 "aho-corasick",
449 "memchr",
450 "regex-syntax",
451]
452
453[[package]]
454name = "regex-syntax"
455version = "0.6.23"
456source = "registry+https://github.com/rust-lang/crates.io-index"
457checksum = "24d5f089152e60f62d28b835fbff2cd2e8dc0baf1ac13343bef92ab7eed84548"
458
459[[package]]
460name = "scopeguard"
461version = "1.1.0"
462source = "registry+https://github.com/rust-lang/crates.io-index"
463checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
464
465[[package]]
466name = "strsim"
467version = "0.8.0"
468source = "registry+https://github.com/rust-lang/crates.io-index"
469checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
470
471[[package]]
472name = "sysinfo"
473version = "0.15.9"
474source = "registry+https://github.com/rust-lang/crates.io-index"
475checksum = "de94457a09609f33fec5e7fceaf907488967c6c7c75d64da6a7ce6ffdb8b5abd"
476dependencies = [
477 "cc",
478 "cfg-if",
479 "core-foundation-sys",
480 "doc-comment",
481 "libc",
482 "ntapi",
483 "once_cell",
484 "rayon",
485 "winapi",
486]
487
488[[package]]
489name = "term_size"
490version = "0.3.2"
491source = "registry+https://github.com/rust-lang/crates.io-index"
492checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9"
493dependencies = [
494 "libc",
495 "winapi",
496]
497
498[[package]]
499name = "textwrap"
500version = "0.11.0"
501source = "registry+https://github.com/rust-lang/crates.io-index"
502checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
503dependencies = [
504 "unicode-width",
505]
506
507[[package]]
508name = "time"
509version = "0.1.44"
510source = "registry+https://github.com/rust-lang/crates.io-index"
511checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
512dependencies = [
513 "libc",
514 "wasi 0.10.0+wasi-snapshot-preview1",
515 "winapi",
516]
517
518[[package]]
519name = "uname"
520version = "0.1.1"
521source = "registry+https://github.com/rust-lang/crates.io-index"
522checksum = "b72f89f0ca32e4db1c04e2a72f5345d59796d4866a1ee0609084569f73683dc8"
523dependencies = [
524 "libc",
525]
526
527[[package]]
528name = "unicode-width"
529version = "0.1.8"
530source = "registry+https://github.com/rust-lang/crates.io-index"
531checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
532
533[[package]]
534name = "unicode-xid"
535version = "0.2.1"
536source = "registry+https://github.com/rust-lang/crates.io-index"
537checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
538
539[[package]]
540name = "users"
541version = "0.10.0"
542source = "registry+https://github.com/rust-lang/crates.io-index"
543checksum = "aa4227e95324a443c9fcb06e03d4d85e91aabe9a5a02aa818688b6918b6af486"
544dependencies = [
545 "libc",
546 "log",
547]
548
549[[package]]
550name = "vec_map"
551version = "0.8.2"
552source = "registry+https://github.com/rust-lang/crates.io-index"
553checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
554
555[[package]]
556name = "wasi"
557version = "0.9.0+wasi-snapshot-preview1"
558source = "registry+https://github.com/rust-lang/crates.io-index"
559checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
560
561[[package]]
562name = "wasi"
563version = "0.10.0+wasi-snapshot-preview1"
564source = "registry+https://github.com/rust-lang/crates.io-index"
565checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
566
567[[package]]
568name = "winapi"
569version = "0.3.9"
570source = "registry+https://github.com/rust-lang/crates.io-index"
571checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
572dependencies = [
573 "winapi-i686-pc-windows-gnu",
574 "winapi-x86_64-pc-windows-gnu",
575]
576
577[[package]]
578name = "winapi-i686-pc-windows-gnu"
579version = "0.4.0"
580source = "registry+https://github.com/rust-lang/crates.io-index"
581checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
582
583[[package]]
584name = "winapi-x86_64-pc-windows-gnu"
585version = "0.4.0"
586source = "registry+https://github.com/rust-lang/crates.io-index"
587checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"