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-tzdata" 16version = "0.1.1" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 19 20[[package]] 21name = "android_system_properties" 22version = "0.1.5" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 25dependencies = [ 26 "libc", 27] 28 29[[package]] 30name = "anstream" 31version = "0.6.13" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb" 34dependencies = [ 35 "anstyle", 36 "anstyle-parse", 37 "anstyle-query", 38 "anstyle-wincon", 39 "colorchoice", 40 "utf8parse", 41] 42 43[[package]] 44name = "anstyle" 45version = "1.0.6" 46source = "registry+https://github.com/rust-lang/crates.io-index" 47checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" 48 49[[package]] 50name = "anstyle-parse" 51version = "0.2.3" 52source = "registry+https://github.com/rust-lang/crates.io-index" 53checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 54dependencies = [ 55 "utf8parse", 56] 57 58[[package]] 59name = "anstyle-query" 60version = "1.0.2" 61source = "registry+https://github.com/rust-lang/crates.io-index" 62checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" 63dependencies = [ 64 "windows-sys", 65] 66 67[[package]] 68name = "anstyle-wincon" 69version = "3.0.2" 70source = "registry+https://github.com/rust-lang/crates.io-index" 71checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 72dependencies = [ 73 "anstyle", 74 "windows-sys", 75] 76 77[[package]] 78name = "anyhow" 79version = "1.0.82" 80source = "registry+https://github.com/rust-lang/crates.io-index" 81checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519" 82 83[[package]] 84name = "autocfg" 85version = "1.2.0" 86source = "registry+https://github.com/rust-lang/crates.io-index" 87checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" 88 89[[package]] 90name = "bstr" 91version = "1.9.1" 92source = "registry+https://github.com/rust-lang/crates.io-index" 93checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" 94dependencies = [ 95 "memchr", 96 "serde", 97] 98 99[[package]] 100name = "build-scripts" 101version = "0.1.0" 102dependencies = [ 103 "anyhow", 104 "clap", 105 "cmd_runner", 106 "env_logger", 107 "log", 108] 109 110[[package]] 111name = "bumpalo" 112version = "3.16.0" 113source = "registry+https://github.com/rust-lang/crates.io-index" 114checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 115 116[[package]] 117name = "cc" 118version = "1.0.94" 119source = "registry+https://github.com/rust-lang/crates.io-index" 120checksum = "17f6e324229dc011159fcc089755d1e2e216a90d43a7dea6853ca740b84f35e7" 121 122[[package]] 123name = "cfg-if" 124version = "1.0.0" 125source = "registry+https://github.com/rust-lang/crates.io-index" 126checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 127 128[[package]] 129name = "chrono" 130version = "0.4.38" 131source = "registry+https://github.com/rust-lang/crates.io-index" 132checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" 133dependencies = [ 134 "android-tzdata", 135 "iana-time-zone", 136 "js-sys", 137 "num-traits", 138 "wasm-bindgen", 139 "windows-targets", 140] 141 142[[package]] 143name = "clap" 144version = "4.5.4" 145source = "registry+https://github.com/rust-lang/crates.io-index" 146checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0" 147dependencies = [ 148 "clap_builder", 149 "clap_derive", 150] 151 152[[package]] 153name = "clap_builder" 154version = "4.5.2" 155source = "registry+https://github.com/rust-lang/crates.io-index" 156checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" 157dependencies = [ 158 "anstream", 159 "anstyle", 160 "clap_lex", 161 "strsim", 162] 163 164[[package]] 165name = "clap_derive" 166version = "4.5.4" 167source = "registry+https://github.com/rust-lang/crates.io-index" 168checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64" 169dependencies = [ 170 "heck", 171 "proc-macro2", 172 "quote", 173 "syn", 174] 175 176[[package]] 177name = "clap_lex" 178version = "0.7.0" 179source = "registry+https://github.com/rust-lang/crates.io-index" 180checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" 181 182[[package]] 183name = "cmd_runner" 184version = "0.1.0" 185dependencies = [ 186 "anyhow", 187 "chrono", 188 "clap", 189 "file-header", 190 "globset", 191 "log", 192 "owo-colors", 193 "shell-escape", 194 "xshell", 195] 196 197[[package]] 198name = "colorchoice" 199version = "1.0.0" 200source = "registry+https://github.com/rust-lang/crates.io-index" 201checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 202 203[[package]] 204name = "core-foundation-sys" 205version = "0.8.6" 206source = "registry+https://github.com/rust-lang/crates.io-index" 207checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 208 209[[package]] 210name = "crossbeam" 211version = "0.8.4" 212source = "registry+https://github.com/rust-lang/crates.io-index" 213checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8" 214dependencies = [ 215 "crossbeam-channel", 216 "crossbeam-deque", 217 "crossbeam-epoch", 218 "crossbeam-queue", 219 "crossbeam-utils", 220] 221 222[[package]] 223name = "crossbeam-channel" 224version = "0.5.12" 225source = "registry+https://github.com/rust-lang/crates.io-index" 226checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95" 227dependencies = [ 228 "crossbeam-utils", 229] 230 231[[package]] 232name = "crossbeam-deque" 233version = "0.8.5" 234source = "registry+https://github.com/rust-lang/crates.io-index" 235checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" 236dependencies = [ 237 "crossbeam-epoch", 238 "crossbeam-utils", 239] 240 241[[package]] 242name = "crossbeam-epoch" 243version = "0.9.18" 244source = "registry+https://github.com/rust-lang/crates.io-index" 245checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 246dependencies = [ 247 "crossbeam-utils", 248] 249 250[[package]] 251name = "crossbeam-queue" 252version = "0.3.11" 253source = "registry+https://github.com/rust-lang/crates.io-index" 254checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" 255dependencies = [ 256 "crossbeam-utils", 257] 258 259[[package]] 260name = "crossbeam-utils" 261version = "0.8.19" 262source = "registry+https://github.com/rust-lang/crates.io-index" 263checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" 264 265[[package]] 266name = "ctap_protocol" 267version = "0.1.0" 268dependencies = [ 269 "anyhow", 270] 271 272[[package]] 273name = "env_logger" 274version = "0.10.2" 275source = "registry+https://github.com/rust-lang/crates.io-index" 276checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" 277dependencies = [ 278 "humantime", 279 "is-terminal", 280 "log", 281 "regex", 282 "termcolor", 283] 284 285[[package]] 286name = "file-header" 287version = "0.1.2" 288source = "registry+https://github.com/rust-lang/crates.io-index" 289checksum = "b5568149106e77ae33bc3a2c3ef3839cbe63ffa4a8dd4a81612a6f9dfdbc2e9f" 290dependencies = [ 291 "crossbeam", 292 "lazy_static", 293 "license", 294 "thiserror", 295 "walkdir", 296] 297 298[[package]] 299name = "globset" 300version = "0.4.14" 301source = "registry+https://github.com/rust-lang/crates.io-index" 302checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1" 303dependencies = [ 304 "aho-corasick", 305 "bstr", 306 "log", 307 "regex-automata", 308 "regex-syntax", 309] 310 311[[package]] 312name = "heck" 313version = "0.5.0" 314source = "registry+https://github.com/rust-lang/crates.io-index" 315checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 316 317[[package]] 318name = "hermit-abi" 319version = "0.3.9" 320source = "registry+https://github.com/rust-lang/crates.io-index" 321checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 322 323[[package]] 324name = "humantime" 325version = "2.1.0" 326source = "registry+https://github.com/rust-lang/crates.io-index" 327checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 328 329[[package]] 330name = "iana-time-zone" 331version = "0.1.60" 332source = "registry+https://github.com/rust-lang/crates.io-index" 333checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" 334dependencies = [ 335 "android_system_properties", 336 "core-foundation-sys", 337 "iana-time-zone-haiku", 338 "js-sys", 339 "wasm-bindgen", 340 "windows-core", 341] 342 343[[package]] 344name = "iana-time-zone-haiku" 345version = "0.1.2" 346source = "registry+https://github.com/rust-lang/crates.io-index" 347checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 348dependencies = [ 349 "cc", 350] 351 352[[package]] 353name = "is-terminal" 354version = "0.4.12" 355source = "registry+https://github.com/rust-lang/crates.io-index" 356checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" 357dependencies = [ 358 "hermit-abi", 359 "libc", 360 "windows-sys", 361] 362 363[[package]] 364name = "itoa" 365version = "1.0.11" 366source = "registry+https://github.com/rust-lang/crates.io-index" 367checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 368 369[[package]] 370name = "js-sys" 371version = "0.3.69" 372source = "registry+https://github.com/rust-lang/crates.io-index" 373checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 374dependencies = [ 375 "wasm-bindgen", 376] 377 378[[package]] 379name = "lazy_static" 380version = "1.4.0" 381source = "registry+https://github.com/rust-lang/crates.io-index" 382checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 383 384[[package]] 385name = "libc" 386version = "0.2.153" 387source = "registry+https://github.com/rust-lang/crates.io-index" 388checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 389 390[[package]] 391name = "license" 392version = "3.3.1" 393source = "registry+https://github.com/rust-lang/crates.io-index" 394checksum = "3bba2f02ee1d13cd4bea565658939cd851d70e391f34f7c27b45b2077df3a2e4" 395dependencies = [ 396 "reword", 397 "serde", 398 "serde_json", 399] 400 401[[package]] 402name = "log" 403version = "0.4.21" 404source = "registry+https://github.com/rust-lang/crates.io-index" 405checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 406 407[[package]] 408name = "memchr" 409version = "2.7.2" 410source = "registry+https://github.com/rust-lang/crates.io-index" 411checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 412 413[[package]] 414name = "num-traits" 415version = "0.2.18" 416source = "registry+https://github.com/rust-lang/crates.io-index" 417checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 418dependencies = [ 419 "autocfg", 420] 421 422[[package]] 423name = "once_cell" 424version = "1.19.0" 425source = "registry+https://github.com/rust-lang/crates.io-index" 426checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 427 428[[package]] 429name = "owo-colors" 430version = "3.5.0" 431source = "registry+https://github.com/rust-lang/crates.io-index" 432checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" 433 434[[package]] 435name = "platform" 436version = "0.1.0" 437dependencies = [ 438 "anyhow", 439] 440 441[[package]] 442name = "proc-macro2" 443version = "1.0.81" 444source = "registry+https://github.com/rust-lang/crates.io-index" 445checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba" 446dependencies = [ 447 "unicode-ident", 448] 449 450[[package]] 451name = "quote" 452version = "1.0.36" 453source = "registry+https://github.com/rust-lang/crates.io-index" 454checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 455dependencies = [ 456 "proc-macro2", 457] 458 459[[package]] 460name = "regex" 461version = "1.10.4" 462source = "registry+https://github.com/rust-lang/crates.io-index" 463checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" 464dependencies = [ 465 "aho-corasick", 466 "memchr", 467 "regex-automata", 468 "regex-syntax", 469] 470 471[[package]] 472name = "regex-automata" 473version = "0.4.6" 474source = "registry+https://github.com/rust-lang/crates.io-index" 475checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 476dependencies = [ 477 "aho-corasick", 478 "memchr", 479 "regex-syntax", 480] 481 482[[package]] 483name = "regex-syntax" 484version = "0.8.3" 485source = "registry+https://github.com/rust-lang/crates.io-index" 486checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" 487 488[[package]] 489name = "remote_auth_protocol" 490version = "0.1.0" 491dependencies = [ 492 "anyhow", 493] 494 495[[package]] 496name = "reword" 497version = "7.0.0" 498source = "registry+https://github.com/rust-lang/crates.io-index" 499checksum = "fe272098dce9ed76b479995953f748d1851261390b08f8a0ff619c885a1f0765" 500dependencies = [ 501 "unicode-segmentation", 502] 503 504[[package]] 505name = "ryu" 506version = "1.0.17" 507source = "registry+https://github.com/rust-lang/crates.io-index" 508checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 509 510[[package]] 511name = "same-file" 512version = "1.0.6" 513source = "registry+https://github.com/rust-lang/crates.io-index" 514checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 515dependencies = [ 516 "winapi-util", 517] 518 519[[package]] 520name = "serde" 521version = "1.0.198" 522source = "registry+https://github.com/rust-lang/crates.io-index" 523checksum = "9846a40c979031340571da2545a4e5b7c4163bdae79b301d5f86d03979451fcc" 524dependencies = [ 525 "serde_derive", 526] 527 528[[package]] 529name = "serde_derive" 530version = "1.0.198" 531source = "registry+https://github.com/rust-lang/crates.io-index" 532checksum = "e88edab869b01783ba905e7d0153f9fc1a6505a96e4ad3018011eedb838566d9" 533dependencies = [ 534 "proc-macro2", 535 "quote", 536 "syn", 537] 538 539[[package]] 540name = "serde_json" 541version = "1.0.116" 542source = "registry+https://github.com/rust-lang/crates.io-index" 543checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" 544dependencies = [ 545 "itoa", 546 "ryu", 547 "serde", 548] 549 550[[package]] 551name = "shell-escape" 552version = "0.1.5" 553source = "registry+https://github.com/rust-lang/crates.io-index" 554checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f" 555 556[[package]] 557name = "strsim" 558version = "0.11.1" 559source = "registry+https://github.com/rust-lang/crates.io-index" 560checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 561 562[[package]] 563name = "syn" 564version = "2.0.60" 565source = "registry+https://github.com/rust-lang/crates.io-index" 566checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3" 567dependencies = [ 568 "proc-macro2", 569 "quote", 570 "unicode-ident", 571] 572 573[[package]] 574name = "termcolor" 575version = "1.4.1" 576source = "registry+https://github.com/rust-lang/crates.io-index" 577checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 578dependencies = [ 579 "winapi-util", 580] 581 582[[package]] 583name = "thiserror" 584version = "1.0.58" 585source = "registry+https://github.com/rust-lang/crates.io-index" 586checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" 587dependencies = [ 588 "thiserror-impl", 589] 590 591[[package]] 592name = "thiserror-impl" 593version = "1.0.58" 594source = "registry+https://github.com/rust-lang/crates.io-index" 595checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" 596dependencies = [ 597 "proc-macro2", 598 "quote", 599 "syn", 600] 601 602[[package]] 603name = "unicode-ident" 604version = "1.0.12" 605source = "registry+https://github.com/rust-lang/crates.io-index" 606checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 607 608[[package]] 609name = "unicode-segmentation" 610version = "1.11.0" 611source = "registry+https://github.com/rust-lang/crates.io-index" 612checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 613 614[[package]] 615name = "utf8parse" 616version = "0.2.1" 617source = "registry+https://github.com/rust-lang/crates.io-index" 618checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 619 620[[package]] 621name = "walkdir" 622version = "2.5.0" 623source = "registry+https://github.com/rust-lang/crates.io-index" 624checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 625dependencies = [ 626 "same-file", 627 "winapi-util", 628] 629 630[[package]] 631name = "wasm-bindgen" 632version = "0.2.92" 633source = "registry+https://github.com/rust-lang/crates.io-index" 634checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 635dependencies = [ 636 "cfg-if", 637 "wasm-bindgen-macro", 638] 639 640[[package]] 641name = "wasm-bindgen-backend" 642version = "0.2.92" 643source = "registry+https://github.com/rust-lang/crates.io-index" 644checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 645dependencies = [ 646 "bumpalo", 647 "log", 648 "once_cell", 649 "proc-macro2", 650 "quote", 651 "syn", 652 "wasm-bindgen-shared", 653] 654 655[[package]] 656name = "wasm-bindgen-macro" 657version = "0.2.92" 658source = "registry+https://github.com/rust-lang/crates.io-index" 659checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 660dependencies = [ 661 "quote", 662 "wasm-bindgen-macro-support", 663] 664 665[[package]] 666name = "wasm-bindgen-macro-support" 667version = "0.2.92" 668source = "registry+https://github.com/rust-lang/crates.io-index" 669checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 670dependencies = [ 671 "proc-macro2", 672 "quote", 673 "syn", 674 "wasm-bindgen-backend", 675 "wasm-bindgen-shared", 676] 677 678[[package]] 679name = "wasm-bindgen-shared" 680version = "0.2.92" 681source = "registry+https://github.com/rust-lang/crates.io-index" 682checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 683 684[[package]] 685name = "winapi" 686version = "0.3.9" 687source = "registry+https://github.com/rust-lang/crates.io-index" 688checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 689dependencies = [ 690 "winapi-i686-pc-windows-gnu", 691 "winapi-x86_64-pc-windows-gnu", 692] 693 694[[package]] 695name = "winapi-i686-pc-windows-gnu" 696version = "0.4.0" 697source = "registry+https://github.com/rust-lang/crates.io-index" 698checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 699 700[[package]] 701name = "winapi-util" 702version = "0.1.6" 703source = "registry+https://github.com/rust-lang/crates.io-index" 704checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 705dependencies = [ 706 "winapi", 707] 708 709[[package]] 710name = "winapi-x86_64-pc-windows-gnu" 711version = "0.4.0" 712source = "registry+https://github.com/rust-lang/crates.io-index" 713checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 714 715[[package]] 716name = "windows-core" 717version = "0.52.0" 718source = "registry+https://github.com/rust-lang/crates.io-index" 719checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 720dependencies = [ 721 "windows-targets", 722] 723 724[[package]] 725name = "windows-sys" 726version = "0.52.0" 727source = "registry+https://github.com/rust-lang/crates.io-index" 728checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 729dependencies = [ 730 "windows-targets", 731] 732 733[[package]] 734name = "windows-targets" 735version = "0.52.5" 736source = "registry+https://github.com/rust-lang/crates.io-index" 737checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 738dependencies = [ 739 "windows_aarch64_gnullvm", 740 "windows_aarch64_msvc", 741 "windows_i686_gnu", 742 "windows_i686_gnullvm", 743 "windows_i686_msvc", 744 "windows_x86_64_gnu", 745 "windows_x86_64_gnullvm", 746 "windows_x86_64_msvc", 747] 748 749[[package]] 750name = "windows_aarch64_gnullvm" 751version = "0.52.5" 752source = "registry+https://github.com/rust-lang/crates.io-index" 753checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 754 755[[package]] 756name = "windows_aarch64_msvc" 757version = "0.52.5" 758source = "registry+https://github.com/rust-lang/crates.io-index" 759checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 760 761[[package]] 762name = "windows_i686_gnu" 763version = "0.52.5" 764source = "registry+https://github.com/rust-lang/crates.io-index" 765checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 766 767[[package]] 768name = "windows_i686_gnullvm" 769version = "0.52.5" 770source = "registry+https://github.com/rust-lang/crates.io-index" 771checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 772 773[[package]] 774name = "windows_i686_msvc" 775version = "0.52.5" 776source = "registry+https://github.com/rust-lang/crates.io-index" 777checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 778 779[[package]] 780name = "windows_x86_64_gnu" 781version = "0.52.5" 782source = "registry+https://github.com/rust-lang/crates.io-index" 783checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 784 785[[package]] 786name = "windows_x86_64_gnullvm" 787version = "0.52.5" 788source = "registry+https://github.com/rust-lang/crates.io-index" 789checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 790 791[[package]] 792name = "windows_x86_64_msvc" 793version = "0.52.5" 794source = "registry+https://github.com/rust-lang/crates.io-index" 795checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 796 797[[package]] 798name = "xshell" 799version = "0.2.6" 800source = "registry+https://github.com/rust-lang/crates.io-index" 801checksum = "6db0ab86eae739efd1b054a8d3d16041914030ac4e01cd1dca0cf252fd8b6437" 802dependencies = [ 803 "xshell-macros", 804] 805 806[[package]] 807name = "xshell-macros" 808version = "0.2.6" 809source = "registry+https://github.com/rust-lang/crates.io-index" 810checksum = "9d422e8e38ec76e2f06ee439ccc765e9c6a9638b9e7c9f2e8255e4d41e8bd852" 811