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 = "0.5.3" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "ca972c2ea5f742bfce5687b9aef75506a764f61d37f8f649047846a9686ddb66" 10dependencies = [ 11 "memchr 0.1.11", 12] 13 14[[package]] 15name = "aho-corasick" 16version = "0.7.20" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 19dependencies = [ 20 "memchr 2.5.0", 21] 22 23[[package]] 24name = "ansi_term" 25version = "0.12.1" 26source = "registry+https://github.com/rust-lang/crates.io-index" 27checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 28dependencies = [ 29 "winapi 0.3.9", 30] 31 32[[package]] 33name = "atty" 34version = "0.2.14" 35source = "registry+https://github.com/rust-lang/crates.io-index" 36checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 37dependencies = [ 38 "hermit-abi 0.1.19", 39 "libc", 40 "winapi 0.3.9", 41] 42 43[[package]] 44name = "bindgen" 45version = "0.64.0" 46dependencies = [ 47 "bitflags", 48 "cexpr", 49 "clang-sys", 50 "lazy_static", 51 "lazycell", 52 "log 0.4.17", 53 "peeking_take_while", 54 "proc-macro2", 55 "quote", 56 "regex 1.7.1", 57 "rustc-hash", 58 "shlex", 59 "syn", 60 "which", 61] 62 63[[package]] 64name = "bindgen-cli" 65version = "0.64.0" 66dependencies = [ 67 "bindgen", 68 "clap 4.1.4", 69 "env_logger 0.9.3", 70 "log 0.4.17", 71 "shlex", 72] 73 74[[package]] 75name = "bindgen-integration" 76version = "0.1.0" 77dependencies = [ 78 "bindgen", 79 "cc", 80] 81 82[[package]] 83name = "bindgen-tests" 84version = "0.1.0" 85dependencies = [ 86 "bindgen", 87 "clap 4.1.4", 88 "diff", 89 "shlex", 90 "tempfile", 91] 92 93[[package]] 94name = "bitflags" 95version = "1.3.2" 96source = "registry+https://github.com/rust-lang/crates.io-index" 97checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 98 99[[package]] 100name = "block" 101version = "0.1.6" 102source = "registry+https://github.com/rust-lang/crates.io-index" 103checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 104 105[[package]] 106name = "cc" 107version = "1.0.78" 108source = "registry+https://github.com/rust-lang/crates.io-index" 109checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d" 110 111[[package]] 112name = "cexpr" 113version = "0.6.0" 114source = "registry+https://github.com/rust-lang/crates.io-index" 115checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 116dependencies = [ 117 "nom", 118] 119 120[[package]] 121name = "cfg-if" 122version = "1.0.0" 123source = "registry+https://github.com/rust-lang/crates.io-index" 124checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 125 126[[package]] 127name = "clang-sys" 128version = "1.4.0" 129source = "registry+https://github.com/rust-lang/crates.io-index" 130checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3" 131dependencies = [ 132 "glob", 133 "libc", 134 "libloading 0.7.4", 135] 136 137[[package]] 138name = "clap" 139version = "2.34.0" 140source = "registry+https://github.com/rust-lang/crates.io-index" 141checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 142dependencies = [ 143 "ansi_term", 144 "atty", 145 "bitflags", 146 "strsim 0.8.0", 147 "textwrap", 148 "unicode-width", 149 "vec_map", 150] 151 152[[package]] 153name = "clap" 154version = "4.1.4" 155source = "registry+https://github.com/rust-lang/crates.io-index" 156checksum = "f13b9c79b5d1dd500d20ef541215a6423c75829ef43117e1b4d17fd8af0b5d76" 157dependencies = [ 158 "bitflags", 159 "clap_derive", 160 "clap_lex", 161 "is-terminal", 162 "once_cell", 163 "strsim 0.10.0", 164 "termcolor", 165] 166 167[[package]] 168name = "clap_derive" 169version = "4.1.0" 170source = "registry+https://github.com/rust-lang/crates.io-index" 171checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8" 172dependencies = [ 173 "heck", 174 "proc-macro-error", 175 "proc-macro2", 176 "quote", 177 "syn", 178] 179 180[[package]] 181name = "clap_lex" 182version = "0.3.1" 183source = "registry+https://github.com/rust-lang/crates.io-index" 184checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade" 185dependencies = [ 186 "os_str_bytes", 187] 188 189[[package]] 190name = "diff" 191version = "0.1.13" 192source = "registry+https://github.com/rust-lang/crates.io-index" 193checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 194 195[[package]] 196name = "either" 197version = "1.8.1" 198source = "registry+https://github.com/rust-lang/crates.io-index" 199checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 200 201[[package]] 202name = "env_logger" 203version = "0.3.5" 204source = "registry+https://github.com/rust-lang/crates.io-index" 205checksum = "15abd780e45b3ea4f76b4e9a26ff4843258dd8a3eed2775a0e7368c2e7936c2f" 206dependencies = [ 207 "log 0.3.9", 208 "regex 0.1.80", 209] 210 211[[package]] 212name = "env_logger" 213version = "0.9.3" 214source = "registry+https://github.com/rust-lang/crates.io-index" 215checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7" 216dependencies = [ 217 "atty", 218 "humantime", 219 "log 0.4.17", 220 "regex 1.7.1", 221 "termcolor", 222] 223 224[[package]] 225name = "errno" 226version = "0.2.8" 227source = "registry+https://github.com/rust-lang/crates.io-index" 228checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 229dependencies = [ 230 "errno-dragonfly", 231 "libc", 232 "winapi 0.3.9", 233] 234 235[[package]] 236name = "errno-dragonfly" 237version = "0.1.2" 238source = "registry+https://github.com/rust-lang/crates.io-index" 239checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 240dependencies = [ 241 "cc", 242 "libc", 243] 244 245[[package]] 246name = "fastrand" 247version = "1.8.0" 248source = "registry+https://github.com/rust-lang/crates.io-index" 249checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 250dependencies = [ 251 "instant", 252] 253 254[[package]] 255name = "fuchsia-cprng" 256version = "0.1.1" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" 259 260[[package]] 261name = "glob" 262version = "0.3.1" 263source = "registry+https://github.com/rust-lang/crates.io-index" 264checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 265 266[[package]] 267name = "heck" 268version = "0.4.0" 269source = "registry+https://github.com/rust-lang/crates.io-index" 270checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 271 272[[package]] 273name = "hermit-abi" 274version = "0.1.19" 275source = "registry+https://github.com/rust-lang/crates.io-index" 276checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 277dependencies = [ 278 "libc", 279] 280 281[[package]] 282name = "hermit-abi" 283version = "0.2.6" 284source = "registry+https://github.com/rust-lang/crates.io-index" 285checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 286dependencies = [ 287 "libc", 288] 289 290[[package]] 291name = "humantime" 292version = "2.1.0" 293source = "registry+https://github.com/rust-lang/crates.io-index" 294checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 295 296[[package]] 297name = "instant" 298version = "0.1.12" 299source = "registry+https://github.com/rust-lang/crates.io-index" 300checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 301dependencies = [ 302 "cfg-if", 303] 304 305[[package]] 306name = "io-lifetimes" 307version = "1.0.4" 308source = "registry+https://github.com/rust-lang/crates.io-index" 309checksum = "e7d6c6f8c91b4b9ed43484ad1a938e393caf35960fce7f82a040497207bd8e9e" 310dependencies = [ 311 "libc", 312 "windows-sys", 313] 314 315[[package]] 316name = "is-terminal" 317version = "0.4.2" 318source = "registry+https://github.com/rust-lang/crates.io-index" 319checksum = "28dfb6c8100ccc63462345b67d1bbc3679177c75ee4bf59bf29c8b1d110b8189" 320dependencies = [ 321 "hermit-abi 0.2.6", 322 "io-lifetimes", 323 "rustix", 324 "windows-sys", 325] 326 327[[package]] 328name = "kernel32-sys" 329version = "0.2.2" 330source = "registry+https://github.com/rust-lang/crates.io-index" 331checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 332dependencies = [ 333 "winapi 0.2.8", 334 "winapi-build", 335] 336 337[[package]] 338name = "lazy_static" 339version = "1.4.0" 340source = "registry+https://github.com/rust-lang/crates.io-index" 341checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 342 343[[package]] 344name = "lazycell" 345version = "1.3.0" 346source = "registry+https://github.com/rust-lang/crates.io-index" 347checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 348 349[[package]] 350name = "libc" 351version = "0.2.139" 352source = "registry+https://github.com/rust-lang/crates.io-index" 353checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 354 355[[package]] 356name = "libloading" 357version = "0.6.7" 358source = "registry+https://github.com/rust-lang/crates.io-index" 359checksum = "351a32417a12d5f7e82c368a66781e307834dae04c6ce0cd4456d52989229883" 360dependencies = [ 361 "cfg-if", 362 "winapi 0.3.9", 363] 364 365[[package]] 366name = "libloading" 367version = "0.7.4" 368source = "registry+https://github.com/rust-lang/crates.io-index" 369checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 370dependencies = [ 371 "cfg-if", 372 "winapi 0.3.9", 373] 374 375[[package]] 376name = "linux-raw-sys" 377version = "0.1.4" 378source = "registry+https://github.com/rust-lang/crates.io-index" 379checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 380 381[[package]] 382name = "log" 383version = "0.3.9" 384source = "registry+https://github.com/rust-lang/crates.io-index" 385checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" 386dependencies = [ 387 "log 0.4.17", 388] 389 390[[package]] 391name = "log" 392version = "0.4.17" 393source = "registry+https://github.com/rust-lang/crates.io-index" 394checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 395dependencies = [ 396 "cfg-if", 397] 398 399[[package]] 400name = "malloc_buf" 401version = "0.0.6" 402source = "registry+https://github.com/rust-lang/crates.io-index" 403checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 404dependencies = [ 405 "libc", 406] 407 408[[package]] 409name = "memchr" 410version = "0.1.11" 411source = "registry+https://github.com/rust-lang/crates.io-index" 412checksum = "d8b629fb514376c675b98c1421e80b151d3817ac42d7c667717d282761418d20" 413dependencies = [ 414 "libc", 415] 416 417[[package]] 418name = "memchr" 419version = "2.5.0" 420source = "registry+https://github.com/rust-lang/crates.io-index" 421checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 422 423[[package]] 424name = "minimal-lexical" 425version = "0.2.1" 426source = "registry+https://github.com/rust-lang/crates.io-index" 427checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 428 429[[package]] 430name = "nom" 431version = "7.1.3" 432source = "registry+https://github.com/rust-lang/crates.io-index" 433checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 434dependencies = [ 435 "memchr 2.5.0", 436 "minimal-lexical", 437] 438 439[[package]] 440name = "objc" 441version = "0.2.7" 442source = "registry+https://github.com/rust-lang/crates.io-index" 443checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 444dependencies = [ 445 "malloc_buf", 446] 447 448[[package]] 449name = "once_cell" 450version = "1.17.0" 451source = "registry+https://github.com/rust-lang/crates.io-index" 452checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" 453 454[[package]] 455name = "os_str_bytes" 456version = "6.4.1" 457source = "registry+https://github.com/rust-lang/crates.io-index" 458checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" 459 460[[package]] 461name = "peeking_take_while" 462version = "0.1.2" 463source = "registry+https://github.com/rust-lang/crates.io-index" 464checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" 465 466[[package]] 467name = "proc-macro-error" 468version = "1.0.4" 469source = "registry+https://github.com/rust-lang/crates.io-index" 470checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 471dependencies = [ 472 "proc-macro-error-attr", 473 "proc-macro2", 474 "quote", 475 "syn", 476 "version_check", 477] 478 479[[package]] 480name = "proc-macro-error-attr" 481version = "1.0.4" 482source = "registry+https://github.com/rust-lang/crates.io-index" 483checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 484dependencies = [ 485 "proc-macro2", 486 "quote", 487 "version_check", 488] 489 490[[package]] 491name = "proc-macro2" 492version = "1.0.50" 493source = "registry+https://github.com/rust-lang/crates.io-index" 494checksum = "6ef7d57beacfaf2d8aee5937dab7b7f28de3cb8b1828479bb5de2a7106f2bae2" 495dependencies = [ 496 "unicode-ident", 497] 498 499[[package]] 500name = "quickcheck" 501version = "0.4.1" 502source = "registry+https://github.com/rust-lang/crates.io-index" 503checksum = "02c2411d418cea2364325b18a205664f9ef8252e06b2e911db97c0b0d98b1406" 504dependencies = [ 505 "env_logger 0.3.5", 506 "log 0.3.9", 507 "rand 0.3.23", 508] 509 510[[package]] 511name = "quickchecking" 512version = "0.1.0" 513dependencies = [ 514 "clap 2.34.0", 515 "lazy_static", 516 "quickcheck", 517 "rand 0.3.23", 518 "tempdir", 519] 520 521[[package]] 522name = "quote" 523version = "1.0.23" 524source = "registry+https://github.com/rust-lang/crates.io-index" 525checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 526dependencies = [ 527 "proc-macro2", 528] 529 530[[package]] 531name = "rand" 532version = "0.3.23" 533source = "registry+https://github.com/rust-lang/crates.io-index" 534checksum = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" 535dependencies = [ 536 "libc", 537 "rand 0.4.6", 538] 539 540[[package]] 541name = "rand" 542version = "0.4.6" 543source = "registry+https://github.com/rust-lang/crates.io-index" 544checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" 545dependencies = [ 546 "fuchsia-cprng", 547 "libc", 548 "rand_core 0.3.1", 549 "rdrand", 550 "winapi 0.3.9", 551] 552 553[[package]] 554name = "rand_core" 555version = "0.3.1" 556source = "registry+https://github.com/rust-lang/crates.io-index" 557checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 558dependencies = [ 559 "rand_core 0.4.2", 560] 561 562[[package]] 563name = "rand_core" 564version = "0.4.2" 565source = "registry+https://github.com/rust-lang/crates.io-index" 566checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" 567 568[[package]] 569name = "rdrand" 570version = "0.4.0" 571source = "registry+https://github.com/rust-lang/crates.io-index" 572checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 573dependencies = [ 574 "rand_core 0.3.1", 575] 576 577[[package]] 578name = "redox_syscall" 579version = "0.2.16" 580source = "registry+https://github.com/rust-lang/crates.io-index" 581checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 582dependencies = [ 583 "bitflags", 584] 585 586[[package]] 587name = "regex" 588version = "0.1.80" 589source = "registry+https://github.com/rust-lang/crates.io-index" 590checksum = "4fd4ace6a8cf7860714a2c2280d6c1f7e6a413486c13298bbc86fd3da019402f" 591dependencies = [ 592 "aho-corasick 0.5.3", 593 "memchr 0.1.11", 594 "regex-syntax 0.3.9", 595 "thread_local", 596 "utf8-ranges", 597] 598 599[[package]] 600name = "regex" 601version = "1.7.1" 602source = "registry+https://github.com/rust-lang/crates.io-index" 603checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" 604dependencies = [ 605 "aho-corasick 0.7.20", 606 "memchr 2.5.0", 607 "regex-syntax 0.6.28", 608] 609 610[[package]] 611name = "regex-syntax" 612version = "0.3.9" 613source = "registry+https://github.com/rust-lang/crates.io-index" 614checksum = "f9ec002c35e86791825ed294b50008eea9ddfc8def4420124fbc6b08db834957" 615 616[[package]] 617name = "regex-syntax" 618version = "0.6.28" 619source = "registry+https://github.com/rust-lang/crates.io-index" 620checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 621 622[[package]] 623name = "remove_dir_all" 624version = "0.5.3" 625source = "registry+https://github.com/rust-lang/crates.io-index" 626checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 627dependencies = [ 628 "winapi 0.3.9", 629] 630 631[[package]] 632name = "rustc-hash" 633version = "1.1.0" 634source = "registry+https://github.com/rust-lang/crates.io-index" 635checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 636 637[[package]] 638name = "rustix" 639version = "0.36.7" 640source = "registry+https://github.com/rust-lang/crates.io-index" 641checksum = "d4fdebc4b395b7fbb9ab11e462e20ed9051e7b16e42d24042c776eca0ac81b03" 642dependencies = [ 643 "bitflags", 644 "errno", 645 "io-lifetimes", 646 "libc", 647 "linux-raw-sys", 648 "windows-sys", 649] 650 651[[package]] 652name = "shlex" 653version = "1.1.0" 654source = "registry+https://github.com/rust-lang/crates.io-index" 655checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" 656 657[[package]] 658name = "strsim" 659version = "0.8.0" 660source = "registry+https://github.com/rust-lang/crates.io-index" 661checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 662 663[[package]] 664name = "strsim" 665version = "0.10.0" 666source = "registry+https://github.com/rust-lang/crates.io-index" 667checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 668 669[[package]] 670name = "syn" 671version = "1.0.107" 672source = "registry+https://github.com/rust-lang/crates.io-index" 673checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" 674dependencies = [ 675 "proc-macro2", 676 "quote", 677 "unicode-ident", 678] 679 680[[package]] 681name = "tempdir" 682version = "0.3.7" 683source = "registry+https://github.com/rust-lang/crates.io-index" 684checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" 685dependencies = [ 686 "rand 0.4.6", 687 "remove_dir_all", 688] 689 690[[package]] 691name = "tempfile" 692version = "3.3.0" 693source = "registry+https://github.com/rust-lang/crates.io-index" 694checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 695dependencies = [ 696 "cfg-if", 697 "fastrand", 698 "libc", 699 "redox_syscall", 700 "remove_dir_all", 701 "winapi 0.3.9", 702] 703 704[[package]] 705name = "termcolor" 706version = "1.2.0" 707source = "registry+https://github.com/rust-lang/crates.io-index" 708checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 709dependencies = [ 710 "winapi-util", 711] 712 713[[package]] 714name = "tests_expectations" 715version = "0.1.0" 716dependencies = [ 717 "block", 718 "libloading 0.6.7", 719 "objc", 720] 721 722[[package]] 723name = "textwrap" 724version = "0.11.0" 725source = "registry+https://github.com/rust-lang/crates.io-index" 726checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 727dependencies = [ 728 "unicode-width", 729] 730 731[[package]] 732name = "thread-id" 733version = "2.0.0" 734source = "registry+https://github.com/rust-lang/crates.io-index" 735checksum = "a9539db560102d1cef46b8b78ce737ff0bb64e7e18d35b2a5688f7d097d0ff03" 736dependencies = [ 737 "kernel32-sys", 738 "libc", 739] 740 741[[package]] 742name = "thread_local" 743version = "0.2.7" 744source = "registry+https://github.com/rust-lang/crates.io-index" 745checksum = "8576dbbfcaef9641452d5cf0df9b0e7eeab7694956dd33bb61515fb8f18cfdd5" 746dependencies = [ 747 "thread-id", 748] 749 750[[package]] 751name = "unicode-ident" 752version = "1.0.6" 753source = "registry+https://github.com/rust-lang/crates.io-index" 754checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 755 756[[package]] 757name = "unicode-width" 758version = "0.1.10" 759source = "registry+https://github.com/rust-lang/crates.io-index" 760checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 761 762[[package]] 763name = "utf8-ranges" 764version = "0.1.3" 765source = "registry+https://github.com/rust-lang/crates.io-index" 766checksum = "a1ca13c08c41c9c3e04224ed9ff80461d97e121589ff27c753a16cb10830ae0f" 767 768[[package]] 769name = "vec_map" 770version = "0.8.2" 771source = "registry+https://github.com/rust-lang/crates.io-index" 772checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 773 774[[package]] 775name = "version_check" 776version = "0.9.4" 777source = "registry+https://github.com/rust-lang/crates.io-index" 778checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 779 780[[package]] 781name = "which" 782version = "4.4.0" 783source = "registry+https://github.com/rust-lang/crates.io-index" 784checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" 785dependencies = [ 786 "either", 787 "libc", 788 "once_cell", 789] 790 791[[package]] 792name = "winapi" 793version = "0.2.8" 794source = "registry+https://github.com/rust-lang/crates.io-index" 795checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 796 797[[package]] 798name = "winapi" 799version = "0.3.9" 800source = "registry+https://github.com/rust-lang/crates.io-index" 801checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 802dependencies = [ 803 "winapi-i686-pc-windows-gnu", 804 "winapi-x86_64-pc-windows-gnu", 805] 806 807[[package]] 808name = "winapi-build" 809version = "0.1.1" 810source = "registry+https://github.com/rust-lang/crates.io-index" 811checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 812 813[[package]] 814name = "winapi-i686-pc-windows-gnu" 815version = "0.4.0" 816source = "registry+https://github.com/rust-lang/crates.io-index" 817checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 818 819[[package]] 820name = "winapi-util" 821version = "0.1.5" 822source = "registry+https://github.com/rust-lang/crates.io-index" 823checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 824dependencies = [ 825 "winapi 0.3.9", 826] 827 828[[package]] 829name = "winapi-x86_64-pc-windows-gnu" 830version = "0.4.0" 831source = "registry+https://github.com/rust-lang/crates.io-index" 832checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 833 834[[package]] 835name = "windows-sys" 836version = "0.42.0" 837source = "registry+https://github.com/rust-lang/crates.io-index" 838checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 839dependencies = [ 840 "windows_aarch64_gnullvm", 841 "windows_aarch64_msvc", 842 "windows_i686_gnu", 843 "windows_i686_msvc", 844 "windows_x86_64_gnu", 845 "windows_x86_64_gnullvm", 846 "windows_x86_64_msvc", 847] 848 849[[package]] 850name = "windows_aarch64_gnullvm" 851version = "0.42.1" 852source = "registry+https://github.com/rust-lang/crates.io-index" 853checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 854 855[[package]] 856name = "windows_aarch64_msvc" 857version = "0.42.1" 858source = "registry+https://github.com/rust-lang/crates.io-index" 859checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 860 861[[package]] 862name = "windows_i686_gnu" 863version = "0.42.1" 864source = "registry+https://github.com/rust-lang/crates.io-index" 865checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 866 867[[package]] 868name = "windows_i686_msvc" 869version = "0.42.1" 870source = "registry+https://github.com/rust-lang/crates.io-index" 871checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 872 873[[package]] 874name = "windows_x86_64_gnu" 875version = "0.42.1" 876source = "registry+https://github.com/rust-lang/crates.io-index" 877checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 878 879[[package]] 880name = "windows_x86_64_gnullvm" 881version = "0.42.1" 882source = "registry+https://github.com/rust-lang/crates.io-index" 883checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 884 885[[package]] 886name = "windows_x86_64_msvc" 887version = "0.42.1" 888source = "registry+https://github.com/rust-lang/crates.io-index" 889checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 890