]> git.sesse.net Git - bcachefs-tools-debian/blob - Cargo.lock
move Rust sources to top level, C sources into c_src
[bcachefs-tools-debian] / 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 = "aho-corasick"
7 version = "1.1.2"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
10 dependencies = [
11  "memchr",
12 ]
13
14 [[package]]
15 name = "anstream"
16 version = "0.3.2"
17 source = "registry+https://github.com/rust-lang/crates.io-index"
18 checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
19 dependencies = [
20  "anstyle",
21  "anstyle-parse",
22  "anstyle-query",
23  "anstyle-wincon",
24  "colorchoice",
25  "is-terminal",
26  "utf8parse",
27 ]
28
29 [[package]]
30 name = "anstyle"
31 version = "1.0.2"
32 source = "registry+https://github.com/rust-lang/crates.io-index"
33 checksum = "15c4c2c83f81532e5845a733998b6971faca23490340a418e9b72a3ec9de12ea"
34
35 [[package]]
36 name = "anstyle-parse"
37 version = "0.2.1"
38 source = "registry+https://github.com/rust-lang/crates.io-index"
39 checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
40 dependencies = [
41  "utf8parse",
42 ]
43
44 [[package]]
45 name = "anstyle-query"
46 version = "1.0.0"
47 source = "registry+https://github.com/rust-lang/crates.io-index"
48 checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
49 dependencies = [
50  "windows-sys 0.48.0",
51 ]
52
53 [[package]]
54 name = "anstyle-wincon"
55 version = "1.0.2"
56 source = "registry+https://github.com/rust-lang/crates.io-index"
57 checksum = "c677ab05e09154296dd37acecd46420c17b9713e8366facafa8fc0885167cf4c"
58 dependencies = [
59  "anstyle",
60  "windows-sys 0.48.0",
61 ]
62
63 [[package]]
64 name = "anyhow"
65 version = "1.0.79"
66 source = "registry+https://github.com/rust-lang/crates.io-index"
67 checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
68
69 [[package]]
70 name = "atty"
71 version = "0.2.14"
72 source = "registry+https://github.com/rust-lang/crates.io-index"
73 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
74 dependencies = [
75  "hermit-abi 0.1.19",
76  "libc",
77  "winapi",
78 ]
79
80 [[package]]
81 name = "autocfg"
82 version = "1.1.0"
83 source = "registry+https://github.com/rust-lang/crates.io-index"
84 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
85
86 [[package]]
87 name = "bcachefs-tools"
88 version = "0.3.1"
89 dependencies = [
90  "anyhow",
91  "atty",
92  "bch_bindgen",
93  "byteorder",
94  "clap",
95  "clap_complete",
96  "colored",
97  "either",
98  "errno 0.2.8",
99  "gag",
100  "libc",
101  "log",
102  "rpassword",
103  "udev",
104  "uuid",
105 ]
106
107 [[package]]
108 name = "bch_bindgen"
109 version = "0.1.0"
110 dependencies = [
111  "anyhow",
112  "bindgen",
113  "bitfield",
114  "bitflags 1.3.2",
115  "byteorder",
116  "memoffset",
117  "paste",
118  "pkg-config",
119  "uuid",
120 ]
121
122 [[package]]
123 name = "bindgen"
124 version = "0.64.0"
125 source = "git+https://evilpiepirate.org/git/rust-bindgen.git#f773267b090bf16b9e8375fcbdcd8ba5e88806a8"
126 dependencies = [
127  "bitflags 1.3.2",
128  "cexpr",
129  "clang-sys",
130  "lazy_static",
131  "lazycell",
132  "peeking_take_while",
133  "proc-macro2",
134  "quote",
135  "regex",
136  "rustc-hash",
137  "shlex",
138  "syn 1.0.109",
139 ]
140
141 [[package]]
142 name = "bitfield"
143 version = "0.14.0"
144 source = "registry+https://github.com/rust-lang/crates.io-index"
145 checksum = "2d7e60934ceec538daadb9d8432424ed043a904d8e0243f3c6446bce549a46ac"
146
147 [[package]]
148 name = "bitflags"
149 version = "1.3.2"
150 source = "registry+https://github.com/rust-lang/crates.io-index"
151 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
152
153 [[package]]
154 name = "bitflags"
155 version = "2.4.1"
156 source = "registry+https://github.com/rust-lang/crates.io-index"
157 checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
158
159 [[package]]
160 name = "byteorder"
161 version = "1.5.0"
162 source = "registry+https://github.com/rust-lang/crates.io-index"
163 checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
164
165 [[package]]
166 name = "cc"
167 version = "1.0.83"
168 source = "registry+https://github.com/rust-lang/crates.io-index"
169 checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
170 dependencies = [
171  "libc",
172 ]
173
174 [[package]]
175 name = "cexpr"
176 version = "0.6.0"
177 source = "registry+https://github.com/rust-lang/crates.io-index"
178 checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
179 dependencies = [
180  "nom",
181 ]
182
183 [[package]]
184 name = "cfg-if"
185 version = "1.0.0"
186 source = "registry+https://github.com/rust-lang/crates.io-index"
187 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
188
189 [[package]]
190 name = "clang-sys"
191 version = "1.7.0"
192 source = "registry+https://github.com/rust-lang/crates.io-index"
193 checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
194 dependencies = [
195  "glob",
196  "libc",
197 ]
198
199 [[package]]
200 name = "clap"
201 version = "4.3.24"
202 source = "registry+https://github.com/rust-lang/crates.io-index"
203 checksum = "fb690e81c7840c0d7aade59f242ea3b41b9bc27bcd5997890e7702ae4b32e487"
204 dependencies = [
205  "clap_builder",
206  "clap_derive",
207  "once_cell",
208 ]
209
210 [[package]]
211 name = "clap_builder"
212 version = "4.3.24"
213 source = "registry+https://github.com/rust-lang/crates.io-index"
214 checksum = "5ed2e96bc16d8d740f6f48d663eddf4b8a0983e79210fd55479b7bcd0a69860e"
215 dependencies = [
216  "anstream",
217  "anstyle",
218  "clap_lex",
219  "strsim",
220  "terminal_size",
221 ]
222
223 [[package]]
224 name = "clap_complete"
225 version = "4.3.2"
226 source = "registry+https://github.com/rust-lang/crates.io-index"
227 checksum = "5fc443334c81a804575546c5a8a79b4913b50e28d69232903604cada1de817ce"
228 dependencies = [
229  "clap",
230 ]
231
232 [[package]]
233 name = "clap_derive"
234 version = "4.3.12"
235 source = "registry+https://github.com/rust-lang/crates.io-index"
236 checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050"
237 dependencies = [
238  "heck",
239  "proc-macro2",
240  "quote",
241  "syn 2.0.48",
242 ]
243
244 [[package]]
245 name = "clap_lex"
246 version = "0.5.0"
247 source = "registry+https://github.com/rust-lang/crates.io-index"
248 checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
249
250 [[package]]
251 name = "colorchoice"
252 version = "1.0.0"
253 source = "registry+https://github.com/rust-lang/crates.io-index"
254 checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
255
256 [[package]]
257 name = "colored"
258 version = "2.0.4"
259 source = "registry+https://github.com/rust-lang/crates.io-index"
260 checksum = "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6"
261 dependencies = [
262  "is-terminal",
263  "lazy_static",
264  "windows-sys 0.48.0",
265 ]
266
267 [[package]]
268 name = "either"
269 version = "1.9.0"
270 source = "registry+https://github.com/rust-lang/crates.io-index"
271 checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
272
273 [[package]]
274 name = "errno"
275 version = "0.2.8"
276 source = "registry+https://github.com/rust-lang/crates.io-index"
277 checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
278 dependencies = [
279  "errno-dragonfly",
280  "libc",
281  "winapi",
282 ]
283
284 [[package]]
285 name = "errno"
286 version = "0.3.8"
287 source = "registry+https://github.com/rust-lang/crates.io-index"
288 checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
289 dependencies = [
290  "libc",
291  "windows-sys 0.52.0",
292 ]
293
294 [[package]]
295 name = "errno-dragonfly"
296 version = "0.1.2"
297 source = "registry+https://github.com/rust-lang/crates.io-index"
298 checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
299 dependencies = [
300  "cc",
301  "libc",
302 ]
303
304 [[package]]
305 name = "fastrand"
306 version = "2.0.1"
307 source = "registry+https://github.com/rust-lang/crates.io-index"
308 checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
309
310 [[package]]
311 name = "filedescriptor"
312 version = "0.8.2"
313 source = "registry+https://github.com/rust-lang/crates.io-index"
314 checksum = "7199d965852c3bac31f779ef99cbb4537f80e952e2d6aa0ffeb30cce00f4f46e"
315 dependencies = [
316  "libc",
317  "thiserror",
318  "winapi",
319 ]
320
321 [[package]]
322 name = "gag"
323 version = "1.0.0"
324 source = "registry+https://github.com/rust-lang/crates.io-index"
325 checksum = "a713bee13966e9fbffdf7193af71d54a6b35a0bb34997cd6c9519ebeb5005972"
326 dependencies = [
327  "filedescriptor",
328  "tempfile",
329 ]
330
331 [[package]]
332 name = "glob"
333 version = "0.3.1"
334 source = "registry+https://github.com/rust-lang/crates.io-index"
335 checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
336
337 [[package]]
338 name = "heck"
339 version = "0.4.1"
340 source = "registry+https://github.com/rust-lang/crates.io-index"
341 checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
342
343 [[package]]
344 name = "hermit-abi"
345 version = "0.1.19"
346 source = "registry+https://github.com/rust-lang/crates.io-index"
347 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
348 dependencies = [
349  "libc",
350 ]
351
352 [[package]]
353 name = "hermit-abi"
354 version = "0.3.3"
355 source = "registry+https://github.com/rust-lang/crates.io-index"
356 checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
357
358 [[package]]
359 name = "io-lifetimes"
360 version = "1.0.11"
361 source = "registry+https://github.com/rust-lang/crates.io-index"
362 checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
363 dependencies = [
364  "hermit-abi 0.3.3",
365  "libc",
366  "windows-sys 0.48.0",
367 ]
368
369 [[package]]
370 name = "is-terminal"
371 version = "0.4.10"
372 source = "registry+https://github.com/rust-lang/crates.io-index"
373 checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455"
374 dependencies = [
375  "hermit-abi 0.3.3",
376  "rustix 0.38.30",
377  "windows-sys 0.52.0",
378 ]
379
380 [[package]]
381 name = "lazy_static"
382 version = "1.4.0"
383 source = "registry+https://github.com/rust-lang/crates.io-index"
384 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
385
386 [[package]]
387 name = "lazycell"
388 version = "1.3.0"
389 source = "registry+https://github.com/rust-lang/crates.io-index"
390 checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
391
392 [[package]]
393 name = "libc"
394 version = "0.2.152"
395 source = "registry+https://github.com/rust-lang/crates.io-index"
396 checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7"
397
398 [[package]]
399 name = "libudev-sys"
400 version = "0.1.4"
401 source = "registry+https://github.com/rust-lang/crates.io-index"
402 checksum = "3c8469b4a23b962c1396b9b451dda50ef5b283e8dd309d69033475fa9b334324"
403 dependencies = [
404  "libc",
405  "pkg-config",
406 ]
407
408 [[package]]
409 name = "linux-raw-sys"
410 version = "0.3.8"
411 source = "registry+https://github.com/rust-lang/crates.io-index"
412 checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
413
414 [[package]]
415 name = "linux-raw-sys"
416 version = "0.4.12"
417 source = "registry+https://github.com/rust-lang/crates.io-index"
418 checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
419
420 [[package]]
421 name = "log"
422 version = "0.4.20"
423 source = "registry+https://github.com/rust-lang/crates.io-index"
424 checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
425
426 [[package]]
427 name = "memchr"
428 version = "2.7.1"
429 source = "registry+https://github.com/rust-lang/crates.io-index"
430 checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
431
432 [[package]]
433 name = "memoffset"
434 version = "0.8.0"
435 source = "registry+https://github.com/rust-lang/crates.io-index"
436 checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
437 dependencies = [
438  "autocfg",
439 ]
440
441 [[package]]
442 name = "minimal-lexical"
443 version = "0.2.1"
444 source = "registry+https://github.com/rust-lang/crates.io-index"
445 checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
446
447 [[package]]
448 name = "nom"
449 version = "7.1.3"
450 source = "registry+https://github.com/rust-lang/crates.io-index"
451 checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
452 dependencies = [
453  "memchr",
454  "minimal-lexical",
455 ]
456
457 [[package]]
458 name = "once_cell"
459 version = "1.19.0"
460 source = "registry+https://github.com/rust-lang/crates.io-index"
461 checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
462
463 [[package]]
464 name = "paste"
465 version = "1.0.14"
466 source = "registry+https://github.com/rust-lang/crates.io-index"
467 checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
468
469 [[package]]
470 name = "peeking_take_while"
471 version = "0.1.2"
472 source = "registry+https://github.com/rust-lang/crates.io-index"
473 checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
474
475 [[package]]
476 name = "pkg-config"
477 version = "0.3.28"
478 source = "registry+https://github.com/rust-lang/crates.io-index"
479 checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a"
480
481 [[package]]
482 name = "proc-macro2"
483 version = "1.0.76"
484 source = "registry+https://github.com/rust-lang/crates.io-index"
485 checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c"
486 dependencies = [
487  "unicode-ident",
488 ]
489
490 [[package]]
491 name = "quote"
492 version = "1.0.35"
493 source = "registry+https://github.com/rust-lang/crates.io-index"
494 checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
495 dependencies = [
496  "proc-macro2",
497 ]
498
499 [[package]]
500 name = "redox_syscall"
501 version = "0.4.1"
502 source = "registry+https://github.com/rust-lang/crates.io-index"
503 checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
504 dependencies = [
505  "bitflags 1.3.2",
506 ]
507
508 [[package]]
509 name = "regex"
510 version = "1.10.2"
511 source = "registry+https://github.com/rust-lang/crates.io-index"
512 checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
513 dependencies = [
514  "aho-corasick",
515  "memchr",
516  "regex-automata",
517  "regex-syntax",
518 ]
519
520 [[package]]
521 name = "regex-automata"
522 version = "0.4.3"
523 source = "registry+https://github.com/rust-lang/crates.io-index"
524 checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
525 dependencies = [
526  "aho-corasick",
527  "memchr",
528  "regex-syntax",
529 ]
530
531 [[package]]
532 name = "regex-syntax"
533 version = "0.8.2"
534 source = "registry+https://github.com/rust-lang/crates.io-index"
535 checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
536
537 [[package]]
538 name = "rpassword"
539 version = "4.0.5"
540 source = "registry+https://github.com/rust-lang/crates.io-index"
541 checksum = "99371657d3c8e4d816fb6221db98fa408242b0b53bac08f8676a41f8554fe99f"
542 dependencies = [
543  "libc",
544  "winapi",
545 ]
546
547 [[package]]
548 name = "rustc-hash"
549 version = "1.1.0"
550 source = "registry+https://github.com/rust-lang/crates.io-index"
551 checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
552
553 [[package]]
554 name = "rustix"
555 version = "0.37.27"
556 source = "registry+https://github.com/rust-lang/crates.io-index"
557 checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
558 dependencies = [
559  "bitflags 1.3.2",
560  "errno 0.3.8",
561  "io-lifetimes",
562  "libc",
563  "linux-raw-sys 0.3.8",
564  "windows-sys 0.48.0",
565 ]
566
567 [[package]]
568 name = "rustix"
569 version = "0.38.30"
570 source = "registry+https://github.com/rust-lang/crates.io-index"
571 checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca"
572 dependencies = [
573  "bitflags 2.4.1",
574  "errno 0.3.8",
575  "libc",
576  "linux-raw-sys 0.4.12",
577  "windows-sys 0.52.0",
578 ]
579
580 [[package]]
581 name = "shlex"
582 version = "1.2.0"
583 source = "registry+https://github.com/rust-lang/crates.io-index"
584 checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
585
586 [[package]]
587 name = "strsim"
588 version = "0.10.0"
589 source = "registry+https://github.com/rust-lang/crates.io-index"
590 checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
591
592 [[package]]
593 name = "syn"
594 version = "1.0.109"
595 source = "registry+https://github.com/rust-lang/crates.io-index"
596 checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
597 dependencies = [
598  "proc-macro2",
599  "quote",
600  "unicode-ident",
601 ]
602
603 [[package]]
604 name = "syn"
605 version = "2.0.48"
606 source = "registry+https://github.com/rust-lang/crates.io-index"
607 checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
608 dependencies = [
609  "proc-macro2",
610  "quote",
611  "unicode-ident",
612 ]
613
614 [[package]]
615 name = "tempfile"
616 version = "3.9.0"
617 source = "registry+https://github.com/rust-lang/crates.io-index"
618 checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
619 dependencies = [
620  "cfg-if",
621  "fastrand",
622  "redox_syscall",
623  "rustix 0.38.30",
624  "windows-sys 0.52.0",
625 ]
626
627 [[package]]
628 name = "terminal_size"
629 version = "0.2.6"
630 source = "registry+https://github.com/rust-lang/crates.io-index"
631 checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237"
632 dependencies = [
633  "rustix 0.37.27",
634  "windows-sys 0.48.0",
635 ]
636
637 [[package]]
638 name = "thiserror"
639 version = "1.0.56"
640 source = "registry+https://github.com/rust-lang/crates.io-index"
641 checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
642 dependencies = [
643  "thiserror-impl",
644 ]
645
646 [[package]]
647 name = "thiserror-impl"
648 version = "1.0.56"
649 source = "registry+https://github.com/rust-lang/crates.io-index"
650 checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
651 dependencies = [
652  "proc-macro2",
653  "quote",
654  "syn 2.0.48",
655 ]
656
657 [[package]]
658 name = "udev"
659 version = "0.7.0"
660 source = "registry+https://github.com/rust-lang/crates.io-index"
661 checksum = "4ebdbbd670373442a12fe9ef7aeb53aec4147a5a27a00bbc3ab639f08f48191a"
662 dependencies = [
663  "libc",
664  "libudev-sys",
665  "pkg-config",
666 ]
667
668 [[package]]
669 name = "unicode-ident"
670 version = "1.0.12"
671 source = "registry+https://github.com/rust-lang/crates.io-index"
672 checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
673
674 [[package]]
675 name = "utf8parse"
676 version = "0.2.1"
677 source = "registry+https://github.com/rust-lang/crates.io-index"
678 checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
679
680 [[package]]
681 name = "uuid"
682 version = "1.6.1"
683 source = "registry+https://github.com/rust-lang/crates.io-index"
684 checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560"
685
686 [[package]]
687 name = "winapi"
688 version = "0.3.9"
689 source = "registry+https://github.com/rust-lang/crates.io-index"
690 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
691 dependencies = [
692  "winapi-i686-pc-windows-gnu",
693  "winapi-x86_64-pc-windows-gnu",
694 ]
695
696 [[package]]
697 name = "winapi-i686-pc-windows-gnu"
698 version = "0.4.0"
699 source = "registry+https://github.com/rust-lang/crates.io-index"
700 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
701
702 [[package]]
703 name = "winapi-x86_64-pc-windows-gnu"
704 version = "0.4.0"
705 source = "registry+https://github.com/rust-lang/crates.io-index"
706 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
707
708 [[package]]
709 name = "windows-sys"
710 version = "0.48.0"
711 source = "registry+https://github.com/rust-lang/crates.io-index"
712 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
713 dependencies = [
714  "windows-targets 0.48.5",
715 ]
716
717 [[package]]
718 name = "windows-sys"
719 version = "0.52.0"
720 source = "registry+https://github.com/rust-lang/crates.io-index"
721 checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
722 dependencies = [
723  "windows-targets 0.52.0",
724 ]
725
726 [[package]]
727 name = "windows-targets"
728 version = "0.48.5"
729 source = "registry+https://github.com/rust-lang/crates.io-index"
730 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
731 dependencies = [
732  "windows_aarch64_gnullvm 0.48.5",
733  "windows_aarch64_msvc 0.48.5",
734  "windows_i686_gnu 0.48.5",
735  "windows_i686_msvc 0.48.5",
736  "windows_x86_64_gnu 0.48.5",
737  "windows_x86_64_gnullvm 0.48.5",
738  "windows_x86_64_msvc 0.48.5",
739 ]
740
741 [[package]]
742 name = "windows-targets"
743 version = "0.52.0"
744 source = "registry+https://github.com/rust-lang/crates.io-index"
745 checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
746 dependencies = [
747  "windows_aarch64_gnullvm 0.52.0",
748  "windows_aarch64_msvc 0.52.0",
749  "windows_i686_gnu 0.52.0",
750  "windows_i686_msvc 0.52.0",
751  "windows_x86_64_gnu 0.52.0",
752  "windows_x86_64_gnullvm 0.52.0",
753  "windows_x86_64_msvc 0.52.0",
754 ]
755
756 [[package]]
757 name = "windows_aarch64_gnullvm"
758 version = "0.48.5"
759 source = "registry+https://github.com/rust-lang/crates.io-index"
760 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
761
762 [[package]]
763 name = "windows_aarch64_gnullvm"
764 version = "0.52.0"
765 source = "registry+https://github.com/rust-lang/crates.io-index"
766 checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
767
768 [[package]]
769 name = "windows_aarch64_msvc"
770 version = "0.48.5"
771 source = "registry+https://github.com/rust-lang/crates.io-index"
772 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
773
774 [[package]]
775 name = "windows_aarch64_msvc"
776 version = "0.52.0"
777 source = "registry+https://github.com/rust-lang/crates.io-index"
778 checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
779
780 [[package]]
781 name = "windows_i686_gnu"
782 version = "0.48.5"
783 source = "registry+https://github.com/rust-lang/crates.io-index"
784 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
785
786 [[package]]
787 name = "windows_i686_gnu"
788 version = "0.52.0"
789 source = "registry+https://github.com/rust-lang/crates.io-index"
790 checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
791
792 [[package]]
793 name = "windows_i686_msvc"
794 version = "0.48.5"
795 source = "registry+https://github.com/rust-lang/crates.io-index"
796 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
797
798 [[package]]
799 name = "windows_i686_msvc"
800 version = "0.52.0"
801 source = "registry+https://github.com/rust-lang/crates.io-index"
802 checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
803
804 [[package]]
805 name = "windows_x86_64_gnu"
806 version = "0.48.5"
807 source = "registry+https://github.com/rust-lang/crates.io-index"
808 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
809
810 [[package]]
811 name = "windows_x86_64_gnu"
812 version = "0.52.0"
813 source = "registry+https://github.com/rust-lang/crates.io-index"
814 checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
815
816 [[package]]
817 name = "windows_x86_64_gnullvm"
818 version = "0.48.5"
819 source = "registry+https://github.com/rust-lang/crates.io-index"
820 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
821
822 [[package]]
823 name = "windows_x86_64_gnullvm"
824 version = "0.52.0"
825 source = "registry+https://github.com/rust-lang/crates.io-index"
826 checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
827
828 [[package]]
829 name = "windows_x86_64_msvc"
830 version = "0.48.5"
831 source = "registry+https://github.com/rust-lang/crates.io-index"
832 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
833
834 [[package]]
835 name = "windows_x86_64_msvc"
836 version = "0.52.0"
837 source = "registry+https://github.com/rust-lang/crates.io-index"
838 checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"