comparison Cargo.lock @ 109:bb465393621f

Minor cleanup and reorg. - Use those nice new macros we just implemented. - Straighten out the macro file. - Move the `BinaryPayload` into `structs.rs`, leaving helpers behind.
author Paul Fisher <paul@pfish.zone>
date Sat, 28 Jun 2025 02:49:35 -0400
parents e97534be35e3
children 2346fd501b7a
comparison
equal deleted inserted replaced
108:e97534be35e3 109:bb465393621f
23 source = "registry+https://github.com/rust-lang/crates.io-index" 23 source = "registry+https://github.com/rust-lang/crates.io-index"
24 checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 24 checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
25 25
26 [[package]] 26 [[package]]
27 name = "bindgen" 27 name = "bindgen"
28 version = "0.69.5" 28 version = "0.72.0"
29 source = "registry+https://github.com/rust-lang/crates.io-index" 29 source = "registry+https://github.com/rust-lang/crates.io-index"
30 checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" 30 checksum = "4f72209734318d0b619a5e0f5129918b848c416e122a3c4ce054e03cb87b726f"
31 dependencies = [ 31 dependencies = [
32 "bitflags", 32 "bitflags",
33 "cexpr", 33 "cexpr",
34 "clang-sys", 34 "clang-sys",
35 "itertools 0.12.1", 35 "itertools",
36 "lazy_static",
37 "lazycell",
38 "log", 36 "log",
39 "prettyplease", 37 "prettyplease",
40 "proc-macro2", 38 "proc-macro2",
41 "quote", 39 "quote",
42 "regex", 40 "regex",
43 "rustc-hash 1.1.0", 41 "rustc-hash",
44 "shlex",
45 "syn",
46 "which",
47 ]
48
49 [[package]]
50 name = "bindgen"
51 version = "0.72.0"
52 source = "registry+https://github.com/rust-lang/crates.io-index"
53 checksum = "4f72209734318d0b619a5e0f5129918b848c416e122a3c4ce054e03cb87b726f"
54 dependencies = [
55 "bitflags",
56 "cexpr",
57 "clang-sys",
58 "itertools 0.13.0",
59 "log",
60 "prettyplease",
61 "proc-macro2",
62 "quote",
63 "regex",
64 "rustc-hash 2.1.1",
65 "shlex", 42 "shlex",
66 "syn", 43 "syn",
67 ] 44 ]
68 45
69 [[package]] 46 [[package]]
121 version = "1.0.2" 98 version = "1.0.2"
122 source = "registry+https://github.com/rust-lang/crates.io-index" 99 source = "registry+https://github.com/rust-lang/crates.io-index"
123 checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 100 checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
124 101
125 [[package]] 102 [[package]]
126 name = "errno"
127 version = "0.3.13"
128 source = "registry+https://github.com/rust-lang/crates.io-index"
129 checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
130 dependencies = [
131 "libc",
132 "windows-sys 0.60.2",
133 ]
134
135 [[package]]
136 name = "glob" 103 name = "glob"
137 version = "0.3.2" 104 version = "0.3.2"
138 source = "registry+https://github.com/rust-lang/crates.io-index" 105 source = "registry+https://github.com/rust-lang/crates.io-index"
139 checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" 106 checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
140 107
149 version = "0.5.0" 116 version = "0.5.0"
150 source = "registry+https://github.com/rust-lang/crates.io-index" 117 source = "registry+https://github.com/rust-lang/crates.io-index"
151 checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 118 checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
152 119
153 [[package]] 120 [[package]]
154 name = "home"
155 version = "0.5.5"
156 source = "registry+https://github.com/rust-lang/crates.io-index"
157 checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
158 dependencies = [
159 "windows-sys 0.48.0",
160 ]
161
162 [[package]]
163 name = "indexmap" 121 name = "indexmap"
164 version = "2.10.0" 122 version = "2.10.0"
165 source = "registry+https://github.com/rust-lang/crates.io-index" 123 source = "registry+https://github.com/rust-lang/crates.io-index"
166 checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" 124 checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
167 dependencies = [ 125 dependencies = [
169 "hashbrown", 127 "hashbrown",
170 ] 128 ]
171 129
172 [[package]] 130 [[package]]
173 name = "itertools" 131 name = "itertools"
174 version = "0.12.1"
175 source = "registry+https://github.com/rust-lang/crates.io-index"
176 checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
177 dependencies = [
178 "either",
179 ]
180
181 [[package]]
182 name = "itertools"
183 version = "0.13.0" 132 version = "0.13.0"
184 source = "registry+https://github.com/rust-lang/crates.io-index" 133 source = "registry+https://github.com/rust-lang/crates.io-index"
185 checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 134 checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
186 dependencies = [ 135 dependencies = [
187 "either", 136 "either",
192 version = "1.0.15" 141 version = "1.0.15"
193 source = "registry+https://github.com/rust-lang/crates.io-index" 142 source = "registry+https://github.com/rust-lang/crates.io-index"
194 checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 143 checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
195 144
196 [[package]] 145 [[package]]
197 name = "lazy_static"
198 version = "1.5.0"
199 source = "registry+https://github.com/rust-lang/crates.io-index"
200 checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
201
202 [[package]]
203 name = "lazycell"
204 version = "1.3.0"
205 source = "registry+https://github.com/rust-lang/crates.io-index"
206 checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
207
208 [[package]]
209 name = "libc" 146 name = "libc"
210 version = "0.2.174" 147 version = "0.2.174"
211 source = "registry+https://github.com/rust-lang/crates.io-index" 148 source = "registry+https://github.com/rust-lang/crates.io-index"
212 checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" 149 checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
213 150
216 version = "0.8.8" 153 version = "0.8.8"
217 source = "registry+https://github.com/rust-lang/crates.io-index" 154 source = "registry+https://github.com/rust-lang/crates.io-index"
218 checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" 155 checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
219 dependencies = [ 156 dependencies = [
220 "cfg-if", 157 "cfg-if",
221 "windows-targets 0.53.2", 158 "windows-targets",
222 ] 159 ]
223 160
224 [[package]] 161 [[package]]
225 name = "libpam-sys" 162 name = "libpam-sys"
226 version = "0.1.0" 163 version = "0.1.0"
227 dependencies = [ 164 dependencies = [
228 "bindgen 0.69.5",
229 "libpam-sys-impls", 165 "libpam-sys-impls",
230 ] 166 ]
231 167
232 [[package]] 168 [[package]]
233 name = "libpam-sys-impls" 169 name = "libpam-sys-impls"
234 version = "0.0.1" 170 version = "0.0.1"
235 dependencies = [ 171 dependencies = [
236 "bindgen 0.72.0", 172 "bindgen",
237 "proc-macro2", 173 "proc-macro2",
238 "quote", 174 "quote",
239 "strum", 175 "strum",
240 "syn", 176 "syn",
241 ] 177 ]
242
243 [[package]]
244 name = "linux-raw-sys"
245 version = "0.4.15"
246 source = "registry+https://github.com/rust-lang/crates.io-index"
247 checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
248 178
249 [[package]] 179 [[package]]
250 name = "log" 180 name = "log"
251 version = "0.4.27" 181 version = "0.4.27"
252 source = "registry+https://github.com/rust-lang/crates.io-index" 182 source = "registry+https://github.com/rust-lang/crates.io-index"
285 215
286 [[package]] 216 [[package]]
287 name = "nonstick" 217 name = "nonstick"
288 version = "0.0.8-alpha0" 218 version = "0.0.8-alpha0"
289 dependencies = [ 219 dependencies = [
290 "bindgen 0.72.0", 220 "bindgen",
291 "bitflags", 221 "bitflags",
292 "libc", 222 "libc",
293 "libpam-sys", 223 "libpam-sys",
294 "memoffset", 224 "memoffset",
295 "num_enum", 225 "num_enum",
327 "quote", 257 "quote",
328 "syn", 258 "syn",
329 ] 259 ]
330 260
331 [[package]] 261 [[package]]
332 name = "once_cell"
333 version = "1.21.3"
334 source = "registry+https://github.com/rust-lang/crates.io-index"
335 checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
336
337 [[package]]
338 name = "prettyplease" 262 name = "prettyplease"
339 version = "0.2.35" 263 version = "0.2.35"
340 source = "registry+https://github.com/rust-lang/crates.io-index" 264 source = "registry+https://github.com/rust-lang/crates.io-index"
341 checksum = "061c1221631e079b26479d25bbf2275bfe5917ae8419cd7e34f13bfc2aa7539a" 265 checksum = "061c1221631e079b26479d25bbf2275bfe5917ae8419cd7e34f13bfc2aa7539a"
342 dependencies = [ 266 dependencies = [
400 source = "registry+https://github.com/rust-lang/crates.io-index" 324 source = "registry+https://github.com/rust-lang/crates.io-index"
401 checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 325 checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
402 326
403 [[package]] 327 [[package]]
404 name = "rustc-hash" 328 name = "rustc-hash"
405 version = "1.1.0"
406 source = "registry+https://github.com/rust-lang/crates.io-index"
407 checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
408
409 [[package]]
410 name = "rustc-hash"
411 version = "2.1.1" 329 version = "2.1.1"
412 source = "registry+https://github.com/rust-lang/crates.io-index" 330 source = "registry+https://github.com/rust-lang/crates.io-index"
413 checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 331 checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
414
415 [[package]]
416 name = "rustix"
417 version = "0.38.44"
418 source = "registry+https://github.com/rust-lang/crates.io-index"
419 checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
420 dependencies = [
421 "bitflags",
422 "errno",
423 "libc",
424 "linux-raw-sys",
425 "windows-sys 0.59.0",
426 ]
427 332
428 [[package]] 333 [[package]]
429 name = "rustversion" 334 name = "rustversion"
430 version = "1.0.21" 335 version = "1.0.21"
431 source = "registry+https://github.com/rust-lang/crates.io-index" 336 source = "registry+https://github.com/rust-lang/crates.io-index"
587 version = "1.0.18" 492 version = "1.0.18"
588 source = "registry+https://github.com/rust-lang/crates.io-index" 493 source = "registry+https://github.com/rust-lang/crates.io-index"
589 checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 494 checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
590 495
591 [[package]] 496 [[package]]
592 name = "which"
593 version = "4.4.2"
594 source = "registry+https://github.com/rust-lang/crates.io-index"
595 checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
596 dependencies = [
597 "either",
598 "home",
599 "once_cell",
600 "rustix",
601 ]
602
603 [[package]]
604 name = "windows-sys"
605 version = "0.48.0"
606 source = "registry+https://github.com/rust-lang/crates.io-index"
607 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
608 dependencies = [
609 "windows-targets 0.48.5",
610 ]
611
612 [[package]]
613 name = "windows-sys"
614 version = "0.59.0"
615 source = "registry+https://github.com/rust-lang/crates.io-index"
616 checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
617 dependencies = [
618 "windows-targets 0.52.6",
619 ]
620
621 [[package]]
622 name = "windows-sys"
623 version = "0.60.2"
624 source = "registry+https://github.com/rust-lang/crates.io-index"
625 checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
626 dependencies = [
627 "windows-targets 0.53.2",
628 ]
629
630 [[package]]
631 name = "windows-targets"
632 version = "0.48.5"
633 source = "registry+https://github.com/rust-lang/crates.io-index"
634 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
635 dependencies = [
636 "windows_aarch64_gnullvm 0.48.5",
637 "windows_aarch64_msvc 0.48.5",
638 "windows_i686_gnu 0.48.5",
639 "windows_i686_msvc 0.48.5",
640 "windows_x86_64_gnu 0.48.5",
641 "windows_x86_64_gnullvm 0.48.5",
642 "windows_x86_64_msvc 0.48.5",
643 ]
644
645 [[package]]
646 name = "windows-targets"
647 version = "0.52.6"
648 source = "registry+https://github.com/rust-lang/crates.io-index"
649 checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
650 dependencies = [
651 "windows_aarch64_gnullvm 0.52.6",
652 "windows_aarch64_msvc 0.52.6",
653 "windows_i686_gnu 0.52.6",
654 "windows_i686_gnullvm 0.52.6",
655 "windows_i686_msvc 0.52.6",
656 "windows_x86_64_gnu 0.52.6",
657 "windows_x86_64_gnullvm 0.52.6",
658 "windows_x86_64_msvc 0.52.6",
659 ]
660
661 [[package]]
662 name = "windows-targets" 497 name = "windows-targets"
663 version = "0.53.2" 498 version = "0.53.2"
664 source = "registry+https://github.com/rust-lang/crates.io-index" 499 source = "registry+https://github.com/rust-lang/crates.io-index"
665 checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef" 500 checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
666 dependencies = [ 501 dependencies = [
667 "windows_aarch64_gnullvm 0.53.0", 502 "windows_aarch64_gnullvm",
668 "windows_aarch64_msvc 0.53.0", 503 "windows_aarch64_msvc",
669 "windows_i686_gnu 0.53.0", 504 "windows_i686_gnu",
670 "windows_i686_gnullvm 0.53.0", 505 "windows_i686_gnullvm",
671 "windows_i686_msvc 0.53.0", 506 "windows_i686_msvc",
672 "windows_x86_64_gnu 0.53.0", 507 "windows_x86_64_gnu",
673 "windows_x86_64_gnullvm 0.53.0", 508 "windows_x86_64_gnullvm",
674 "windows_x86_64_msvc 0.53.0", 509 "windows_x86_64_msvc",
675 ] 510 ]
676 511
677 [[package]] 512 [[package]]
678 name = "windows_aarch64_gnullvm" 513 name = "windows_aarch64_gnullvm"
679 version = "0.48.5"
680 source = "registry+https://github.com/rust-lang/crates.io-index"
681 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
682
683 [[package]]
684 name = "windows_aarch64_gnullvm"
685 version = "0.52.6"
686 source = "registry+https://github.com/rust-lang/crates.io-index"
687 checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
688
689 [[package]]
690 name = "windows_aarch64_gnullvm"
691 version = "0.53.0" 514 version = "0.53.0"
692 source = "registry+https://github.com/rust-lang/crates.io-index" 515 source = "registry+https://github.com/rust-lang/crates.io-index"
693 checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 516 checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
694 517
695 [[package]] 518 [[package]]
696 name = "windows_aarch64_msvc" 519 name = "windows_aarch64_msvc"
697 version = "0.48.5"
698 source = "registry+https://github.com/rust-lang/crates.io-index"
699 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
700
701 [[package]]
702 name = "windows_aarch64_msvc"
703 version = "0.52.6"
704 source = "registry+https://github.com/rust-lang/crates.io-index"
705 checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
706
707 [[package]]
708 name = "windows_aarch64_msvc"
709 version = "0.53.0" 520 version = "0.53.0"
710 source = "registry+https://github.com/rust-lang/crates.io-index" 521 source = "registry+https://github.com/rust-lang/crates.io-index"
711 checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 522 checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
712 523
713 [[package]] 524 [[package]]
714 name = "windows_i686_gnu" 525 name = "windows_i686_gnu"
715 version = "0.48.5"
716 source = "registry+https://github.com/rust-lang/crates.io-index"
717 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
718
719 [[package]]
720 name = "windows_i686_gnu"
721 version = "0.52.6"
722 source = "registry+https://github.com/rust-lang/crates.io-index"
723 checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
724
725 [[package]]
726 name = "windows_i686_gnu"
727 version = "0.53.0" 526 version = "0.53.0"
728 source = "registry+https://github.com/rust-lang/crates.io-index" 527 source = "registry+https://github.com/rust-lang/crates.io-index"
729 checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 528 checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
730 529
731 [[package]] 530 [[package]]
732 name = "windows_i686_gnullvm" 531 name = "windows_i686_gnullvm"
733 version = "0.52.6"
734 source = "registry+https://github.com/rust-lang/crates.io-index"
735 checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
736
737 [[package]]
738 name = "windows_i686_gnullvm"
739 version = "0.53.0" 532 version = "0.53.0"
740 source = "registry+https://github.com/rust-lang/crates.io-index" 533 source = "registry+https://github.com/rust-lang/crates.io-index"
741 checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 534 checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
742 535
743 [[package]] 536 [[package]]
744 name = "windows_i686_msvc" 537 name = "windows_i686_msvc"
745 version = "0.48.5"
746 source = "registry+https://github.com/rust-lang/crates.io-index"
747 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
748
749 [[package]]
750 name = "windows_i686_msvc"
751 version = "0.52.6"
752 source = "registry+https://github.com/rust-lang/crates.io-index"
753 checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
754
755 [[package]]
756 name = "windows_i686_msvc"
757 version = "0.53.0" 538 version = "0.53.0"
758 source = "registry+https://github.com/rust-lang/crates.io-index" 539 source = "registry+https://github.com/rust-lang/crates.io-index"
759 checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 540 checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
760 541
761 [[package]] 542 [[package]]
762 name = "windows_x86_64_gnu" 543 name = "windows_x86_64_gnu"
763 version = "0.48.5"
764 source = "registry+https://github.com/rust-lang/crates.io-index"
765 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
766
767 [[package]]
768 name = "windows_x86_64_gnu"
769 version = "0.52.6"
770 source = "registry+https://github.com/rust-lang/crates.io-index"
771 checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
772
773 [[package]]
774 name = "windows_x86_64_gnu"
775 version = "0.53.0" 544 version = "0.53.0"
776 source = "registry+https://github.com/rust-lang/crates.io-index" 545 source = "registry+https://github.com/rust-lang/crates.io-index"
777 checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 546 checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
778 547
779 [[package]] 548 [[package]]
780 name = "windows_x86_64_gnullvm" 549 name = "windows_x86_64_gnullvm"
781 version = "0.48.5"
782 source = "registry+https://github.com/rust-lang/crates.io-index"
783 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
784
785 [[package]]
786 name = "windows_x86_64_gnullvm"
787 version = "0.52.6"
788 source = "registry+https://github.com/rust-lang/crates.io-index"
789 checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
790
791 [[package]]
792 name = "windows_x86_64_gnullvm"
793 version = "0.53.0" 550 version = "0.53.0"
794 source = "registry+https://github.com/rust-lang/crates.io-index" 551 source = "registry+https://github.com/rust-lang/crates.io-index"
795 checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 552 checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
796
797 [[package]]
798 name = "windows_x86_64_msvc"
799 version = "0.48.5"
800 source = "registry+https://github.com/rust-lang/crates.io-index"
801 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
802
803 [[package]]
804 name = "windows_x86_64_msvc"
805 version = "0.52.6"
806 source = "registry+https://github.com/rust-lang/crates.io-index"
807 checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
808 553
809 [[package]] 554 [[package]]
810 name = "windows_x86_64_msvc" 555 name = "windows_x86_64_msvc"
811 version = "0.53.0" 556 version = "0.53.0"
812 source = "registry+https://github.com/rust-lang/crates.io-index" 557 source = "registry+https://github.com/rust-lang/crates.io-index"