]> git.proxmox.com Git - rustc.git/blob - vendor/uuid/Cargo.lock
New upstream version 1.72.1+dfsg1
[rustc.git] / vendor / uuid / 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 = "ahash"
7 version = "0.8.3"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
10 dependencies = [
11 "cfg-if",
12 "once_cell",
13 "version_check",
14 ]
15
16 [[package]]
17 name = "arbitrary"
18 version = "1.3.0"
19 source = "registry+https://github.com/rust-lang/crates.io-index"
20 checksum = "e2d098ff73c1ca148721f37baad5ea6a465a13f9573aba8641fbbbae8164a54e"
21
22 [[package]]
23 name = "atomic"
24 version = "0.5.3"
25 source = "registry+https://github.com/rust-lang/crates.io-index"
26 checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba"
27
28 [[package]]
29 name = "basic-toml"
30 version = "0.1.2"
31 source = "registry+https://github.com/rust-lang/crates.io-index"
32 checksum = "5c0de75129aa8d0cceaf750b89013f0e08804d6ec61416da787b35ad0d7cddf1"
33 dependencies = [
34 "serde",
35 ]
36
37 [[package]]
38 name = "bincode"
39 version = "1.3.3"
40 source = "registry+https://github.com/rust-lang/crates.io-index"
41 checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
42 dependencies = [
43 "serde",
44 ]
45
46 [[package]]
47 name = "block-buffer"
48 version = "0.10.4"
49 source = "registry+https://github.com/rust-lang/crates.io-index"
50 checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
51 dependencies = [
52 "generic-array",
53 ]
54
55 [[package]]
56 name = "borsh"
57 version = "0.10.3"
58 source = "registry+https://github.com/rust-lang/crates.io-index"
59 checksum = "4114279215a005bc675e386011e594e1d9b800918cea18fcadadcce864a2046b"
60 dependencies = [
61 "borsh-derive",
62 "hashbrown",
63 ]
64
65 [[package]]
66 name = "borsh-derive"
67 version = "0.10.3"
68 source = "registry+https://github.com/rust-lang/crates.io-index"
69 checksum = "0754613691538d51f329cce9af41d7b7ca150bc973056f1156611489475f54f7"
70 dependencies = [
71 "borsh-derive-internal",
72 "borsh-schema-derive-internal",
73 "proc-macro-crate",
74 "proc-macro2",
75 "syn 1.0.109",
76 ]
77
78 [[package]]
79 name = "borsh-derive-internal"
80 version = "0.10.3"
81 source = "registry+https://github.com/rust-lang/crates.io-index"
82 checksum = "afb438156919598d2c7bad7e1c0adf3d26ed3840dbc010db1a882a65583ca2fb"
83 dependencies = [
84 "proc-macro2",
85 "quote",
86 "syn 1.0.109",
87 ]
88
89 [[package]]
90 name = "borsh-schema-derive-internal"
91 version = "0.10.3"
92 source = "registry+https://github.com/rust-lang/crates.io-index"
93 checksum = "634205cc43f74a1b9046ef87c4540ebda95696ec0f315024860cad7c5b0f5ccd"
94 dependencies = [
95 "proc-macro2",
96 "quote",
97 "syn 1.0.109",
98 ]
99
100 [[package]]
101 name = "bumpalo"
102 version = "3.13.0"
103 source = "registry+https://github.com/rust-lang/crates.io-index"
104 checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
105
106 [[package]]
107 name = "byteorder"
108 version = "1.4.3"
109 source = "registry+https://github.com/rust-lang/crates.io-index"
110 checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
111
112 [[package]]
113 name = "cfg-if"
114 version = "1.0.0"
115 source = "registry+https://github.com/rust-lang/crates.io-index"
116 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
117
118 [[package]]
119 name = "console_error_panic_hook"
120 version = "0.1.7"
121 source = "registry+https://github.com/rust-lang/crates.io-index"
122 checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
123 dependencies = [
124 "cfg-if",
125 "wasm-bindgen",
126 ]
127
128 [[package]]
129 name = "crypto-common"
130 version = "0.1.6"
131 source = "registry+https://github.com/rust-lang/crates.io-index"
132 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
133 dependencies = [
134 "generic-array",
135 "typenum",
136 ]
137
138 [[package]]
139 name = "digest"
140 version = "0.10.7"
141 source = "registry+https://github.com/rust-lang/crates.io-index"
142 checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
143 dependencies = [
144 "block-buffer",
145 "crypto-common",
146 ]
147
148 [[package]]
149 name = "generic-array"
150 version = "0.14.7"
151 source = "registry+https://github.com/rust-lang/crates.io-index"
152 checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
153 dependencies = [
154 "typenum",
155 "version_check",
156 ]
157
158 [[package]]
159 name = "getrandom"
160 version = "0.2.10"
161 source = "registry+https://github.com/rust-lang/crates.io-index"
162 checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
163 dependencies = [
164 "cfg-if",
165 "js-sys",
166 "libc",
167 "wasi",
168 "wasm-bindgen",
169 ]
170
171 [[package]]
172 name = "glob"
173 version = "0.3.1"
174 source = "registry+https://github.com/rust-lang/crates.io-index"
175 checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
176
177 [[package]]
178 name = "hashbrown"
179 version = "0.13.2"
180 source = "registry+https://github.com/rust-lang/crates.io-index"
181 checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
182 dependencies = [
183 "ahash",
184 ]
185
186 [[package]]
187 name = "itoa"
188 version = "1.0.6"
189 source = "registry+https://github.com/rust-lang/crates.io-index"
190 checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
191
192 [[package]]
193 name = "js-sys"
194 version = "0.3.64"
195 source = "registry+https://github.com/rust-lang/crates.io-index"
196 checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
197 dependencies = [
198 "wasm-bindgen",
199 ]
200
201 [[package]]
202 name = "libc"
203 version = "0.2.147"
204 source = "registry+https://github.com/rust-lang/crates.io-index"
205 checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
206
207 [[package]]
208 name = "log"
209 version = "0.4.19"
210 source = "registry+https://github.com/rust-lang/crates.io-index"
211 checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
212
213 [[package]]
214 name = "md-5"
215 version = "0.10.5"
216 source = "registry+https://github.com/rust-lang/crates.io-index"
217 checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
218 dependencies = [
219 "digest",
220 ]
221
222 [[package]]
223 name = "once_cell"
224 version = "1.18.0"
225 source = "registry+https://github.com/rust-lang/crates.io-index"
226 checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
227
228 [[package]]
229 name = "ppv-lite86"
230 version = "0.2.17"
231 source = "registry+https://github.com/rust-lang/crates.io-index"
232 checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
233
234 [[package]]
235 name = "proc-macro-crate"
236 version = "0.1.5"
237 source = "registry+https://github.com/rust-lang/crates.io-index"
238 checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
239 dependencies = [
240 "toml",
241 ]
242
243 [[package]]
244 name = "proc-macro2"
245 version = "1.0.63"
246 source = "registry+https://github.com/rust-lang/crates.io-index"
247 checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb"
248 dependencies = [
249 "unicode-ident",
250 ]
251
252 [[package]]
253 name = "quote"
254 version = "1.0.28"
255 source = "registry+https://github.com/rust-lang/crates.io-index"
256 checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488"
257 dependencies = [
258 "proc-macro2",
259 ]
260
261 [[package]]
262 name = "rand"
263 version = "0.8.5"
264 source = "registry+https://github.com/rust-lang/crates.io-index"
265 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
266 dependencies = [
267 "libc",
268 "rand_chacha",
269 "rand_core",
270 ]
271
272 [[package]]
273 name = "rand_chacha"
274 version = "0.3.1"
275 source = "registry+https://github.com/rust-lang/crates.io-index"
276 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
277 dependencies = [
278 "ppv-lite86",
279 "rand_core",
280 ]
281
282 [[package]]
283 name = "rand_core"
284 version = "0.6.4"
285 source = "registry+https://github.com/rust-lang/crates.io-index"
286 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
287 dependencies = [
288 "getrandom",
289 ]
290
291 [[package]]
292 name = "rustversion"
293 version = "1.0.12"
294 source = "registry+https://github.com/rust-lang/crates.io-index"
295 checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
296
297 [[package]]
298 name = "ryu"
299 version = "1.0.13"
300 source = "registry+https://github.com/rust-lang/crates.io-index"
301 checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
302
303 [[package]]
304 name = "scoped-tls"
305 version = "1.0.1"
306 source = "registry+https://github.com/rust-lang/crates.io-index"
307 checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
308
309 [[package]]
310 name = "serde"
311 version = "1.0.164"
312 source = "registry+https://github.com/rust-lang/crates.io-index"
313 checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d"
314
315 [[package]]
316 name = "serde_derive"
317 version = "1.0.164"
318 source = "registry+https://github.com/rust-lang/crates.io-index"
319 checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68"
320 dependencies = [
321 "proc-macro2",
322 "quote",
323 "syn 2.0.22",
324 ]
325
326 [[package]]
327 name = "serde_json"
328 version = "1.0.99"
329 source = "registry+https://github.com/rust-lang/crates.io-index"
330 checksum = "46266871c240a00b8f503b877622fe33430b3c7d963bdc0f2adc511e54a1eae3"
331 dependencies = [
332 "itoa",
333 "ryu",
334 "serde",
335 ]
336
337 [[package]]
338 name = "serde_test"
339 version = "1.0.164"
340 source = "registry+https://github.com/rust-lang/crates.io-index"
341 checksum = "797c38160e2546a56e1e3439496439597e938669673ffd8af02a12f070da648f"
342 dependencies = [
343 "serde",
344 ]
345
346 [[package]]
347 name = "sha1_smol"
348 version = "1.0.0"
349 source = "registry+https://github.com/rust-lang/crates.io-index"
350 checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
351
352 [[package]]
353 name = "slog"
354 version = "2.7.0"
355 source = "registry+https://github.com/rust-lang/crates.io-index"
356 checksum = "8347046d4ebd943127157b94d63abb990fcf729dc4e9978927fdf4ac3c998d06"
357
358 [[package]]
359 name = "syn"
360 version = "1.0.109"
361 source = "registry+https://github.com/rust-lang/crates.io-index"
362 checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
363 dependencies = [
364 "proc-macro2",
365 "quote",
366 "unicode-ident",
367 ]
368
369 [[package]]
370 name = "syn"
371 version = "2.0.22"
372 source = "registry+https://github.com/rust-lang/crates.io-index"
373 checksum = "2efbeae7acf4eabd6bcdcbd11c92f45231ddda7539edc7806bd1a04a03b24616"
374 dependencies = [
375 "proc-macro2",
376 "quote",
377 "unicode-ident",
378 ]
379
380 [[package]]
381 name = "termcolor"
382 version = "1.2.0"
383 source = "registry+https://github.com/rust-lang/crates.io-index"
384 checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
385 dependencies = [
386 "winapi-util",
387 ]
388
389 [[package]]
390 name = "toml"
391 version = "0.5.11"
392 source = "registry+https://github.com/rust-lang/crates.io-index"
393 checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
394 dependencies = [
395 "serde",
396 ]
397
398 [[package]]
399 name = "trybuild"
400 version = "1.0.80"
401 source = "registry+https://github.com/rust-lang/crates.io-index"
402 checksum = "501dbdbb99861e4ab6b60eb6a7493956a9defb644fd034bc4a5ef27c693c8a3a"
403 dependencies = [
404 "basic-toml",
405 "glob",
406 "once_cell",
407 "serde",
408 "serde_derive",
409 "serde_json",
410 "termcolor",
411 ]
412
413 [[package]]
414 name = "typenum"
415 version = "1.16.0"
416 source = "registry+https://github.com/rust-lang/crates.io-index"
417 checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
418
419 [[package]]
420 name = "unicode-ident"
421 version = "1.0.9"
422 source = "registry+https://github.com/rust-lang/crates.io-index"
423 checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0"
424
425 [[package]]
426 name = "uuid"
427 version = "1.4.0"
428 dependencies = [
429 "arbitrary",
430 "atomic",
431 "bincode",
432 "borsh",
433 "getrandom",
434 "md-5",
435 "rand",
436 "rustversion",
437 "serde",
438 "serde_derive",
439 "serde_json",
440 "serde_test",
441 "sha1_smol",
442 "slog",
443 "trybuild",
444 "uuid-macro-internal",
445 "wasm-bindgen",
446 "wasm-bindgen-test",
447 "windows-sys",
448 "zerocopy",
449 ]
450
451 [[package]]
452 name = "uuid-macro-internal"
453 version = "1.4.0"
454 source = "registry+https://github.com/rust-lang/crates.io-index"
455 checksum = "8614dda80b9075fbca36bc31b58d1447715b1236af98dee21db521c47a0cc2c0"
456 dependencies = [
457 "proc-macro2",
458 "quote",
459 "syn 2.0.22",
460 ]
461
462 [[package]]
463 name = "version_check"
464 version = "0.9.4"
465 source = "registry+https://github.com/rust-lang/crates.io-index"
466 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
467
468 [[package]]
469 name = "wasi"
470 version = "0.11.0+wasi-snapshot-preview1"
471 source = "registry+https://github.com/rust-lang/crates.io-index"
472 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
473
474 [[package]]
475 name = "wasm-bindgen"
476 version = "0.2.87"
477 source = "registry+https://github.com/rust-lang/crates.io-index"
478 checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
479 dependencies = [
480 "cfg-if",
481 "wasm-bindgen-macro",
482 ]
483
484 [[package]]
485 name = "wasm-bindgen-backend"
486 version = "0.2.87"
487 source = "registry+https://github.com/rust-lang/crates.io-index"
488 checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
489 dependencies = [
490 "bumpalo",
491 "log",
492 "once_cell",
493 "proc-macro2",
494 "quote",
495 "syn 2.0.22",
496 "wasm-bindgen-shared",
497 ]
498
499 [[package]]
500 name = "wasm-bindgen-futures"
501 version = "0.4.37"
502 source = "registry+https://github.com/rust-lang/crates.io-index"
503 checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
504 dependencies = [
505 "cfg-if",
506 "js-sys",
507 "wasm-bindgen",
508 "web-sys",
509 ]
510
511 [[package]]
512 name = "wasm-bindgen-macro"
513 version = "0.2.87"
514 source = "registry+https://github.com/rust-lang/crates.io-index"
515 checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
516 dependencies = [
517 "quote",
518 "wasm-bindgen-macro-support",
519 ]
520
521 [[package]]
522 name = "wasm-bindgen-macro-support"
523 version = "0.2.87"
524 source = "registry+https://github.com/rust-lang/crates.io-index"
525 checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
526 dependencies = [
527 "proc-macro2",
528 "quote",
529 "syn 2.0.22",
530 "wasm-bindgen-backend",
531 "wasm-bindgen-shared",
532 ]
533
534 [[package]]
535 name = "wasm-bindgen-shared"
536 version = "0.2.87"
537 source = "registry+https://github.com/rust-lang/crates.io-index"
538 checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
539
540 [[package]]
541 name = "wasm-bindgen-test"
542 version = "0.3.37"
543 source = "registry+https://github.com/rust-lang/crates.io-index"
544 checksum = "6e6e302a7ea94f83a6d09e78e7dc7d9ca7b186bc2829c24a22d0753efd680671"
545 dependencies = [
546 "console_error_panic_hook",
547 "js-sys",
548 "scoped-tls",
549 "wasm-bindgen",
550 "wasm-bindgen-futures",
551 "wasm-bindgen-test-macro",
552 ]
553
554 [[package]]
555 name = "wasm-bindgen-test-macro"
556 version = "0.3.37"
557 source = "registry+https://github.com/rust-lang/crates.io-index"
558 checksum = "ecb993dd8c836930ed130e020e77d9b2e65dd0fbab1b67c790b0f5d80b11a575"
559 dependencies = [
560 "proc-macro2",
561 "quote",
562 ]
563
564 [[package]]
565 name = "web-sys"
566 version = "0.3.64"
567 source = "registry+https://github.com/rust-lang/crates.io-index"
568 checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
569 dependencies = [
570 "js-sys",
571 "wasm-bindgen",
572 ]
573
574 [[package]]
575 name = "winapi"
576 version = "0.3.9"
577 source = "registry+https://github.com/rust-lang/crates.io-index"
578 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
579 dependencies = [
580 "winapi-i686-pc-windows-gnu",
581 "winapi-x86_64-pc-windows-gnu",
582 ]
583
584 [[package]]
585 name = "winapi-i686-pc-windows-gnu"
586 version = "0.4.0"
587 source = "registry+https://github.com/rust-lang/crates.io-index"
588 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
589
590 [[package]]
591 name = "winapi-util"
592 version = "0.1.5"
593 source = "registry+https://github.com/rust-lang/crates.io-index"
594 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
595 dependencies = [
596 "winapi",
597 ]
598
599 [[package]]
600 name = "winapi-x86_64-pc-windows-gnu"
601 version = "0.4.0"
602 source = "registry+https://github.com/rust-lang/crates.io-index"
603 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
604
605 [[package]]
606 name = "windows-sys"
607 version = "0.48.0"
608 source = "registry+https://github.com/rust-lang/crates.io-index"
609 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
610 dependencies = [
611 "windows-targets",
612 ]
613
614 [[package]]
615 name = "windows-targets"
616 version = "0.48.0"
617 source = "registry+https://github.com/rust-lang/crates.io-index"
618 checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
619 dependencies = [
620 "windows_aarch64_gnullvm",
621 "windows_aarch64_msvc",
622 "windows_i686_gnu",
623 "windows_i686_msvc",
624 "windows_x86_64_gnu",
625 "windows_x86_64_gnullvm",
626 "windows_x86_64_msvc",
627 ]
628
629 [[package]]
630 name = "windows_aarch64_gnullvm"
631 version = "0.48.0"
632 source = "registry+https://github.com/rust-lang/crates.io-index"
633 checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
634
635 [[package]]
636 name = "windows_aarch64_msvc"
637 version = "0.48.0"
638 source = "registry+https://github.com/rust-lang/crates.io-index"
639 checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
640
641 [[package]]
642 name = "windows_i686_gnu"
643 version = "0.48.0"
644 source = "registry+https://github.com/rust-lang/crates.io-index"
645 checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
646
647 [[package]]
648 name = "windows_i686_msvc"
649 version = "0.48.0"
650 source = "registry+https://github.com/rust-lang/crates.io-index"
651 checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
652
653 [[package]]
654 name = "windows_x86_64_gnu"
655 version = "0.48.0"
656 source = "registry+https://github.com/rust-lang/crates.io-index"
657 checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
658
659 [[package]]
660 name = "windows_x86_64_gnullvm"
661 version = "0.48.0"
662 source = "registry+https://github.com/rust-lang/crates.io-index"
663 checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
664
665 [[package]]
666 name = "windows_x86_64_msvc"
667 version = "0.48.0"
668 source = "registry+https://github.com/rust-lang/crates.io-index"
669 checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
670
671 [[package]]
672 name = "zerocopy"
673 version = "0.6.1"
674 source = "registry+https://github.com/rust-lang/crates.io-index"
675 checksum = "332f188cc1bcf1fe1064b8c58d150f497e697f49774aa846f2dc949d9a25f236"
676 dependencies = [
677 "byteorder",
678 "zerocopy-derive",
679 ]
680
681 [[package]]
682 name = "zerocopy-derive"
683 version = "0.3.2"
684 source = "registry+https://github.com/rust-lang/crates.io-index"
685 checksum = "6505e6815af7de1746a08f69c69606bb45695a17149517680f3b2149713b19a3"
686 dependencies = [
687 "proc-macro2",
688 "quote",
689 "syn 1.0.109",
690 ]