at 23.11-beta 1264 lines 33 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "adler" 7version = "1.0.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 11[[package]] 12name = "aho-corasick" 13version = "0.7.20" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 16dependencies = [ 17 "memchr", 18] 19 20[[package]] 21name = "ansi_term" 22version = "0.12.1" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 25dependencies = [ 26 "winapi", 27] 28 29[[package]] 30name = "atty" 31version = "0.2.14" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 34dependencies = [ 35 "hermit-abi 0.1.19", 36 "libc", 37 "winapi", 38] 39 40[[package]] 41name = "autocfg" 42version = "1.1.0" 43source = "registry+https://github.com/rust-lang/crates.io-index" 44checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 45 46[[package]] 47name = "base64" 48version = "0.13.1" 49source = "registry+https://github.com/rust-lang/crates.io-index" 50checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 51 52[[package]] 53name = "bitflags" 54version = "1.3.2" 55source = "registry+https://github.com/rust-lang/crates.io-index" 56checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 57 58[[package]] 59name = "build-rs" 60version = "0.1.2" 61source = "registry+https://github.com/rust-lang/crates.io-index" 62checksum = "b00b8763668c99f8d9101b8a0dd82106f58265464531a79b2cef0d9a30c17dd2" 63 64[[package]] 65name = "bumpalo" 66version = "3.12.0" 67source = "registry+https://github.com/rust-lang/crates.io-index" 68checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 69 70[[package]] 71name = "cc" 72version = "1.0.79" 73source = "registry+https://github.com/rust-lang/crates.io-index" 74checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 75dependencies = [ 76 "jobserver", 77] 78 79[[package]] 80name = "cfg-expr" 81version = "0.14.0" 82source = "registry+https://github.com/rust-lang/crates.io-index" 83checksum = "a35b255461940a32985c627ce82900867c61db1659764d3675ea81963f72a4c6" 84dependencies = [ 85 "smallvec", 86] 87 88[[package]] 89name = "cfg-if" 90version = "1.0.0" 91source = "registry+https://github.com/rust-lang/crates.io-index" 92checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 93 94[[package]] 95name = "clap" 96version = "2.34.0" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 99dependencies = [ 100 "ansi_term", 101 "atty", 102 "bitflags", 103 "strsim", 104 "textwrap", 105 "unicode-width", 106 "vec_map", 107] 108 109[[package]] 110name = "conv" 111version = "0.3.3" 112source = "registry+https://github.com/rust-lang/crates.io-index" 113checksum = "78ff10625fd0ac447827aa30ea8b861fead473bb60aeb73af6c1c58caf0d1299" 114dependencies = [ 115 "custom_derive", 116] 117 118[[package]] 119name = "crc32fast" 120version = "1.3.2" 121source = "registry+https://github.com/rust-lang/crates.io-index" 122checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 123dependencies = [ 124 "cfg-if", 125] 126 127[[package]] 128name = "cstr-argument" 129version = "0.1.2" 130source = "registry+https://github.com/rust-lang/crates.io-index" 131checksum = "b6bd9c8e659a473bce955ae5c35b116af38af11a7acb0b480e01f3ed348aeb40" 132dependencies = [ 133 "cfg-if", 134 "memchr", 135] 136 137[[package]] 138name = "custom_derive" 139version = "0.1.7" 140source = "registry+https://github.com/rust-lang/crates.io-index" 141checksum = "ef8ae57c4978a2acd8b869ce6b9ca1dfe817bff704c220209fdef2c0b75a01b9" 142 143[[package]] 144name = "errno" 145version = "0.3.1" 146source = "registry+https://github.com/rust-lang/crates.io-index" 147checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 148dependencies = [ 149 "errno-dragonfly", 150 "libc", 151 "windows-sys 0.48.0", 152] 153 154[[package]] 155name = "errno-dragonfly" 156version = "0.1.2" 157source = "registry+https://github.com/rust-lang/crates.io-index" 158checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 159dependencies = [ 160 "cc", 161 "libc", 162] 163 164[[package]] 165name = "fastrand" 166version = "1.9.0" 167source = "registry+https://github.com/rust-lang/crates.io-index" 168checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 169dependencies = [ 170 "instant", 171] 172 173[[package]] 174name = "flate2" 175version = "1.0.25" 176source = "registry+https://github.com/rust-lang/crates.io-index" 177checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 178dependencies = [ 179 "crc32fast", 180 "miniz_oxide", 181] 182 183[[package]] 184name = "form_urlencoded" 185version = "1.1.0" 186source = "registry+https://github.com/rust-lang/crates.io-index" 187checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 188dependencies = [ 189 "percent-encoding", 190] 191 192[[package]] 193name = "getrandom" 194version = "0.2.9" 195source = "registry+https://github.com/rust-lang/crates.io-index" 196checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 197dependencies = [ 198 "cfg-if", 199 "libc", 200 "wasi", 201] 202 203[[package]] 204name = "git2" 205version = "0.17.1" 206source = "registry+https://github.com/rust-lang/crates.io-index" 207checksum = "8b7905cdfe33d31a88bb2e8419ddd054451f5432d1da9eaf2ac7804ee1ea12d5" 208dependencies = [ 209 "bitflags", 210 "libc", 211 "libgit2-sys", 212 "log", 213 "openssl-probe", 214 "openssl-sys", 215 "url", 216] 217 218[[package]] 219name = "gpg-error" 220version = "0.6.0" 221source = "registry+https://github.com/rust-lang/crates.io-index" 222checksum = "d89aaeddbfb92313378c58e98abadaaa34082b3855f1d455576eeeda08bd592c" 223dependencies = [ 224 "libgpg-error-sys", 225] 226 227[[package]] 228name = "gpgme" 229version = "0.11.0" 230source = "registry+https://github.com/rust-lang/crates.io-index" 231checksum = "57539732fbe58eacdb984734b72b470ed0bca3ab7a49813271878567025ac44f" 232dependencies = [ 233 "bitflags", 234 "cfg-if", 235 "conv", 236 "cstr-argument", 237 "gpg-error", 238 "gpgme-sys", 239 "libc", 240 "memoffset 0.7.1", 241 "once_cell", 242 "smallvec", 243 "static_assertions", 244] 245 246[[package]] 247name = "gpgme-sys" 248version = "0.11.0" 249source = "registry+https://github.com/rust-lang/crates.io-index" 250checksum = "509223d659c06e4a26229437d6ac917723f02d31917c86c6ecd50e8369741cf7" 251dependencies = [ 252 "build-rs", 253 "libc", 254 "libgpg-error-sys", 255 "system-deps", 256 "winreg", 257] 258 259[[package]] 260name = "gps" 261version = "6.9.0" 262dependencies = [ 263 "ansi_term", 264 "git2", 265 "gpgme", 266 "home-dir", 267 "is_executable", 268 "lazy_static", 269 "regex", 270 "serde", 271 "serde_json", 272 "structopt", 273 "tempfile", 274 "toml 0.5.11", 275 "ureq", 276 "uuid", 277 "version-compare", 278] 279 280[[package]] 281name = "hashbrown" 282version = "0.12.3" 283source = "registry+https://github.com/rust-lang/crates.io-index" 284checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 285 286[[package]] 287name = "heck" 288version = "0.3.3" 289source = "registry+https://github.com/rust-lang/crates.io-index" 290checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 291dependencies = [ 292 "unicode-segmentation", 293] 294 295[[package]] 296name = "heck" 297version = "0.4.1" 298source = "registry+https://github.com/rust-lang/crates.io-index" 299checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 300 301[[package]] 302name = "hermit-abi" 303version = "0.1.19" 304source = "registry+https://github.com/rust-lang/crates.io-index" 305checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 306dependencies = [ 307 "libc", 308] 309 310[[package]] 311name = "hermit-abi" 312version = "0.3.1" 313source = "registry+https://github.com/rust-lang/crates.io-index" 314checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 315 316[[package]] 317name = "home-dir" 318version = "0.1.0" 319source = "git+https://github.com/uptech/home-dir?branch=upgrade-nix-dependency-to-latest#1627fb4c2f8ae31081f6a43813de170d2e694207" 320dependencies = [ 321 "nix", 322 "thiserror", 323] 324 325[[package]] 326name = "idna" 327version = "0.3.0" 328source = "registry+https://github.com/rust-lang/crates.io-index" 329checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 330dependencies = [ 331 "unicode-bidi", 332 "unicode-normalization", 333] 334 335[[package]] 336name = "indexmap" 337version = "1.9.3" 338source = "registry+https://github.com/rust-lang/crates.io-index" 339checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 340dependencies = [ 341 "autocfg", 342 "hashbrown", 343] 344 345[[package]] 346name = "instant" 347version = "0.1.12" 348source = "registry+https://github.com/rust-lang/crates.io-index" 349checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 350dependencies = [ 351 "cfg-if", 352] 353 354[[package]] 355name = "io-lifetimes" 356version = "1.0.10" 357source = "registry+https://github.com/rust-lang/crates.io-index" 358checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" 359dependencies = [ 360 "hermit-abi 0.3.1", 361 "libc", 362 "windows-sys 0.48.0", 363] 364 365[[package]] 366name = "is_executable" 367version = "1.0.1" 368source = "registry+https://github.com/rust-lang/crates.io-index" 369checksum = "fa9acdc6d67b75e626ad644734e8bc6df893d9cd2a834129065d3dd6158ea9c8" 370dependencies = [ 371 "winapi", 372] 373 374[[package]] 375name = "itoa" 376version = "1.0.6" 377source = "registry+https://github.com/rust-lang/crates.io-index" 378checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 379 380[[package]] 381name = "jobserver" 382version = "0.1.26" 383source = "registry+https://github.com/rust-lang/crates.io-index" 384checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 385dependencies = [ 386 "libc", 387] 388 389[[package]] 390name = "js-sys" 391version = "0.3.61" 392source = "registry+https://github.com/rust-lang/crates.io-index" 393checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 394dependencies = [ 395 "wasm-bindgen", 396] 397 398[[package]] 399name = "lazy_static" 400version = "1.4.0" 401source = "registry+https://github.com/rust-lang/crates.io-index" 402checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 403 404[[package]] 405name = "libc" 406version = "0.2.141" 407source = "registry+https://github.com/rust-lang/crates.io-index" 408checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5" 409 410[[package]] 411name = "libgit2-sys" 412version = "0.15.1+1.6.4" 413source = "registry+https://github.com/rust-lang/crates.io-index" 414checksum = "fb4577bde8cdfc7d6a2a4bcb7b049598597de33ffd337276e9c7db6cd4a2cee7" 415dependencies = [ 416 "cc", 417 "libc", 418 "libssh2-sys", 419 "libz-sys", 420 "openssl-sys", 421 "pkg-config", 422] 423 424[[package]] 425name = "libgpg-error-sys" 426version = "0.6.0" 427source = "registry+https://github.com/rust-lang/crates.io-index" 428checksum = "c97079310f39c835d3bd73578379d040f779614bb331c7ffbb6630fee6420290" 429dependencies = [ 430 "build-rs", 431 "system-deps", 432 "winreg", 433] 434 435[[package]] 436name = "libssh2-sys" 437version = "0.3.0" 438source = "registry+https://github.com/rust-lang/crates.io-index" 439checksum = "2dc8a030b787e2119a731f1951d6a773e2280c660f8ec4b0f5e1505a386e71ee" 440dependencies = [ 441 "cc", 442 "libc", 443 "libz-sys", 444 "openssl-sys", 445 "pkg-config", 446 "vcpkg", 447] 448 449[[package]] 450name = "libz-sys" 451version = "1.1.8" 452source = "registry+https://github.com/rust-lang/crates.io-index" 453checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf" 454dependencies = [ 455 "cc", 456 "libc", 457 "pkg-config", 458 "vcpkg", 459] 460 461[[package]] 462name = "linux-raw-sys" 463version = "0.3.3" 464source = "registry+https://github.com/rust-lang/crates.io-index" 465checksum = "9b085a4f2cde5781fc4b1717f2e86c62f5cda49de7ba99a7c2eae02b61c9064c" 466 467[[package]] 468name = "log" 469version = "0.4.17" 470source = "registry+https://github.com/rust-lang/crates.io-index" 471checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 472dependencies = [ 473 "cfg-if", 474] 475 476[[package]] 477name = "memchr" 478version = "2.5.0" 479source = "registry+https://github.com/rust-lang/crates.io-index" 480checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 481 482[[package]] 483name = "memoffset" 484version = "0.6.5" 485source = "registry+https://github.com/rust-lang/crates.io-index" 486checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 487dependencies = [ 488 "autocfg", 489] 490 491[[package]] 492name = "memoffset" 493version = "0.7.1" 494source = "registry+https://github.com/rust-lang/crates.io-index" 495checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 496dependencies = [ 497 "autocfg", 498] 499 500[[package]] 501name = "miniz_oxide" 502version = "0.6.2" 503source = "registry+https://github.com/rust-lang/crates.io-index" 504checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 505dependencies = [ 506 "adler", 507] 508 509[[package]] 510name = "nix" 511version = "0.24.3" 512source = "registry+https://github.com/rust-lang/crates.io-index" 513checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" 514dependencies = [ 515 "bitflags", 516 "cfg-if", 517 "libc", 518 "memoffset 0.6.5", 519] 520 521[[package]] 522name = "once_cell" 523version = "1.17.1" 524source = "registry+https://github.com/rust-lang/crates.io-index" 525checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 526 527[[package]] 528name = "openssl-probe" 529version = "0.1.5" 530source = "registry+https://github.com/rust-lang/crates.io-index" 531checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 532 533[[package]] 534name = "openssl-sys" 535version = "0.9.85" 536source = "registry+https://github.com/rust-lang/crates.io-index" 537checksum = "0d3d193fb1488ad46ffe3aaabc912cc931d02ee8518fe2959aea8ef52718b0c0" 538dependencies = [ 539 "cc", 540 "libc", 541 "pkg-config", 542 "vcpkg", 543] 544 545[[package]] 546name = "percent-encoding" 547version = "2.2.0" 548source = "registry+https://github.com/rust-lang/crates.io-index" 549checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 550 551[[package]] 552name = "pkg-config" 553version = "0.3.26" 554source = "registry+https://github.com/rust-lang/crates.io-index" 555checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 556 557[[package]] 558name = "proc-macro-error" 559version = "1.0.4" 560source = "registry+https://github.com/rust-lang/crates.io-index" 561checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 562dependencies = [ 563 "proc-macro-error-attr", 564 "proc-macro2", 565 "quote", 566 "syn 1.0.109", 567 "version_check", 568] 569 570[[package]] 571name = "proc-macro-error-attr" 572version = "1.0.4" 573source = "registry+https://github.com/rust-lang/crates.io-index" 574checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 575dependencies = [ 576 "proc-macro2", 577 "quote", 578 "version_check", 579] 580 581[[package]] 582name = "proc-macro2" 583version = "1.0.56" 584source = "registry+https://github.com/rust-lang/crates.io-index" 585checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" 586dependencies = [ 587 "unicode-ident", 588] 589 590[[package]] 591name = "quote" 592version = "1.0.26" 593source = "registry+https://github.com/rust-lang/crates.io-index" 594checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" 595dependencies = [ 596 "proc-macro2", 597] 598 599[[package]] 600name = "redox_syscall" 601version = "0.3.5" 602source = "registry+https://github.com/rust-lang/crates.io-index" 603checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 604dependencies = [ 605 "bitflags", 606] 607 608[[package]] 609name = "regex" 610version = "1.7.3" 611source = "registry+https://github.com/rust-lang/crates.io-index" 612checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" 613dependencies = [ 614 "aho-corasick", 615 "memchr", 616 "regex-syntax", 617] 618 619[[package]] 620name = "regex-syntax" 621version = "0.6.29" 622source = "registry+https://github.com/rust-lang/crates.io-index" 623checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 624 625[[package]] 626name = "ring" 627version = "0.16.20" 628source = "registry+https://github.com/rust-lang/crates.io-index" 629checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 630dependencies = [ 631 "cc", 632 "libc", 633 "once_cell", 634 "spin", 635 "untrusted", 636 "web-sys", 637 "winapi", 638] 639 640[[package]] 641name = "rustix" 642version = "0.37.13" 643source = "registry+https://github.com/rust-lang/crates.io-index" 644checksum = "f79bef90eb6d984c72722595b5b1348ab39275a5e5123faca6863bf07d75a4e0" 645dependencies = [ 646 "bitflags", 647 "errno", 648 "io-lifetimes", 649 "libc", 650 "linux-raw-sys", 651 "windows-sys 0.48.0", 652] 653 654[[package]] 655name = "rustls" 656version = "0.20.8" 657source = "registry+https://github.com/rust-lang/crates.io-index" 658checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 659dependencies = [ 660 "log", 661 "ring", 662 "sct", 663 "webpki", 664] 665 666[[package]] 667name = "ryu" 668version = "1.0.13" 669source = "registry+https://github.com/rust-lang/crates.io-index" 670checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 671 672[[package]] 673name = "sct" 674version = "0.7.0" 675source = "registry+https://github.com/rust-lang/crates.io-index" 676checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 677dependencies = [ 678 "ring", 679 "untrusted", 680] 681 682[[package]] 683name = "serde" 684version = "1.0.160" 685source = "registry+https://github.com/rust-lang/crates.io-index" 686checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c" 687dependencies = [ 688 "serde_derive", 689] 690 691[[package]] 692name = "serde_derive" 693version = "1.0.160" 694source = "registry+https://github.com/rust-lang/crates.io-index" 695checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df" 696dependencies = [ 697 "proc-macro2", 698 "quote", 699 "syn 2.0.15", 700] 701 702[[package]] 703name = "serde_json" 704version = "1.0.96" 705source = "registry+https://github.com/rust-lang/crates.io-index" 706checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 707dependencies = [ 708 "itoa", 709 "ryu", 710 "serde", 711] 712 713[[package]] 714name = "serde_spanned" 715version = "0.6.1" 716source = "registry+https://github.com/rust-lang/crates.io-index" 717checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4" 718dependencies = [ 719 "serde", 720] 721 722[[package]] 723name = "smallvec" 724version = "1.10.0" 725source = "registry+https://github.com/rust-lang/crates.io-index" 726checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 727 728[[package]] 729name = "spin" 730version = "0.5.2" 731source = "registry+https://github.com/rust-lang/crates.io-index" 732checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 733 734[[package]] 735name = "static_assertions" 736version = "1.1.0" 737source = "registry+https://github.com/rust-lang/crates.io-index" 738checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 739 740[[package]] 741name = "strsim" 742version = "0.8.0" 743source = "registry+https://github.com/rust-lang/crates.io-index" 744checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 745 746[[package]] 747name = "structopt" 748version = "0.3.26" 749source = "registry+https://github.com/rust-lang/crates.io-index" 750checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10" 751dependencies = [ 752 "clap", 753 "lazy_static", 754 "structopt-derive", 755] 756 757[[package]] 758name = "structopt-derive" 759version = "0.4.18" 760source = "registry+https://github.com/rust-lang/crates.io-index" 761checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" 762dependencies = [ 763 "heck 0.3.3", 764 "proc-macro-error", 765 "proc-macro2", 766 "quote", 767 "syn 1.0.109", 768] 769 770[[package]] 771name = "syn" 772version = "1.0.109" 773source = "registry+https://github.com/rust-lang/crates.io-index" 774checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 775dependencies = [ 776 "proc-macro2", 777 "quote", 778 "unicode-ident", 779] 780 781[[package]] 782name = "syn" 783version = "2.0.15" 784source = "registry+https://github.com/rust-lang/crates.io-index" 785checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" 786dependencies = [ 787 "proc-macro2", 788 "quote", 789 "unicode-ident", 790] 791 792[[package]] 793name = "system-deps" 794version = "6.0.4" 795source = "registry+https://github.com/rust-lang/crates.io-index" 796checksum = "555fc8147af6256f3931a36bb83ad0023240ce9cf2b319dec8236fd1f220b05f" 797dependencies = [ 798 "cfg-expr", 799 "heck 0.4.1", 800 "pkg-config", 801 "toml 0.7.3", 802 "version-compare", 803] 804 805[[package]] 806name = "tempfile" 807version = "3.5.0" 808source = "registry+https://github.com/rust-lang/crates.io-index" 809checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 810dependencies = [ 811 "cfg-if", 812 "fastrand", 813 "redox_syscall", 814 "rustix", 815 "windows-sys 0.45.0", 816] 817 818[[package]] 819name = "textwrap" 820version = "0.11.0" 821source = "registry+https://github.com/rust-lang/crates.io-index" 822checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 823dependencies = [ 824 "unicode-width", 825] 826 827[[package]] 828name = "thiserror" 829version = "1.0.40" 830source = "registry+https://github.com/rust-lang/crates.io-index" 831checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 832dependencies = [ 833 "thiserror-impl", 834] 835 836[[package]] 837name = "thiserror-impl" 838version = "1.0.40" 839source = "registry+https://github.com/rust-lang/crates.io-index" 840checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 841dependencies = [ 842 "proc-macro2", 843 "quote", 844 "syn 2.0.15", 845] 846 847[[package]] 848name = "tinyvec" 849version = "1.6.0" 850source = "registry+https://github.com/rust-lang/crates.io-index" 851checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 852dependencies = [ 853 "tinyvec_macros", 854] 855 856[[package]] 857name = "tinyvec_macros" 858version = "0.1.1" 859source = "registry+https://github.com/rust-lang/crates.io-index" 860checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 861 862[[package]] 863name = "toml" 864version = "0.5.11" 865source = "registry+https://github.com/rust-lang/crates.io-index" 866checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 867dependencies = [ 868 "serde", 869] 870 871[[package]] 872name = "toml" 873version = "0.7.3" 874source = "registry+https://github.com/rust-lang/crates.io-index" 875checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" 876dependencies = [ 877 "serde", 878 "serde_spanned", 879 "toml_datetime", 880 "toml_edit", 881] 882 883[[package]] 884name = "toml_datetime" 885version = "0.6.1" 886source = "registry+https://github.com/rust-lang/crates.io-index" 887checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" 888dependencies = [ 889 "serde", 890] 891 892[[package]] 893name = "toml_edit" 894version = "0.19.8" 895source = "registry+https://github.com/rust-lang/crates.io-index" 896checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" 897dependencies = [ 898 "indexmap", 899 "serde", 900 "serde_spanned", 901 "toml_datetime", 902 "winnow", 903] 904 905[[package]] 906name = "unicode-bidi" 907version = "0.3.13" 908source = "registry+https://github.com/rust-lang/crates.io-index" 909checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 910 911[[package]] 912name = "unicode-ident" 913version = "1.0.8" 914source = "registry+https://github.com/rust-lang/crates.io-index" 915checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 916 917[[package]] 918name = "unicode-normalization" 919version = "0.1.22" 920source = "registry+https://github.com/rust-lang/crates.io-index" 921checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 922dependencies = [ 923 "tinyvec", 924] 925 926[[package]] 927name = "unicode-segmentation" 928version = "1.10.1" 929source = "registry+https://github.com/rust-lang/crates.io-index" 930checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 931 932[[package]] 933name = "unicode-width" 934version = "0.1.10" 935source = "registry+https://github.com/rust-lang/crates.io-index" 936checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 937 938[[package]] 939name = "untrusted" 940version = "0.7.1" 941source = "registry+https://github.com/rust-lang/crates.io-index" 942checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 943 944[[package]] 945name = "ureq" 946version = "2.6.2" 947source = "registry+https://github.com/rust-lang/crates.io-index" 948checksum = "338b31dd1314f68f3aabf3ed57ab922df95ffcd902476ca7ba3c4ce7b908c46d" 949dependencies = [ 950 "base64", 951 "flate2", 952 "log", 953 "once_cell", 954 "rustls", 955 "url", 956 "webpki", 957 "webpki-roots", 958] 959 960[[package]] 961name = "url" 962version = "2.3.1" 963source = "registry+https://github.com/rust-lang/crates.io-index" 964checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 965dependencies = [ 966 "form_urlencoded", 967 "idna", 968 "percent-encoding", 969] 970 971[[package]] 972name = "uuid" 973version = "1.3.1" 974source = "registry+https://github.com/rust-lang/crates.io-index" 975checksum = "5b55a3fef2a1e3b3a00ce878640918820d3c51081576ac657d23af9fc7928fdb" 976dependencies = [ 977 "getrandom", 978 "serde", 979] 980 981[[package]] 982name = "vcpkg" 983version = "0.2.15" 984source = "registry+https://github.com/rust-lang/crates.io-index" 985checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 986 987[[package]] 988name = "vec_map" 989version = "0.8.2" 990source = "registry+https://github.com/rust-lang/crates.io-index" 991checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 992 993[[package]] 994name = "version-compare" 995version = "0.1.1" 996source = "registry+https://github.com/rust-lang/crates.io-index" 997checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29" 998 999[[package]] 1000name = "version_check" 1001version = "0.9.4" 1002source = "registry+https://github.com/rust-lang/crates.io-index" 1003checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1004 1005[[package]] 1006name = "wasi" 1007version = "0.11.0+wasi-snapshot-preview1" 1008source = "registry+https://github.com/rust-lang/crates.io-index" 1009checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1010 1011[[package]] 1012name = "wasm-bindgen" 1013version = "0.2.84" 1014source = "registry+https://github.com/rust-lang/crates.io-index" 1015checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 1016dependencies = [ 1017 "cfg-if", 1018 "wasm-bindgen-macro", 1019] 1020 1021[[package]] 1022name = "wasm-bindgen-backend" 1023version = "0.2.84" 1024source = "registry+https://github.com/rust-lang/crates.io-index" 1025checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 1026dependencies = [ 1027 "bumpalo", 1028 "log", 1029 "once_cell", 1030 "proc-macro2", 1031 "quote", 1032 "syn 1.0.109", 1033 "wasm-bindgen-shared", 1034] 1035 1036[[package]] 1037name = "wasm-bindgen-macro" 1038version = "0.2.84" 1039source = "registry+https://github.com/rust-lang/crates.io-index" 1040checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 1041dependencies = [ 1042 "quote", 1043 "wasm-bindgen-macro-support", 1044] 1045 1046[[package]] 1047name = "wasm-bindgen-macro-support" 1048version = "0.2.84" 1049source = "registry+https://github.com/rust-lang/crates.io-index" 1050checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 1051dependencies = [ 1052 "proc-macro2", 1053 "quote", 1054 "syn 1.0.109", 1055 "wasm-bindgen-backend", 1056 "wasm-bindgen-shared", 1057] 1058 1059[[package]] 1060name = "wasm-bindgen-shared" 1061version = "0.2.84" 1062source = "registry+https://github.com/rust-lang/crates.io-index" 1063checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 1064 1065[[package]] 1066name = "web-sys" 1067version = "0.3.61" 1068source = "registry+https://github.com/rust-lang/crates.io-index" 1069checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 1070dependencies = [ 1071 "js-sys", 1072 "wasm-bindgen", 1073] 1074 1075[[package]] 1076name = "webpki" 1077version = "0.22.0" 1078source = "registry+https://github.com/rust-lang/crates.io-index" 1079checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 1080dependencies = [ 1081 "ring", 1082 "untrusted", 1083] 1084 1085[[package]] 1086name = "webpki-roots" 1087version = "0.22.6" 1088source = "registry+https://github.com/rust-lang/crates.io-index" 1089checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 1090dependencies = [ 1091 "webpki", 1092] 1093 1094[[package]] 1095name = "winapi" 1096version = "0.3.9" 1097source = "registry+https://github.com/rust-lang/crates.io-index" 1098checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1099dependencies = [ 1100 "winapi-i686-pc-windows-gnu", 1101 "winapi-x86_64-pc-windows-gnu", 1102] 1103 1104[[package]] 1105name = "winapi-i686-pc-windows-gnu" 1106version = "0.4.0" 1107source = "registry+https://github.com/rust-lang/crates.io-index" 1108checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1109 1110[[package]] 1111name = "winapi-x86_64-pc-windows-gnu" 1112version = "0.4.0" 1113source = "registry+https://github.com/rust-lang/crates.io-index" 1114checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1115 1116[[package]] 1117name = "windows-sys" 1118version = "0.45.0" 1119source = "registry+https://github.com/rust-lang/crates.io-index" 1120checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 1121dependencies = [ 1122 "windows-targets 0.42.2", 1123] 1124 1125[[package]] 1126name = "windows-sys" 1127version = "0.48.0" 1128source = "registry+https://github.com/rust-lang/crates.io-index" 1129checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1130dependencies = [ 1131 "windows-targets 0.48.0", 1132] 1133 1134[[package]] 1135name = "windows-targets" 1136version = "0.42.2" 1137source = "registry+https://github.com/rust-lang/crates.io-index" 1138checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 1139dependencies = [ 1140 "windows_aarch64_gnullvm 0.42.2", 1141 "windows_aarch64_msvc 0.42.2", 1142 "windows_i686_gnu 0.42.2", 1143 "windows_i686_msvc 0.42.2", 1144 "windows_x86_64_gnu 0.42.2", 1145 "windows_x86_64_gnullvm 0.42.2", 1146 "windows_x86_64_msvc 0.42.2", 1147] 1148 1149[[package]] 1150name = "windows-targets" 1151version = "0.48.0" 1152source = "registry+https://github.com/rust-lang/crates.io-index" 1153checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 1154dependencies = [ 1155 "windows_aarch64_gnullvm 0.48.0", 1156 "windows_aarch64_msvc 0.48.0", 1157 "windows_i686_gnu 0.48.0", 1158 "windows_i686_msvc 0.48.0", 1159 "windows_x86_64_gnu 0.48.0", 1160 "windows_x86_64_gnullvm 0.48.0", 1161 "windows_x86_64_msvc 0.48.0", 1162] 1163 1164[[package]] 1165name = "windows_aarch64_gnullvm" 1166version = "0.42.2" 1167source = "registry+https://github.com/rust-lang/crates.io-index" 1168checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 1169 1170[[package]] 1171name = "windows_aarch64_gnullvm" 1172version = "0.48.0" 1173source = "registry+https://github.com/rust-lang/crates.io-index" 1174checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 1175 1176[[package]] 1177name = "windows_aarch64_msvc" 1178version = "0.42.2" 1179source = "registry+https://github.com/rust-lang/crates.io-index" 1180checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 1181 1182[[package]] 1183name = "windows_aarch64_msvc" 1184version = "0.48.0" 1185source = "registry+https://github.com/rust-lang/crates.io-index" 1186checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 1187 1188[[package]] 1189name = "windows_i686_gnu" 1190version = "0.42.2" 1191source = "registry+https://github.com/rust-lang/crates.io-index" 1192checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 1193 1194[[package]] 1195name = "windows_i686_gnu" 1196version = "0.48.0" 1197source = "registry+https://github.com/rust-lang/crates.io-index" 1198checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 1199 1200[[package]] 1201name = "windows_i686_msvc" 1202version = "0.42.2" 1203source = "registry+https://github.com/rust-lang/crates.io-index" 1204checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 1205 1206[[package]] 1207name = "windows_i686_msvc" 1208version = "0.48.0" 1209source = "registry+https://github.com/rust-lang/crates.io-index" 1210checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 1211 1212[[package]] 1213name = "windows_x86_64_gnu" 1214version = "0.42.2" 1215source = "registry+https://github.com/rust-lang/crates.io-index" 1216checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 1217 1218[[package]] 1219name = "windows_x86_64_gnu" 1220version = "0.48.0" 1221source = "registry+https://github.com/rust-lang/crates.io-index" 1222checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 1223 1224[[package]] 1225name = "windows_x86_64_gnullvm" 1226version = "0.42.2" 1227source = "registry+https://github.com/rust-lang/crates.io-index" 1228checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 1229 1230[[package]] 1231name = "windows_x86_64_gnullvm" 1232version = "0.48.0" 1233source = "registry+https://github.com/rust-lang/crates.io-index" 1234checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 1235 1236[[package]] 1237name = "windows_x86_64_msvc" 1238version = "0.42.2" 1239source = "registry+https://github.com/rust-lang/crates.io-index" 1240checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 1241 1242[[package]] 1243name = "windows_x86_64_msvc" 1244version = "0.48.0" 1245source = "registry+https://github.com/rust-lang/crates.io-index" 1246checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 1247 1248[[package]] 1249name = "winnow" 1250version = "0.4.1" 1251source = "registry+https://github.com/rust-lang/crates.io-index" 1252checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28" 1253dependencies = [ 1254 "memchr", 1255] 1256 1257[[package]] 1258name = "winreg" 1259version = "0.10.1" 1260source = "registry+https://github.com/rust-lang/crates.io-index" 1261checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 1262dependencies = [ 1263 "winapi", 1264]