• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.20"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
10dependencies = [
11 "memchr",
12]
13
14[[package]]
15name = "atty"
16version = "0.2.14"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
19dependencies = [
20 "hermit-abi 0.1.19",
21 "libc",
22 "winapi",
23]
24
25[[package]]
26name = "bindgen"
27version = "0.64.0"
28source = "registry+https://github.com/rust-lang/crates.io-index"
29checksum = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4"
30dependencies = [
31 "bitflags",
32 "cexpr",
33 "clang-sys",
34 "lazy_static",
35 "lazycell",
36 "log",
37 "peeking_take_while",
38 "proc-macro2",
39 "quote",
40 "regex",
41 "rustc-hash",
42 "shlex",
43 "syn",
44 "which",
45]
46
47[[package]]
48name = "bindgen-cli"
49version = "0.64.0"
50dependencies = [
51 "bindgen",
52 "clap",
53 "env_logger",
54 "log",
55 "shlex",
56]
57
58[[package]]
59name = "bitflags"
60version = "1.3.2"
61source = "registry+https://github.com/rust-lang/crates.io-index"
62checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
63
64[[package]]
65name = "cc"
66version = "1.0.79"
67source = "registry+https://github.com/rust-lang/crates.io-index"
68checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
69
70[[package]]
71name = "cexpr"
72version = "0.6.0"
73source = "registry+https://github.com/rust-lang/crates.io-index"
74checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
75dependencies = [
76 "nom",
77]
78
79[[package]]
80name = "cfg-if"
81version = "1.0.0"
82source = "registry+https://github.com/rust-lang/crates.io-index"
83checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
84
85[[package]]
86name = "clang-sys"
87version = "1.4.0"
88source = "registry+https://github.com/rust-lang/crates.io-index"
89checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3"
90dependencies = [
91 "glob",
92 "libc",
93 "libloading",
94]
95
96[[package]]
97name = "clap"
98version = "4.1.4"
99source = "registry+https://github.com/rust-lang/crates.io-index"
100checksum = "f13b9c79b5d1dd500d20ef541215a6423c75829ef43117e1b4d17fd8af0b5d76"
101dependencies = [
102 "bitflags",
103 "clap_derive",
104 "clap_lex",
105 "is-terminal",
106 "once_cell",
107 "strsim",
108 "termcolor",
109]
110
111[[package]]
112name = "clap_derive"
113version = "4.1.0"
114source = "registry+https://github.com/rust-lang/crates.io-index"
115checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8"
116dependencies = [
117 "heck",
118 "proc-macro-error",
119 "proc-macro2",
120 "quote",
121 "syn",
122]
123
124[[package]]
125name = "clap_lex"
126version = "0.3.1"
127source = "registry+https://github.com/rust-lang/crates.io-index"
128checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade"
129dependencies = [
130 "os_str_bytes",
131]
132
133[[package]]
134name = "either"
135version = "1.8.1"
136source = "registry+https://github.com/rust-lang/crates.io-index"
137checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
138
139[[package]]
140name = "env_logger"
141version = "0.9.3"
142source = "registry+https://github.com/rust-lang/crates.io-index"
143checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7"
144dependencies = [
145 "atty",
146 "humantime",
147 "log",
148 "regex",
149 "termcolor",
150]
151
152[[package]]
153name = "errno"
154version = "0.2.8"
155source = "registry+https://github.com/rust-lang/crates.io-index"
156checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
157dependencies = [
158 "errno-dragonfly",
159 "libc",
160 "winapi",
161]
162
163[[package]]
164name = "errno-dragonfly"
165version = "0.1.2"
166source = "registry+https://github.com/rust-lang/crates.io-index"
167checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
168dependencies = [
169 "cc",
170 "libc",
171]
172
173[[package]]
174name = "glob"
175version = "0.3.1"
176source = "registry+https://github.com/rust-lang/crates.io-index"
177checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
178
179[[package]]
180name = "heck"
181version = "0.4.1"
182source = "registry+https://github.com/rust-lang/crates.io-index"
183checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
184
185[[package]]
186name = "hermit-abi"
187version = "0.1.19"
188source = "registry+https://github.com/rust-lang/crates.io-index"
189checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
190dependencies = [
191 "libc",
192]
193
194[[package]]
195name = "hermit-abi"
196version = "0.3.0"
197source = "registry+https://github.com/rust-lang/crates.io-index"
198checksum = "856b5cb0902c2b6d65d5fd97dfa30f9b70c7538e770b98eab5ed52d8db923e01"
199
200[[package]]
201name = "humantime"
202version = "2.1.0"
203source = "registry+https://github.com/rust-lang/crates.io-index"
204checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
205
206[[package]]
207name = "io-lifetimes"
208version = "1.0.5"
209source = "registry+https://github.com/rust-lang/crates.io-index"
210checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3"
211dependencies = [
212 "libc",
213 "windows-sys",
214]
215
216[[package]]
217name = "is-terminal"
218version = "0.4.3"
219source = "registry+https://github.com/rust-lang/crates.io-index"
220checksum = "22e18b0a45d56fe973d6db23972bf5bc46f988a4a2385deac9cc29572f09daef"
221dependencies = [
222 "hermit-abi 0.3.0",
223 "io-lifetimes",
224 "rustix",
225 "windows-sys",
226]
227
228[[package]]
229name = "lazy_static"
230version = "1.4.0"
231source = "registry+https://github.com/rust-lang/crates.io-index"
232checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
233
234[[package]]
235name = "lazycell"
236version = "1.3.0"
237source = "registry+https://github.com/rust-lang/crates.io-index"
238checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
239
240[[package]]
241name = "libc"
242version = "0.2.139"
243source = "registry+https://github.com/rust-lang/crates.io-index"
244checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
245
246[[package]]
247name = "libloading"
248version = "0.7.4"
249source = "registry+https://github.com/rust-lang/crates.io-index"
250checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
251dependencies = [
252 "cfg-if",
253 "winapi",
254]
255
256[[package]]
257name = "linux-raw-sys"
258version = "0.1.4"
259source = "registry+https://github.com/rust-lang/crates.io-index"
260checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
261
262[[package]]
263name = "log"
264version = "0.4.17"
265source = "registry+https://github.com/rust-lang/crates.io-index"
266checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
267dependencies = [
268 "cfg-if",
269]
270
271[[package]]
272name = "memchr"
273version = "2.5.0"
274source = "registry+https://github.com/rust-lang/crates.io-index"
275checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
276
277[[package]]
278name = "minimal-lexical"
279version = "0.2.1"
280source = "registry+https://github.com/rust-lang/crates.io-index"
281checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
282
283[[package]]
284name = "nom"
285version = "7.1.3"
286source = "registry+https://github.com/rust-lang/crates.io-index"
287checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
288dependencies = [
289 "memchr",
290 "minimal-lexical",
291]
292
293[[package]]
294name = "once_cell"
295version = "1.17.0"
296source = "registry+https://github.com/rust-lang/crates.io-index"
297checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
298
299[[package]]
300name = "os_str_bytes"
301version = "6.4.1"
302source = "registry+https://github.com/rust-lang/crates.io-index"
303checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
304
305[[package]]
306name = "peeking_take_while"
307version = "0.1.2"
308source = "registry+https://github.com/rust-lang/crates.io-index"
309checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
310
311[[package]]
312name = "proc-macro-error"
313version = "1.0.4"
314source = "registry+https://github.com/rust-lang/crates.io-index"
315checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
316dependencies = [
317 "proc-macro-error-attr",
318 "proc-macro2",
319 "quote",
320 "syn",
321 "version_check",
322]
323
324[[package]]
325name = "proc-macro-error-attr"
326version = "1.0.4"
327source = "registry+https://github.com/rust-lang/crates.io-index"
328checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
329dependencies = [
330 "proc-macro2",
331 "quote",
332 "version_check",
333]
334
335[[package]]
336name = "proc-macro2"
337version = "1.0.51"
338source = "registry+https://github.com/rust-lang/crates.io-index"
339checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6"
340dependencies = [
341 "unicode-ident",
342]
343
344[[package]]
345name = "quote"
346version = "1.0.23"
347source = "registry+https://github.com/rust-lang/crates.io-index"
348checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
349dependencies = [
350 "proc-macro2",
351]
352
353[[package]]
354name = "regex"
355version = "1.7.1"
356source = "registry+https://github.com/rust-lang/crates.io-index"
357checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
358dependencies = [
359 "aho-corasick",
360 "memchr",
361 "regex-syntax",
362]
363
364[[package]]
365name = "regex-syntax"
366version = "0.6.28"
367source = "registry+https://github.com/rust-lang/crates.io-index"
368checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
369
370[[package]]
371name = "rustc-hash"
372version = "1.1.0"
373source = "registry+https://github.com/rust-lang/crates.io-index"
374checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
375
376[[package]]
377name = "rustix"
378version = "0.36.8"
379source = "registry+https://github.com/rust-lang/crates.io-index"
380checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644"
381dependencies = [
382 "bitflags",
383 "errno",
384 "io-lifetimes",
385 "libc",
386 "linux-raw-sys",
387 "windows-sys",
388]
389
390[[package]]
391name = "shlex"
392version = "1.1.0"
393source = "registry+https://github.com/rust-lang/crates.io-index"
394checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
395
396[[package]]
397name = "strsim"
398version = "0.10.0"
399source = "registry+https://github.com/rust-lang/crates.io-index"
400checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
401
402[[package]]
403name = "syn"
404version = "1.0.107"
405source = "registry+https://github.com/rust-lang/crates.io-index"
406checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
407dependencies = [
408 "proc-macro2",
409 "quote",
410 "unicode-ident",
411]
412
413[[package]]
414name = "termcolor"
415version = "1.2.0"
416source = "registry+https://github.com/rust-lang/crates.io-index"
417checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
418dependencies = [
419 "winapi-util",
420]
421
422[[package]]
423name = "unicode-ident"
424version = "1.0.6"
425source = "registry+https://github.com/rust-lang/crates.io-index"
426checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
427
428[[package]]
429name = "version_check"
430version = "0.9.4"
431source = "registry+https://github.com/rust-lang/crates.io-index"
432checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
433
434[[package]]
435name = "which"
436version = "4.4.0"
437source = "registry+https://github.com/rust-lang/crates.io-index"
438checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
439dependencies = [
440 "either",
441 "libc",
442 "once_cell",
443]
444
445[[package]]
446name = "winapi"
447version = "0.3.9"
448source = "registry+https://github.com/rust-lang/crates.io-index"
449checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
450dependencies = [
451 "winapi-i686-pc-windows-gnu",
452 "winapi-x86_64-pc-windows-gnu",
453]
454
455[[package]]
456name = "winapi-i686-pc-windows-gnu"
457version = "0.4.0"
458source = "registry+https://github.com/rust-lang/crates.io-index"
459checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
460
461[[package]]
462name = "winapi-util"
463version = "0.1.5"
464source = "registry+https://github.com/rust-lang/crates.io-index"
465checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
466dependencies = [
467 "winapi",
468]
469
470[[package]]
471name = "winapi-x86_64-pc-windows-gnu"
472version = "0.4.0"
473source = "registry+https://github.com/rust-lang/crates.io-index"
474checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
475
476[[package]]
477name = "windows-sys"
478version = "0.45.0"
479source = "registry+https://github.com/rust-lang/crates.io-index"
480checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
481dependencies = [
482 "windows-targets",
483]
484
485[[package]]
486name = "windows-targets"
487version = "0.42.1"
488source = "registry+https://github.com/rust-lang/crates.io-index"
489checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
490dependencies = [
491 "windows_aarch64_gnullvm",
492 "windows_aarch64_msvc",
493 "windows_i686_gnu",
494 "windows_i686_msvc",
495 "windows_x86_64_gnu",
496 "windows_x86_64_gnullvm",
497 "windows_x86_64_msvc",
498]
499
500[[package]]
501name = "windows_aarch64_gnullvm"
502version = "0.42.1"
503source = "registry+https://github.com/rust-lang/crates.io-index"
504checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
505
506[[package]]
507name = "windows_aarch64_msvc"
508version = "0.42.1"
509source = "registry+https://github.com/rust-lang/crates.io-index"
510checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
511
512[[package]]
513name = "windows_i686_gnu"
514version = "0.42.1"
515source = "registry+https://github.com/rust-lang/crates.io-index"
516checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
517
518[[package]]
519name = "windows_i686_msvc"
520version = "0.42.1"
521source = "registry+https://github.com/rust-lang/crates.io-index"
522checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
523
524[[package]]
525name = "windows_x86_64_gnu"
526version = "0.42.1"
527source = "registry+https://github.com/rust-lang/crates.io-index"
528checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
529
530[[package]]
531name = "windows_x86_64_gnullvm"
532version = "0.42.1"
533source = "registry+https://github.com/rust-lang/crates.io-index"
534checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
535
536[[package]]
537name = "windows_x86_64_msvc"
538version = "0.42.1"
539source = "registry+https://github.com/rust-lang/crates.io-index"
540checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
541