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 = "1.1.3" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 10dependencies = [ 11 "memchr", 12] 13 14[[package]] 15name = "android_log-sys" 16version = "0.2.0" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "85965b6739a430150bdd138e2374a98af0c3ee0d030b3bb7fc3bddff58d0102e" 19 20[[package]] 21name = "android_logger" 22version = "0.11.3" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "8619b80c242aa7bd638b5c7ddd952addeecb71f69c75e33f1d47b2804f8f883a" 25dependencies = [ 26 "android_log-sys", 27 "env_logger", 28 "log", 29 "once_cell", 30] 31 32[[package]] 33name = "anyhow" 34version = "1.0.83" 35source = "registry+https://github.com/rust-lang/crates.io-index" 36checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3" 37 38[[package]] 39name = "atty" 40version = "0.2.14" 41source = "registry+https://github.com/rust-lang/crates.io-index" 42checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 43dependencies = [ 44 "hermit-abi 0.1.19", 45 "libc", 46 "winapi", 47] 48 49[[package]] 50name = "autocfg" 51version = "1.3.0" 52source = "registry+https://github.com/rust-lang/crates.io-index" 53checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 54 55[[package]] 56name = "bindgen" 57version = "0.69.4" 58source = "registry+https://github.com/rust-lang/crates.io-index" 59checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" 60dependencies = [ 61 "bitflags 2.5.0", 62 "cexpr", 63 "clang-sys", 64 "itertools", 65 "lazy_static", 66 "lazycell", 67 "log", 68 "prettyplease", 69 "proc-macro2", 70 "quote", 71 "regex", 72 "rustc-hash", 73 "shlex", 74 "syn 2.0.61", 75 "which", 76] 77 78[[package]] 79name = "bitflags" 80version = "1.3.2" 81source = "registry+https://github.com/rust-lang/crates.io-index" 82checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 83 84[[package]] 85name = "bitflags" 86version = "2.5.0" 87source = "registry+https://github.com/rust-lang/crates.io-index" 88checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 89 90[[package]] 91name = "cbindgen" 92version = "0.25.0" 93source = "registry+https://github.com/rust-lang/crates.io-index" 94checksum = "faeaa693e5a727975a79211b8f35c0cb09b031fdb6eaa4a788bc6713d01488ca" 95dependencies = [ 96 "clap", 97 "heck", 98 "indexmap", 99 "log", 100 "proc-macro2", 101 "quote", 102 "serde", 103 "serde_json", 104 "syn 1.0.109", 105 "tempfile", 106 "toml", 107] 108 109[[package]] 110name = "cexpr" 111version = "0.6.0" 112source = "registry+https://github.com/rust-lang/crates.io-index" 113checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 114dependencies = [ 115 "nom", 116] 117 118[[package]] 119name = "cfg-if" 120version = "1.0.0" 121source = "registry+https://github.com/rust-lang/crates.io-index" 122checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 123 124[[package]] 125name = "cfg_aliases" 126version = "0.1.1" 127source = "registry+https://github.com/rust-lang/crates.io-index" 128checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" 129 130[[package]] 131name = "clang-sys" 132version = "1.7.0" 133source = "registry+https://github.com/rust-lang/crates.io-index" 134checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1" 135dependencies = [ 136 "glob", 137 "libc", 138 "libloading", 139] 140 141[[package]] 142name = "clap" 143version = "3.2.25" 144source = "registry+https://github.com/rust-lang/crates.io-index" 145checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 146dependencies = [ 147 "atty", 148 "bitflags 1.3.2", 149 "clap_lex", 150 "indexmap", 151 "strsim", 152 "termcolor", 153 "textwrap", 154] 155 156[[package]] 157name = "clap_lex" 158version = "0.2.4" 159source = "registry+https://github.com/rust-lang/crates.io-index" 160checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 161dependencies = [ 162 "os_str_bytes", 163] 164 165[[package]] 166name = "ctrlc" 167version = "3.4.4" 168source = "registry+https://github.com/rust-lang/crates.io-index" 169checksum = "672465ae37dc1bc6380a6547a8883d5dd397b0f1faaad4f265726cc7042a5345" 170dependencies = [ 171 "nix", 172 "windows-sys", 173] 174 175[[package]] 176name = "either" 177version = "1.11.0" 178source = "registry+https://github.com/rust-lang/crates.io-index" 179checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2" 180 181[[package]] 182name = "enumn" 183version = "0.1.13" 184source = "registry+https://github.com/rust-lang/crates.io-index" 185checksum = "6fd000fd6988e73bbe993ea3db9b1aa64906ab88766d654973924340c8cddb42" 186dependencies = [ 187 "proc-macro2", 188 "quote", 189 "syn 2.0.61", 190] 191 192[[package]] 193name = "env_logger" 194version = "0.10.2" 195source = "registry+https://github.com/rust-lang/crates.io-index" 196checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" 197dependencies = [ 198 "humantime", 199 "is-terminal", 200 "log", 201 "regex", 202 "termcolor", 203] 204 205[[package]] 206name = "errno" 207version = "0.3.8" 208source = "registry+https://github.com/rust-lang/crates.io-index" 209checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 210dependencies = [ 211 "libc", 212 "windows-sys", 213] 214 215[[package]] 216name = "fastrand" 217version = "2.1.0" 218source = "registry+https://github.com/rust-lang/crates.io-index" 219checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 220 221[[package]] 222name = "glob" 223version = "0.3.1" 224source = "registry+https://github.com/rust-lang/crates.io-index" 225checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 226 227[[package]] 228name = "hashbrown" 229version = "0.12.3" 230source = "registry+https://github.com/rust-lang/crates.io-index" 231checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 232 233[[package]] 234name = "heck" 235version = "0.4.1" 236source = "registry+https://github.com/rust-lang/crates.io-index" 237checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 238 239[[package]] 240name = "hermit-abi" 241version = "0.1.19" 242source = "registry+https://github.com/rust-lang/crates.io-index" 243checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 244dependencies = [ 245 "libc", 246] 247 248[[package]] 249name = "hermit-abi" 250version = "0.3.9" 251source = "registry+https://github.com/rust-lang/crates.io-index" 252checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 253 254[[package]] 255name = "home" 256version = "0.5.9" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 259dependencies = [ 260 "windows-sys", 261] 262 263[[package]] 264name = "humantime" 265version = "2.1.0" 266source = "registry+https://github.com/rust-lang/crates.io-index" 267checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 268 269[[package]] 270name = "indexmap" 271version = "1.9.3" 272source = "registry+https://github.com/rust-lang/crates.io-index" 273checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 274dependencies = [ 275 "autocfg", 276 "hashbrown", 277] 278 279[[package]] 280name = "is-terminal" 281version = "0.4.12" 282source = "registry+https://github.com/rust-lang/crates.io-index" 283checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" 284dependencies = [ 285 "hermit-abi 0.3.9", 286 "libc", 287 "windows-sys", 288] 289 290[[package]] 291name = "itertools" 292version = "0.12.1" 293source = "registry+https://github.com/rust-lang/crates.io-index" 294checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 295dependencies = [ 296 "either", 297] 298 299[[package]] 300name = "itoa" 301version = "1.0.11" 302source = "registry+https://github.com/rust-lang/crates.io-index" 303checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 304 305[[package]] 306name = "lazy_static" 307version = "1.4.0" 308source = "registry+https://github.com/rust-lang/crates.io-index" 309checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 310 311[[package]] 312name = "lazycell" 313version = "1.3.0" 314source = "registry+https://github.com/rust-lang/crates.io-index" 315checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 316 317[[package]] 318name = "libc" 319version = "0.2.154" 320source = "registry+https://github.com/rust-lang/crates.io-index" 321checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346" 322 323[[package]] 324name = "libloading" 325version = "0.8.3" 326source = "registry+https://github.com/rust-lang/crates.io-index" 327checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" 328dependencies = [ 329 "cfg-if", 330 "windows-targets", 331] 332 333[[package]] 334name = "linux-raw-sys" 335version = "0.4.13" 336source = "registry+https://github.com/rust-lang/crates.io-index" 337checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 338 339[[package]] 340name = "log" 341version = "0.4.21" 342source = "registry+https://github.com/rust-lang/crates.io-index" 343checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 344 345[[package]] 346name = "memchr" 347version = "2.7.2" 348source = "registry+https://github.com/rust-lang/crates.io-index" 349checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 350 351[[package]] 352name = "minimal-lexical" 353version = "0.2.1" 354source = "registry+https://github.com/rust-lang/crates.io-index" 355checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 356 357[[package]] 358name = "nix" 359version = "0.28.0" 360source = "registry+https://github.com/rust-lang/crates.io-index" 361checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" 362dependencies = [ 363 "bitflags 2.5.0", 364 "cfg-if", 365 "cfg_aliases", 366 "libc", 367] 368 369[[package]] 370name = "nom" 371version = "7.1.3" 372source = "registry+https://github.com/rust-lang/crates.io-index" 373checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 374dependencies = [ 375 "memchr", 376 "minimal-lexical", 377] 378 379[[package]] 380name = "once_cell" 381version = "1.19.0" 382source = "registry+https://github.com/rust-lang/crates.io-index" 383checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 384 385[[package]] 386name = "os_str_bytes" 387version = "6.6.1" 388source = "registry+https://github.com/rust-lang/crates.io-index" 389checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1" 390 391[[package]] 392name = "prettyplease" 393version = "0.2.20" 394source = "registry+https://github.com/rust-lang/crates.io-index" 395checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e" 396dependencies = [ 397 "proc-macro2", 398 "syn 2.0.61", 399] 400 401[[package]] 402name = "proc-macro2" 403version = "1.0.82" 404source = "registry+https://github.com/rust-lang/crates.io-index" 405checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b" 406dependencies = [ 407 "unicode-ident", 408] 409 410[[package]] 411name = "quote" 412version = "1.0.36" 413source = "registry+https://github.com/rust-lang/crates.io-index" 414checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 415dependencies = [ 416 "proc-macro2", 417] 418 419[[package]] 420name = "regex" 421version = "1.10.4" 422source = "registry+https://github.com/rust-lang/crates.io-index" 423checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" 424dependencies = [ 425 "aho-corasick", 426 "memchr", 427 "regex-automata", 428 "regex-syntax", 429] 430 431[[package]] 432name = "regex-automata" 433version = "0.4.6" 434source = "registry+https://github.com/rust-lang/crates.io-index" 435checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 436dependencies = [ 437 "aho-corasick", 438 "memchr", 439 "regex-syntax", 440] 441 442[[package]] 443name = "regex-syntax" 444version = "0.8.3" 445source = "registry+https://github.com/rust-lang/crates.io-index" 446checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" 447 448[[package]] 449name = "rustc-hash" 450version = "1.1.0" 451source = "registry+https://github.com/rust-lang/crates.io-index" 452checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 453 454[[package]] 455name = "rustix" 456version = "0.38.34" 457source = "registry+https://github.com/rust-lang/crates.io-index" 458checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 459dependencies = [ 460 "bitflags 2.5.0", 461 "errno", 462 "libc", 463 "linux-raw-sys", 464 "windows-sys", 465] 466 467[[package]] 468name = "ryu" 469version = "1.0.18" 470source = "registry+https://github.com/rust-lang/crates.io-index" 471checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 472 473[[package]] 474name = "serde" 475version = "1.0.201" 476source = "registry+https://github.com/rust-lang/crates.io-index" 477checksum = "780f1cebed1629e4753a1a38a3c72d30b97ec044f0aef68cb26650a3c5cf363c" 478dependencies = [ 479 "serde_derive", 480] 481 482[[package]] 483name = "serde_derive" 484version = "1.0.201" 485source = "registry+https://github.com/rust-lang/crates.io-index" 486checksum = "c5e405930b9796f1c00bee880d03fc7e0bb4b9a11afc776885ffe84320da2865" 487dependencies = [ 488 "proc-macro2", 489 "quote", 490 "syn 2.0.61", 491] 492 493[[package]] 494name = "serde_json" 495version = "1.0.117" 496source = "registry+https://github.com/rust-lang/crates.io-index" 497checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" 498dependencies = [ 499 "itoa", 500 "ryu", 501 "serde", 502] 503 504[[package]] 505name = "shlex" 506version = "1.3.0" 507source = "registry+https://github.com/rust-lang/crates.io-index" 508checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 509 510[[package]] 511name = "strsim" 512version = "0.10.0" 513source = "registry+https://github.com/rust-lang/crates.io-index" 514checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 515 516[[package]] 517name = "syn" 518version = "1.0.109" 519source = "registry+https://github.com/rust-lang/crates.io-index" 520checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 521dependencies = [ 522 "proc-macro2", 523 "quote", 524 "unicode-ident", 525] 526 527[[package]] 528name = "syn" 529version = "2.0.61" 530source = "registry+https://github.com/rust-lang/crates.io-index" 531checksum = "c993ed8ccba56ae856363b1845da7266a7cb78e1d146c8a32d54b45a8b831fc9" 532dependencies = [ 533 "proc-macro2", 534 "quote", 535 "unicode-ident", 536] 537 538[[package]] 539name = "tempfile" 540version = "3.10.1" 541source = "registry+https://github.com/rust-lang/crates.io-index" 542checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 543dependencies = [ 544 "cfg-if", 545 "fastrand", 546 "rustix", 547 "windows-sys", 548] 549 550[[package]] 551name = "termcolor" 552version = "1.4.1" 553source = "registry+https://github.com/rust-lang/crates.io-index" 554checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 555dependencies = [ 556 "winapi-util", 557] 558 559[[package]] 560name = "textwrap" 561version = "0.16.1" 562source = "registry+https://github.com/rust-lang/crates.io-index" 563checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" 564 565[[package]] 566name = "thiserror" 567version = "1.0.60" 568source = "registry+https://github.com/rust-lang/crates.io-index" 569checksum = "579e9083ca58dd9dcf91a9923bb9054071b9ebbd800b342194c9feb0ee89fc18" 570dependencies = [ 571 "thiserror-impl", 572] 573 574[[package]] 575name = "thiserror-impl" 576version = "1.0.60" 577source = "registry+https://github.com/rust-lang/crates.io-index" 578checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524" 579dependencies = [ 580 "proc-macro2", 581 "quote", 582 "syn 2.0.61", 583] 584 585[[package]] 586name = "toml" 587version = "0.5.11" 588source = "registry+https://github.com/rust-lang/crates.io-index" 589checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 590dependencies = [ 591 "serde", 592] 593 594[[package]] 595name = "unicode-ident" 596version = "1.0.12" 597source = "registry+https://github.com/rust-lang/crates.io-index" 598checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 599 600[[package]] 601name = "v4l2r" 602version = "0.0.4" 603dependencies = [ 604 "anyhow", 605 "bindgen", 606 "bitflags 2.5.0", 607 "clap", 608 "ctrlc", 609 "enumn", 610 "env_logger", 611 "log", 612 "nix", 613 "thiserror", 614 "v4l2r-utils", 615] 616 617[[package]] 618name = "v4l2r-ffi" 619version = "0.0.1" 620dependencies = [ 621 "android_logger", 622 "anyhow", 623 "cbindgen", 624 "env_logger", 625 "log", 626 "nix", 627 "v4l2r", 628] 629 630[[package]] 631name = "v4l2r-utils" 632version = "0.0.1" 633dependencies = [ 634 "anyhow", 635 "log", 636 "nix", 637 "thiserror", 638 "v4l2r", 639] 640 641[[package]] 642name = "which" 643version = "4.4.2" 644source = "registry+https://github.com/rust-lang/crates.io-index" 645checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" 646dependencies = [ 647 "either", 648 "home", 649 "once_cell", 650 "rustix", 651] 652 653[[package]] 654name = "winapi" 655version = "0.3.9" 656source = "registry+https://github.com/rust-lang/crates.io-index" 657checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 658dependencies = [ 659 "winapi-i686-pc-windows-gnu", 660 "winapi-x86_64-pc-windows-gnu", 661] 662 663[[package]] 664name = "winapi-i686-pc-windows-gnu" 665version = "0.4.0" 666source = "registry+https://github.com/rust-lang/crates.io-index" 667checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 668 669[[package]] 670name = "winapi-util" 671version = "0.1.8" 672source = "registry+https://github.com/rust-lang/crates.io-index" 673checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 674dependencies = [ 675 "windows-sys", 676] 677 678[[package]] 679name = "winapi-x86_64-pc-windows-gnu" 680version = "0.4.0" 681source = "registry+https://github.com/rust-lang/crates.io-index" 682checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 683 684[[package]] 685name = "windows-sys" 686version = "0.52.0" 687source = "registry+https://github.com/rust-lang/crates.io-index" 688checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 689dependencies = [ 690 "windows-targets", 691] 692 693[[package]] 694name = "windows-targets" 695version = "0.52.5" 696source = "registry+https://github.com/rust-lang/crates.io-index" 697checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 698dependencies = [ 699 "windows_aarch64_gnullvm", 700 "windows_aarch64_msvc", 701 "windows_i686_gnu", 702 "windows_i686_gnullvm", 703 "windows_i686_msvc", 704 "windows_x86_64_gnu", 705 "windows_x86_64_gnullvm", 706 "windows_x86_64_msvc", 707] 708 709[[package]] 710name = "windows_aarch64_gnullvm" 711version = "0.52.5" 712source = "registry+https://github.com/rust-lang/crates.io-index" 713checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 714 715[[package]] 716name = "windows_aarch64_msvc" 717version = "0.52.5" 718source = "registry+https://github.com/rust-lang/crates.io-index" 719checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 720 721[[package]] 722name = "windows_i686_gnu" 723version = "0.52.5" 724source = "registry+https://github.com/rust-lang/crates.io-index" 725checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 726 727[[package]] 728name = "windows_i686_gnullvm" 729version = "0.52.5" 730source = "registry+https://github.com/rust-lang/crates.io-index" 731checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 732 733[[package]] 734name = "windows_i686_msvc" 735version = "0.52.5" 736source = "registry+https://github.com/rust-lang/crates.io-index" 737checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 738 739[[package]] 740name = "windows_x86_64_gnu" 741version = "0.52.5" 742source = "registry+https://github.com/rust-lang/crates.io-index" 743checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 744 745[[package]] 746name = "windows_x86_64_gnullvm" 747version = "0.52.5" 748source = "registry+https://github.com/rust-lang/crates.io-index" 749checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 750 751[[package]] 752name = "windows_x86_64_msvc" 753version = "0.52.5" 754source = "registry+https://github.com/rust-lang/crates.io-index" 755checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 756