1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "Inflector" 7version = "0.11.4" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" 10 11[[package]] 12name = "abort_on_panic" 13version = "2.0.0" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "955f37ac58af2416bac687c8ab66a4ccba282229bd7422a28d2281a5e66a6116" 16 17[[package]] 18name = "adler" 19version = "1.0.2" 20source = "registry+https://github.com/rust-lang/crates.io-index" 21checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 22 23[[package]] 24name = "adler32" 25version = "1.2.0" 26source = "registry+https://github.com/rust-lang/crates.io-index" 27checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 28 29[[package]] 30name = "ahash" 31version = "0.7.6" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 34dependencies = [ 35 "getrandom", 36 "once_cell", 37 "version_check", 38] 39 40[[package]] 41name = "aho-corasick" 42version = "0.7.20" 43source = "registry+https://github.com/rust-lang/crates.io-index" 44checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 45dependencies = [ 46 "memchr", 47] 48 49[[package]] 50name = "android_system_properties" 51version = "0.1.5" 52source = "registry+https://github.com/rust-lang/crates.io-index" 53checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 54dependencies = [ 55 "libc", 56] 57 58[[package]] 59name = "ansi_term" 60version = "0.12.1" 61source = "registry+https://github.com/rust-lang/crates.io-index" 62checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 63dependencies = [ 64 "winapi", 65] 66 67[[package]] 68name = "anyhow" 69version = "1.0.66" 70source = "registry+https://github.com/rust-lang/crates.io-index" 71checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6" 72 73[[package]] 74name = "approx" 75version = "0.5.1" 76source = "registry+https://github.com/rust-lang/crates.io-index" 77checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6" 78dependencies = [ 79 "num-traits", 80] 81 82[[package]] 83name = "arrayvec" 84version = "0.7.2" 85source = "registry+https://github.com/rust-lang/crates.io-index" 86checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 87 88[[package]] 89name = "ascii" 90version = "1.1.0" 91source = "registry+https://github.com/rust-lang/crates.io-index" 92checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16" 93 94[[package]] 95name = "ascii-canvas" 96version = "3.0.0" 97source = "registry+https://github.com/rust-lang/crates.io-index" 98checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6" 99dependencies = [ 100 "term", 101] 102 103[[package]] 104name = "atomic" 105version = "0.5.1" 106source = "registry+https://github.com/rust-lang/crates.io-index" 107checksum = "b88d82667eca772c4aa12f0f1348b3ae643424c8876448f3f7bd5787032e234c" 108dependencies = [ 109 "autocfg", 110] 111 112[[package]] 113name = "atty" 114version = "0.2.14" 115source = "registry+https://github.com/rust-lang/crates.io-index" 116checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 117dependencies = [ 118 "hermit-abi", 119 "libc", 120 "winapi", 121] 122 123[[package]] 124name = "autocfg" 125version = "1.1.0" 126source = "registry+https://github.com/rust-lang/crates.io-index" 127checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 128 129[[package]] 130name = "base64" 131version = "0.13.1" 132source = "registry+https://github.com/rust-lang/crates.io-index" 133checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 134 135[[package]] 136name = "bincode" 137version = "1.3.3" 138source = "registry+https://github.com/rust-lang/crates.io-index" 139checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 140dependencies = [ 141 "serde", 142] 143 144[[package]] 145name = "bit-set" 146version = "0.5.3" 147source = "registry+https://github.com/rust-lang/crates.io-index" 148checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 149dependencies = [ 150 "bit-vec", 151] 152 153[[package]] 154name = "bit-vec" 155version = "0.6.3" 156source = "registry+https://github.com/rust-lang/crates.io-index" 157checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 158 159[[package]] 160name = "bitflags" 161version = "1.3.2" 162source = "registry+https://github.com/rust-lang/crates.io-index" 163checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 164 165[[package]] 166name = "blake2" 167version = "0.10.5" 168source = "registry+https://github.com/rust-lang/crates.io-index" 169checksum = "b12e5fd123190ce1c2e559308a94c9bacad77907d4c6005d9e58fe1a0689e55e" 170dependencies = [ 171 "digest", 172] 173 174[[package]] 175name = "block-buffer" 176version = "0.10.3" 177source = "registry+https://github.com/rust-lang/crates.io-index" 178checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 179dependencies = [ 180 "generic-array", 181] 182 183[[package]] 184name = "bstr" 185version = "0.2.17" 186source = "registry+https://github.com/rust-lang/crates.io-index" 187checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 188dependencies = [ 189 "lazy_static 1.4.0", 190 "memchr", 191 "regex-automata", 192 "serde", 193] 194 195[[package]] 196name = "bumpalo" 197version = "3.11.1" 198source = "registry+https://github.com/rust-lang/crates.io-index" 199checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" 200 201[[package]] 202name = "byteorder" 203version = "1.4.3" 204source = "registry+https://github.com/rust-lang/crates.io-index" 205checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 206 207[[package]] 208name = "bzip2" 209version = "0.4.4" 210source = "registry+https://github.com/rust-lang/crates.io-index" 211checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 212dependencies = [ 213 "bzip2-sys", 214 "libc", 215] 216 217[[package]] 218name = "bzip2-sys" 219version = "0.1.11+1.0.8" 220source = "registry+https://github.com/rust-lang/crates.io-index" 221checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 222dependencies = [ 223 "cc", 224 "libc", 225 "pkg-config", 226] 227 228[[package]] 229name = "caseless" 230version = "0.2.1" 231source = "registry+https://github.com/rust-lang/crates.io-index" 232checksum = "808dab3318747be122cb31d36de18d4d1c81277a76f8332a02b81a3d73463d7f" 233dependencies = [ 234 "regex", 235 "unicode-normalization", 236] 237 238[[package]] 239name = "cast" 240version = "0.3.0" 241source = "registry+https://github.com/rust-lang/crates.io-index" 242checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 243 244[[package]] 245name = "cc" 246version = "1.0.77" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "e9f73505338f7d905b19d18738976aae232eb46b8efc15554ffc56deb5d9ebe4" 249 250[[package]] 251name = "cfg-if" 252version = "1.0.0" 253source = "registry+https://github.com/rust-lang/crates.io-index" 254checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 255 256[[package]] 257name = "chrono" 258version = "0.4.23" 259source = "registry+https://github.com/rust-lang/crates.io-index" 260checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" 261dependencies = [ 262 "iana-time-zone", 263 "js-sys", 264 "num-integer", 265 "num-traits", 266 "time", 267 "wasm-bindgen", 268 "winapi", 269] 270 271[[package]] 272name = "clap" 273version = "2.34.0" 274source = "registry+https://github.com/rust-lang/crates.io-index" 275checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 276dependencies = [ 277 "ansi_term", 278 "atty", 279 "bitflags", 280 "strsim", 281 "textwrap 0.11.0", 282 "unicode-width", 283 "vec_map", 284] 285 286[[package]] 287name = "clipboard-win" 288version = "4.4.2" 289source = "registry+https://github.com/rust-lang/crates.io-index" 290checksum = "c4ab1b92798304eedc095b53942963240037c0516452cb11aeba709d420b2219" 291dependencies = [ 292 "error-code", 293 "str-buf", 294 "winapi", 295] 296 297[[package]] 298name = "codespan-reporting" 299version = "0.11.1" 300source = "registry+https://github.com/rust-lang/crates.io-index" 301checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 302dependencies = [ 303 "termcolor", 304 "unicode-width", 305] 306 307[[package]] 308name = "console" 309version = "0.15.2" 310source = "registry+https://github.com/rust-lang/crates.io-index" 311checksum = "c050367d967ced717c04b65d8c619d863ef9292ce0c5760028655a2fb298718c" 312dependencies = [ 313 "encode_unicode", 314 "lazy_static 1.4.0", 315 "libc", 316 "terminal_size", 317 "winapi", 318] 319 320[[package]] 321name = "console_error_panic_hook" 322version = "0.1.7" 323source = "registry+https://github.com/rust-lang/crates.io-index" 324checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" 325dependencies = [ 326 "cfg-if", 327 "wasm-bindgen", 328] 329 330[[package]] 331name = "core-foundation" 332version = "0.9.3" 333source = "registry+https://github.com/rust-lang/crates.io-index" 334checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 335dependencies = [ 336 "core-foundation-sys", 337 "libc", 338] 339 340[[package]] 341name = "core-foundation-sys" 342version = "0.8.3" 343source = "registry+https://github.com/rust-lang/crates.io-index" 344checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 345 346[[package]] 347name = "cpufeatures" 348version = "0.2.5" 349source = "registry+https://github.com/rust-lang/crates.io-index" 350checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 351dependencies = [ 352 "libc", 353] 354 355[[package]] 356name = "cpython" 357version = "0.7.1" 358source = "registry+https://github.com/rust-lang/crates.io-index" 359checksum = "3052106c29da7390237bc2310c1928335733b286287754ea85e6093d2495280e" 360dependencies = [ 361 "libc", 362 "num-traits", 363 "paste", 364 "python3-sys", 365] 366 367[[package]] 368name = "cranelift" 369version = "0.88.2" 370source = "registry+https://github.com/rust-lang/crates.io-index" 371checksum = "ea1b0c164043c16a8ece6813eef609ac2262a32a0bb0f5ed6eecf5d7bfb79ba8" 372dependencies = [ 373 "cranelift-codegen", 374 "cranelift-frontend", 375] 376 377[[package]] 378name = "cranelift-bforest" 379version = "0.88.2" 380source = "registry+https://github.com/rust-lang/crates.io-index" 381checksum = "52056f6d0584484b57fa6c1a65c1fcb15f3780d8b6a758426d9e3084169b2ddd" 382dependencies = [ 383 "cranelift-entity", 384] 385 386[[package]] 387name = "cranelift-codegen" 388version = "0.88.2" 389source = "registry+https://github.com/rust-lang/crates.io-index" 390checksum = "18fed94c8770dc25d01154c3ffa64ed0b3ba9d583736f305fed7beebe5d9cf74" 391dependencies = [ 392 "arrayvec", 393 "bumpalo", 394 "cranelift-bforest", 395 "cranelift-codegen-meta", 396 "cranelift-codegen-shared", 397 "cranelift-entity", 398 "cranelift-isle", 399 "log", 400 "regalloc2", 401 "smallvec", 402 "target-lexicon", 403] 404 405[[package]] 406name = "cranelift-codegen-meta" 407version = "0.88.2" 408source = "registry+https://github.com/rust-lang/crates.io-index" 409checksum = "1c451b81faf237d11c7e4f3165eeb6bac61112762c5cfe7b4c0fb7241474358f" 410dependencies = [ 411 "cranelift-codegen-shared", 412] 413 414[[package]] 415name = "cranelift-codegen-shared" 416version = "0.88.2" 417source = "registry+https://github.com/rust-lang/crates.io-index" 418checksum = "e7c940133198426d26128f08be2b40b0bd117b84771fd36798969c4d712d81fc" 419 420[[package]] 421name = "cranelift-entity" 422version = "0.88.2" 423source = "registry+https://github.com/rust-lang/crates.io-index" 424checksum = "87a0f1b2fdc18776956370cf8d9b009ded3f855350c480c1c52142510961f352" 425 426[[package]] 427name = "cranelift-frontend" 428version = "0.88.2" 429source = "registry+https://github.com/rust-lang/crates.io-index" 430checksum = "34897538b36b216cc8dd324e73263596d51b8cf610da6498322838b2546baf8a" 431dependencies = [ 432 "cranelift-codegen", 433 "log", 434 "smallvec", 435 "target-lexicon", 436] 437 438[[package]] 439name = "cranelift-isle" 440version = "0.88.2" 441source = "registry+https://github.com/rust-lang/crates.io-index" 442checksum = "1b2629a569fae540f16a76b70afcc87ad7decb38dc28fa6c648ac73b51e78470" 443 444[[package]] 445name = "cranelift-jit" 446version = "0.88.2" 447source = "registry+https://github.com/rust-lang/crates.io-index" 448checksum = "625be33ce54cf906c408f5ad9d08caa6e2a09e52d05fd0bd1bd95b132bfbba73" 449dependencies = [ 450 "anyhow", 451 "cranelift-codegen", 452 "cranelift-entity", 453 "cranelift-module", 454 "cranelift-native", 455 "libc", 456 "log", 457 "region", 458 "target-lexicon", 459 "windows-sys 0.36.1", 460] 461 462[[package]] 463name = "cranelift-module" 464version = "0.88.2" 465source = "registry+https://github.com/rust-lang/crates.io-index" 466checksum = "883f8d42e07fd6b283941688f6c41a9e3b97fbf2b4ddcfb2756e675b86dc5edb" 467dependencies = [ 468 "anyhow", 469 "cranelift-codegen", 470] 471 472[[package]] 473name = "cranelift-native" 474version = "0.88.2" 475source = "registry+https://github.com/rust-lang/crates.io-index" 476checksum = "20937dab4e14d3e225c5adfc9c7106bafd4ac669bdb43027b911ff794c6fb318" 477dependencies = [ 478 "cranelift-codegen", 479 "libc", 480 "target-lexicon", 481] 482 483[[package]] 484name = "crc32fast" 485version = "1.3.2" 486source = "registry+https://github.com/rust-lang/crates.io-index" 487checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 488dependencies = [ 489 "cfg-if", 490] 491 492[[package]] 493name = "criterion" 494version = "0.3.6" 495source = "registry+https://github.com/rust-lang/crates.io-index" 496checksum = "b01d6de93b2b6c65e17c634a26653a29d107b3c98c607c765bf38d041531cd8f" 497dependencies = [ 498 "atty", 499 "cast", 500 "clap", 501 "criterion-plot", 502 "csv", 503 "itertools", 504 "lazy_static 1.4.0", 505 "num-traits", 506 "oorandom", 507 "plotters", 508 "rayon", 509 "regex", 510 "serde", 511 "serde_cbor", 512 "serde_derive", 513 "serde_json", 514 "tinytemplate", 515 "walkdir", 516] 517 518[[package]] 519name = "criterion-plot" 520version = "0.4.5" 521source = "registry+https://github.com/rust-lang/crates.io-index" 522checksum = "2673cc8207403546f45f5fd319a974b1e6983ad1a3ee7e6041650013be041876" 523dependencies = [ 524 "cast", 525 "itertools", 526] 527 528[[package]] 529name = "crossbeam-channel" 530version = "0.5.6" 531source = "registry+https://github.com/rust-lang/crates.io-index" 532checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 533dependencies = [ 534 "cfg-if", 535 "crossbeam-utils", 536] 537 538[[package]] 539name = "crossbeam-deque" 540version = "0.8.2" 541source = "registry+https://github.com/rust-lang/crates.io-index" 542checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 543dependencies = [ 544 "cfg-if", 545 "crossbeam-epoch", 546 "crossbeam-utils", 547] 548 549[[package]] 550name = "crossbeam-epoch" 551version = "0.9.13" 552source = "registry+https://github.com/rust-lang/crates.io-index" 553checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a" 554dependencies = [ 555 "autocfg", 556 "cfg-if", 557 "crossbeam-utils", 558 "memoffset 0.7.1", 559 "scopeguard", 560] 561 562[[package]] 563name = "crossbeam-utils" 564version = "0.8.14" 565source = "registry+https://github.com/rust-lang/crates.io-index" 566checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f" 567dependencies = [ 568 "cfg-if", 569] 570 571[[package]] 572name = "crunchy" 573version = "0.2.2" 574source = "registry+https://github.com/rust-lang/crates.io-index" 575checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 576 577[[package]] 578name = "crypto-common" 579version = "0.1.6" 580source = "registry+https://github.com/rust-lang/crates.io-index" 581checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 582dependencies = [ 583 "generic-array", 584 "typenum", 585] 586 587[[package]] 588name = "csv" 589version = "1.1.6" 590source = "registry+https://github.com/rust-lang/crates.io-index" 591checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1" 592dependencies = [ 593 "bstr", 594 "csv-core", 595 "itoa 0.4.8", 596 "ryu", 597 "serde", 598] 599 600[[package]] 601name = "csv-core" 602version = "0.1.10" 603source = "registry+https://github.com/rust-lang/crates.io-index" 604checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" 605dependencies = [ 606 "memchr", 607] 608 609[[package]] 610name = "cxx" 611version = "1.0.82" 612source = "registry+https://github.com/rust-lang/crates.io-index" 613checksum = "d4a41a86530d0fe7f5d9ea779916b7cadd2d4f9add748b99c2c029cbbdfaf453" 614dependencies = [ 615 "cc", 616 "cxxbridge-flags", 617 "cxxbridge-macro", 618 "link-cplusplus", 619] 620 621[[package]] 622name = "cxx-build" 623version = "1.0.82" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "06416d667ff3e3ad2df1cd8cd8afae5da26cf9cec4d0825040f88b5ca659a2f0" 626dependencies = [ 627 "cc", 628 "codespan-reporting", 629 "once_cell", 630 "proc-macro2", 631 "quote", 632 "scratch", 633 "syn", 634] 635 636[[package]] 637name = "cxxbridge-flags" 638version = "1.0.82" 639source = "registry+https://github.com/rust-lang/crates.io-index" 640checksum = "820a9a2af1669deeef27cb271f476ffd196a2c4b6731336011e0ba63e2c7cf71" 641 642[[package]] 643name = "cxxbridge-macro" 644version = "1.0.82" 645source = "registry+https://github.com/rust-lang/crates.io-index" 646checksum = "a08a6e2fcc370a089ad3b4aaf54db3b1b4cee38ddabce5896b33eb693275f470" 647dependencies = [ 648 "proc-macro2", 649 "quote", 650 "syn", 651] 652 653[[package]] 654name = "diff" 655version = "0.1.13" 656source = "registry+https://github.com/rust-lang/crates.io-index" 657checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 658 659[[package]] 660name = "digest" 661version = "0.10.6" 662source = "registry+https://github.com/rust-lang/crates.io-index" 663checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 664dependencies = [ 665 "block-buffer", 666 "crypto-common", 667 "subtle", 668] 669 670[[package]] 671name = "dirs-next" 672version = "2.0.0" 673source = "registry+https://github.com/rust-lang/crates.io-index" 674checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 675dependencies = [ 676 "cfg-if", 677 "dirs-sys-next", 678] 679 680[[package]] 681name = "dirs-sys-next" 682version = "0.1.2" 683source = "registry+https://github.com/rust-lang/crates.io-index" 684checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 685dependencies = [ 686 "libc", 687 "redox_users", 688 "winapi", 689] 690 691[[package]] 692name = "dns-lookup" 693version = "1.0.8" 694source = "registry+https://github.com/rust-lang/crates.io-index" 695checksum = "53ecafc952c4528d9b51a458d1a8904b81783feff9fde08ab6ed2545ff396872" 696dependencies = [ 697 "cfg-if", 698 "libc", 699 "socket2", 700 "winapi", 701] 702 703[[package]] 704name = "either" 705version = "1.8.0" 706source = "registry+https://github.com/rust-lang/crates.io-index" 707checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" 708 709[[package]] 710name = "ena" 711version = "0.14.0" 712source = "registry+https://github.com/rust-lang/crates.io-index" 713checksum = "d7402b94a93c24e742487327a7cd839dc9d36fec9de9fb25b09f2dae459f36c3" 714dependencies = [ 715 "log", 716] 717 718[[package]] 719name = "encode_unicode" 720version = "0.3.6" 721source = "registry+https://github.com/rust-lang/crates.io-index" 722checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 723 724[[package]] 725name = "endian-type" 726version = "0.1.2" 727source = "registry+https://github.com/rust-lang/crates.io-index" 728checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d" 729 730[[package]] 731name = "env_logger" 732version = "0.9.3" 733source = "registry+https://github.com/rust-lang/crates.io-index" 734checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7" 735dependencies = [ 736 "atty", 737 "log", 738 "termcolor", 739] 740 741[[package]] 742name = "errno" 743version = "0.2.8" 744source = "registry+https://github.com/rust-lang/crates.io-index" 745checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 746dependencies = [ 747 "errno-dragonfly", 748 "libc", 749 "winapi", 750] 751 752[[package]] 753name = "errno-dragonfly" 754version = "0.1.2" 755source = "registry+https://github.com/rust-lang/crates.io-index" 756checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 757dependencies = [ 758 "cc", 759 "libc", 760] 761 762[[package]] 763name = "error-code" 764version = "2.3.1" 765source = "registry+https://github.com/rust-lang/crates.io-index" 766checksum = "64f18991e7bf11e7ffee451b5318b5c1a73c52d0d0ada6e5a3017c8c1ced6a21" 767dependencies = [ 768 "libc", 769 "str-buf", 770] 771 772[[package]] 773name = "exitcode" 774version = "1.1.2" 775source = "registry+https://github.com/rust-lang/crates.io-index" 776checksum = "de853764b47027c2e862a995c34978ffa63c1501f2e15f987ba11bd4f9bba193" 777 778[[package]] 779name = "fd-lock" 780version = "3.0.8" 781source = "registry+https://github.com/rust-lang/crates.io-index" 782checksum = "bb21c69b9fea5e15dbc1049e4b77145dd0ba1c84019c488102de0dc4ea4b0a27" 783dependencies = [ 784 "cfg-if", 785 "rustix", 786 "windows-sys 0.42.0", 787] 788 789[[package]] 790name = "fixedbitset" 791version = "0.4.2" 792source = "registry+https://github.com/rust-lang/crates.io-index" 793checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 794 795[[package]] 796name = "flame" 797version = "0.2.2" 798source = "registry+https://github.com/rust-lang/crates.io-index" 799checksum = "1fc2706461e1ee94f55cab2ed2e3d34ae9536cfa830358ef80acff1a3dacab30" 800dependencies = [ 801 "lazy_static 0.2.11", 802 "serde", 803 "serde_derive", 804 "serde_json", 805 "thread-id", 806] 807 808[[package]] 809name = "flamer" 810version = "0.4.0" 811source = "registry+https://github.com/rust-lang/crates.io-index" 812checksum = "36b732da54fd4ea34452f2431cf464ac7be94ca4b339c9cd3d3d12eb06fe7aab" 813dependencies = [ 814 "flame", 815 "quote", 816 "syn", 817] 818 819[[package]] 820name = "flamescope" 821version = "0.1.2" 822source = "registry+https://github.com/rust-lang/crates.io-index" 823checksum = "c3cc29a6c0dfa26d3a0e80021edda5671eeed79381130897737cdd273ea18909" 824dependencies = [ 825 "flame", 826 "indexmap", 827 "serde", 828 "serde_json", 829] 830 831[[package]] 832name = "flate2" 833version = "1.0.24" 834source = "registry+https://github.com/rust-lang/crates.io-index" 835checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" 836dependencies = [ 837 "crc32fast", 838 "libz-sys", 839 "miniz_oxide", 840] 841 842[[package]] 843name = "fnv" 844version = "1.0.7" 845source = "registry+https://github.com/rust-lang/crates.io-index" 846checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 847 848[[package]] 849name = "foreign-types" 850version = "0.3.2" 851source = "registry+https://github.com/rust-lang/crates.io-index" 852checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 853dependencies = [ 854 "foreign-types-shared", 855] 856 857[[package]] 858name = "foreign-types-shared" 859version = "0.1.1" 860source = "registry+https://github.com/rust-lang/crates.io-index" 861checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 862 863[[package]] 864name = "fxhash" 865version = "0.2.1" 866source = "registry+https://github.com/rust-lang/crates.io-index" 867checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 868dependencies = [ 869 "byteorder", 870] 871 872[[package]] 873name = "generic-array" 874version = "0.14.6" 875source = "registry+https://github.com/rust-lang/crates.io-index" 876checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 877dependencies = [ 878 "typenum", 879 "version_check", 880] 881 882[[package]] 883name = "gethostname" 884version = "0.2.3" 885source = "registry+https://github.com/rust-lang/crates.io-index" 886checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e" 887dependencies = [ 888 "libc", 889 "winapi", 890] 891 892[[package]] 893name = "getrandom" 894version = "0.2.8" 895source = "registry+https://github.com/rust-lang/crates.io-index" 896checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 897dependencies = [ 898 "cfg-if", 899 "js-sys", 900 "libc", 901 "wasi 0.11.0+wasi-snapshot-preview1", 902 "wasm-bindgen", 903] 904 905[[package]] 906name = "glob" 907version = "0.3.0" 908source = "registry+https://github.com/rust-lang/crates.io-index" 909checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" 910 911[[package]] 912name = "half" 913version = "1.8.2" 914source = "registry+https://github.com/rust-lang/crates.io-index" 915checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 916 917[[package]] 918name = "hashbrown" 919version = "0.12.3" 920source = "registry+https://github.com/rust-lang/crates.io-index" 921checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 922 923[[package]] 924name = "heck" 925version = "0.4.0" 926source = "registry+https://github.com/rust-lang/crates.io-index" 927checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 928 929[[package]] 930name = "hermit-abi" 931version = "0.1.19" 932source = "registry+https://github.com/rust-lang/crates.io-index" 933checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 934dependencies = [ 935 "libc", 936] 937 938[[package]] 939name = "hex" 940version = "0.4.3" 941source = "registry+https://github.com/rust-lang/crates.io-index" 942checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 943 944[[package]] 945name = "hexf-parse" 946version = "0.2.1" 947source = "registry+https://github.com/rust-lang/crates.io-index" 948checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df" 949 950[[package]] 951name = "iana-time-zone" 952version = "0.1.53" 953source = "registry+https://github.com/rust-lang/crates.io-index" 954checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" 955dependencies = [ 956 "android_system_properties", 957 "core-foundation-sys", 958 "iana-time-zone-haiku", 959 "js-sys", 960 "wasm-bindgen", 961 "winapi", 962] 963 964[[package]] 965name = "iana-time-zone-haiku" 966version = "0.1.1" 967source = "registry+https://github.com/rust-lang/crates.io-index" 968checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 969dependencies = [ 970 "cxx", 971 "cxx-build", 972] 973 974[[package]] 975name = "indexmap" 976version = "1.9.2" 977source = "registry+https://github.com/rust-lang/crates.io-index" 978checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 979dependencies = [ 980 "autocfg", 981 "hashbrown", 982] 983 984[[package]] 985name = "insta" 986version = "1.21.1" 987source = "registry+https://github.com/rust-lang/crates.io-index" 988checksum = "ba1e75aa1530e7385af7b2685478dece08dafb9db3b4225c753286decea83bef" 989dependencies = [ 990 "console", 991 "lazy_static 1.4.0", 992 "linked-hash-map", 993 "similar", 994 "yaml-rust", 995] 996 997[[package]] 998name = "io-lifetimes" 999version = "1.0.1" 1000source = "registry+https://github.com/rust-lang/crates.io-index" 1001checksum = "a7d367024b3f3414d8e01f437f704f41a9f64ab36f9067fa73e526ad4c763c87" 1002dependencies = [ 1003 "libc", 1004 "windows-sys 0.42.0", 1005] 1006 1007[[package]] 1008name = "is-macro" 1009version = "0.2.1" 1010source = "registry+https://github.com/rust-lang/crates.io-index" 1011checksum = "1c068d4c6b922cd6284c609cfa6dec0e41615c9c5a1a4ba729a970d8daba05fb" 1012dependencies = [ 1013 "Inflector", 1014 "pmutil", 1015 "proc-macro2", 1016 "quote", 1017 "syn", 1018] 1019 1020[[package]] 1021name = "itertools" 1022version = "0.10.5" 1023source = "registry+https://github.com/rust-lang/crates.io-index" 1024checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1025dependencies = [ 1026 "either", 1027] 1028 1029[[package]] 1030name = "itoa" 1031version = "0.4.8" 1032source = "registry+https://github.com/rust-lang/crates.io-index" 1033checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 1034 1035[[package]] 1036name = "itoa" 1037version = "1.0.4" 1038source = "registry+https://github.com/rust-lang/crates.io-index" 1039checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc" 1040 1041[[package]] 1042name = "js-sys" 1043version = "0.3.60" 1044source = "registry+https://github.com/rust-lang/crates.io-index" 1045checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" 1046dependencies = [ 1047 "wasm-bindgen", 1048] 1049 1050[[package]] 1051name = "keccak" 1052version = "0.1.3" 1053source = "registry+https://github.com/rust-lang/crates.io-index" 1054checksum = "3afef3b6eff9ce9d8ff9b3601125eec7f0c8cbac7abd14f355d053fa56c98768" 1055dependencies = [ 1056 "cpufeatures", 1057] 1058 1059[[package]] 1060name = "lalrpop" 1061version = "0.19.8" 1062source = "registry+https://github.com/rust-lang/crates.io-index" 1063checksum = "b30455341b0e18f276fa64540aff54deafb54c589de6aca68659c63dd2d5d823" 1064dependencies = [ 1065 "ascii-canvas", 1066 "atty", 1067 "bit-set", 1068 "diff", 1069 "ena", 1070 "itertools", 1071 "lalrpop-util", 1072 "petgraph", 1073 "pico-args", 1074 "regex", 1075 "regex-syntax", 1076 "string_cache", 1077 "term", 1078 "tiny-keccak", 1079 "unicode-xid", 1080] 1081 1082[[package]] 1083name = "lalrpop-util" 1084version = "0.19.8" 1085source = "registry+https://github.com/rust-lang/crates.io-index" 1086checksum = "bcf796c978e9b4d983414f4caedc9273aa33ee214c5b887bd55fde84c85d2dc4" 1087dependencies = [ 1088 "regex", 1089] 1090 1091[[package]] 1092name = "lazy_static" 1093version = "0.2.11" 1094source = "registry+https://github.com/rust-lang/crates.io-index" 1095checksum = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" 1096 1097[[package]] 1098name = "lazy_static" 1099version = "1.4.0" 1100source = "registry+https://github.com/rust-lang/crates.io-index" 1101checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1102 1103[[package]] 1104name = "lexical-parse-float" 1105version = "0.8.5" 1106source = "registry+https://github.com/rust-lang/crates.io-index" 1107checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f" 1108dependencies = [ 1109 "lexical-parse-integer", 1110 "lexical-util", 1111 "static_assertions", 1112] 1113 1114[[package]] 1115name = "lexical-parse-integer" 1116version = "0.8.6" 1117source = "registry+https://github.com/rust-lang/crates.io-index" 1118checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9" 1119dependencies = [ 1120 "lexical-util", 1121 "static_assertions", 1122] 1123 1124[[package]] 1125name = "lexical-util" 1126version = "0.8.5" 1127source = "registry+https://github.com/rust-lang/crates.io-index" 1128checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc" 1129dependencies = [ 1130 "static_assertions", 1131] 1132 1133[[package]] 1134name = "libc" 1135version = "0.2.137" 1136source = "registry+https://github.com/rust-lang/crates.io-index" 1137checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" 1138 1139[[package]] 1140name = "libffi" 1141version = "2.0.1" 1142source = "registry+https://github.com/rust-lang/crates.io-index" 1143checksum = "4b05b52bd89490a0b36c56715aef46d8580d25343ed243d01337663b287004bf" 1144dependencies = [ 1145 "abort_on_panic", 1146 "libc", 1147 "libffi-sys", 1148] 1149 1150[[package]] 1151name = "libffi-sys" 1152version = "1.3.2" 1153source = "registry+https://github.com/rust-lang/crates.io-index" 1154checksum = "7283a0ec88c0064eb8b3e40990d2a49cdca5a207f46f678e79ea7302b335401f" 1155dependencies = [ 1156 "cc", 1157] 1158 1159[[package]] 1160name = "libsqlite3-sys" 1161version = "0.25.2" 1162source = "registry+https://github.com/rust-lang/crates.io-index" 1163checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa" 1164dependencies = [ 1165 "cc", 1166 "pkg-config", 1167 "vcpkg", 1168] 1169 1170[[package]] 1171name = "libz-sys" 1172version = "1.1.8" 1173source = "registry+https://github.com/rust-lang/crates.io-index" 1174checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf" 1175dependencies = [ 1176 "cc", 1177 "libc", 1178 "pkg-config", 1179 "vcpkg", 1180] 1181 1182[[package]] 1183name = "link-cplusplus" 1184version = "1.0.7" 1185source = "registry+https://github.com/rust-lang/crates.io-index" 1186checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369" 1187dependencies = [ 1188 "cc", 1189] 1190 1191[[package]] 1192name = "linked-hash-map" 1193version = "0.5.6" 1194source = "registry+https://github.com/rust-lang/crates.io-index" 1195checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 1196 1197[[package]] 1198name = "linux-raw-sys" 1199version = "0.1.3" 1200source = "registry+https://github.com/rust-lang/crates.io-index" 1201checksum = "8f9f08d8963a6c613f4b1a78f4f4a4dbfadf8e6545b2d72861731e4858b8b47f" 1202 1203[[package]] 1204name = "lock_api" 1205version = "0.4.9" 1206source = "registry+https://github.com/rust-lang/crates.io-index" 1207checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1208dependencies = [ 1209 "autocfg", 1210 "scopeguard", 1211] 1212 1213[[package]] 1214name = "log" 1215version = "0.4.17" 1216source = "registry+https://github.com/rust-lang/crates.io-index" 1217checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1218dependencies = [ 1219 "cfg-if", 1220] 1221 1222[[package]] 1223name = "lz4_flex" 1224version = "0.9.5" 1225source = "registry+https://github.com/rust-lang/crates.io-index" 1226checksum = "1a8cbbb2831780bc3b9c15a41f5b49222ef756b6730a95f3decfdd15903eb5a3" 1227dependencies = [ 1228 "twox-hash", 1229] 1230 1231[[package]] 1232name = "mac_address" 1233version = "1.1.4" 1234source = "registry+https://github.com/rust-lang/crates.io-index" 1235checksum = "b238e3235c8382b7653c6408ed1b08dd379bdb9fdf990fb0bbae3db2cc0ae963" 1236dependencies = [ 1237 "nix 0.23.1", 1238 "winapi", 1239] 1240 1241[[package]] 1242name = "mach" 1243version = "0.3.2" 1244source = "registry+https://github.com/rust-lang/crates.io-index" 1245checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa" 1246dependencies = [ 1247 "libc", 1248] 1249 1250[[package]] 1251name = "maplit" 1252version = "1.0.2" 1253source = "registry+https://github.com/rust-lang/crates.io-index" 1254checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" 1255 1256[[package]] 1257name = "matches" 1258version = "0.1.9" 1259source = "registry+https://github.com/rust-lang/crates.io-index" 1260checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 1261 1262[[package]] 1263name = "md-5" 1264version = "0.10.5" 1265source = "registry+https://github.com/rust-lang/crates.io-index" 1266checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" 1267dependencies = [ 1268 "digest", 1269] 1270 1271[[package]] 1272name = "memchr" 1273version = "2.5.0" 1274source = "registry+https://github.com/rust-lang/crates.io-index" 1275checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1276 1277[[package]] 1278name = "memmap2" 1279version = "0.5.8" 1280source = "registry+https://github.com/rust-lang/crates.io-index" 1281checksum = "4b182332558b18d807c4ce1ca8ca983b34c3ee32765e47b3f0f69b90355cc1dc" 1282dependencies = [ 1283 "libc", 1284] 1285 1286[[package]] 1287name = "memoffset" 1288version = "0.6.5" 1289source = "registry+https://github.com/rust-lang/crates.io-index" 1290checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1291dependencies = [ 1292 "autocfg", 1293] 1294 1295[[package]] 1296name = "memoffset" 1297version = "0.7.1" 1298source = "registry+https://github.com/rust-lang/crates.io-index" 1299checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 1300dependencies = [ 1301 "autocfg", 1302] 1303 1304[[package]] 1305name = "miniz_oxide" 1306version = "0.5.4" 1307source = "registry+https://github.com/rust-lang/crates.io-index" 1308checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34" 1309dependencies = [ 1310 "adler", 1311] 1312 1313[[package]] 1314name = "mt19937" 1315version = "2.0.1" 1316source = "registry+https://github.com/rust-lang/crates.io-index" 1317checksum = "12ca7f22ed370d5991a9caec16a83187e865bc8a532f889670337d5a5689e3a1" 1318dependencies = [ 1319 "rand_core", 1320] 1321 1322[[package]] 1323name = "new_debug_unreachable" 1324version = "1.0.4" 1325source = "registry+https://github.com/rust-lang/crates.io-index" 1326checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1327 1328[[package]] 1329name = "nibble_vec" 1330version = "0.1.0" 1331source = "registry+https://github.com/rust-lang/crates.io-index" 1332checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43" 1333dependencies = [ 1334 "smallvec", 1335] 1336 1337[[package]] 1338name = "nix" 1339version = "0.23.1" 1340source = "registry+https://github.com/rust-lang/crates.io-index" 1341checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6" 1342dependencies = [ 1343 "bitflags", 1344 "cc", 1345 "cfg-if", 1346 "libc", 1347 "memoffset 0.6.5", 1348] 1349 1350[[package]] 1351name = "nix" 1352version = "0.24.2" 1353source = "registry+https://github.com/rust-lang/crates.io-index" 1354checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc" 1355dependencies = [ 1356 "bitflags", 1357 "cfg-if", 1358 "libc", 1359 "memoffset 0.6.5", 1360] 1361 1362[[package]] 1363name = "num-bigint" 1364version = "0.4.3" 1365source = "registry+https://github.com/rust-lang/crates.io-index" 1366checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 1367dependencies = [ 1368 "autocfg", 1369 "num-integer", 1370 "num-traits", 1371 "serde", 1372] 1373 1374[[package]] 1375name = "num-complex" 1376version = "0.4.2" 1377source = "registry+https://github.com/rust-lang/crates.io-index" 1378checksum = "7ae39348c8bc5fbd7f40c727a9925f03517afd2ab27d46702108b6a7e5414c19" 1379dependencies = [ 1380 "num-traits", 1381 "serde", 1382] 1383 1384[[package]] 1385name = "num-integer" 1386version = "0.1.45" 1387source = "registry+https://github.com/rust-lang/crates.io-index" 1388checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1389dependencies = [ 1390 "autocfg", 1391 "num-traits", 1392] 1393 1394[[package]] 1395name = "num-rational" 1396version = "0.4.1" 1397source = "registry+https://github.com/rust-lang/crates.io-index" 1398checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 1399dependencies = [ 1400 "autocfg", 1401 "num-bigint", 1402 "num-integer", 1403 "num-traits", 1404] 1405 1406[[package]] 1407name = "num-traits" 1408version = "0.2.15" 1409source = "registry+https://github.com/rust-lang/crates.io-index" 1410checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1411dependencies = [ 1412 "autocfg", 1413] 1414 1415[[package]] 1416name = "num_cpus" 1417version = "1.14.0" 1418source = "registry+https://github.com/rust-lang/crates.io-index" 1419checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5" 1420dependencies = [ 1421 "hermit-abi", 1422 "libc", 1423] 1424 1425[[package]] 1426name = "num_enum" 1427version = "0.5.7" 1428source = "registry+https://github.com/rust-lang/crates.io-index" 1429checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" 1430dependencies = [ 1431 "num_enum_derive", 1432] 1433 1434[[package]] 1435name = "num_enum_derive" 1436version = "0.5.7" 1437source = "registry+https://github.com/rust-lang/crates.io-index" 1438checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" 1439dependencies = [ 1440 "proc-macro-crate", 1441 "proc-macro2", 1442 "quote", 1443 "syn", 1444] 1445 1446[[package]] 1447name = "once_cell" 1448version = "1.16.0" 1449source = "registry+https://github.com/rust-lang/crates.io-index" 1450checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" 1451 1452[[package]] 1453name = "oorandom" 1454version = "11.1.3" 1455source = "registry+https://github.com/rust-lang/crates.io-index" 1456checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 1457 1458[[package]] 1459name = "openssl" 1460version = "0.10.43" 1461source = "registry+https://github.com/rust-lang/crates.io-index" 1462checksum = "020433887e44c27ff16365eaa2d380547a94544ad509aff6eb5b6e3e0b27b376" 1463dependencies = [ 1464 "bitflags", 1465 "cfg-if", 1466 "foreign-types", 1467 "libc", 1468 "once_cell", 1469 "openssl-macros", 1470 "openssl-sys", 1471] 1472 1473[[package]] 1474name = "openssl-macros" 1475version = "0.1.0" 1476source = "registry+https://github.com/rust-lang/crates.io-index" 1477checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 1478dependencies = [ 1479 "proc-macro2", 1480 "quote", 1481 "syn", 1482] 1483 1484[[package]] 1485name = "openssl-probe" 1486version = "0.1.5" 1487source = "registry+https://github.com/rust-lang/crates.io-index" 1488checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1489 1490[[package]] 1491name = "openssl-src" 1492version = "111.24.0+1.1.1s" 1493source = "registry+https://github.com/rust-lang/crates.io-index" 1494checksum = "3498f259dab01178c6228c6b00dcef0ed2a2d5e20d648c017861227773ea4abd" 1495dependencies = [ 1496 "cc", 1497] 1498 1499[[package]] 1500name = "openssl-sys" 1501version = "0.9.78" 1502source = "registry+https://github.com/rust-lang/crates.io-index" 1503checksum = "07d5c8cb6e57b3a3612064d7b18b117912b4ce70955c2504d4b741c9e244b132" 1504dependencies = [ 1505 "autocfg", 1506 "cc", 1507 "libc", 1508 "openssl-src", 1509 "pkg-config", 1510 "vcpkg", 1511] 1512 1513[[package]] 1514name = "optional" 1515version = "0.5.0" 1516source = "registry+https://github.com/rust-lang/crates.io-index" 1517checksum = "978aa494585d3ca4ad74929863093e87cac9790d81fe7aba2b3dc2890643a0fc" 1518 1519[[package]] 1520name = "page_size" 1521version = "0.4.2" 1522source = "registry+https://github.com/rust-lang/crates.io-index" 1523checksum = "eebde548fbbf1ea81a99b128872779c437752fb99f217c45245e1a61dcd9edcd" 1524dependencies = [ 1525 "libc", 1526 "winapi", 1527] 1528 1529[[package]] 1530name = "parking_lot" 1531version = "0.12.1" 1532source = "registry+https://github.com/rust-lang/crates.io-index" 1533checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1534dependencies = [ 1535 "lock_api", 1536 "parking_lot_core", 1537] 1538 1539[[package]] 1540name = "parking_lot_core" 1541version = "0.9.4" 1542source = "registry+https://github.com/rust-lang/crates.io-index" 1543checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0" 1544dependencies = [ 1545 "cfg-if", 1546 "libc", 1547 "redox_syscall 0.2.16", 1548 "smallvec", 1549 "windows-sys 0.42.0", 1550] 1551 1552[[package]] 1553name = "paste" 1554version = "1.0.9" 1555source = "registry+https://github.com/rust-lang/crates.io-index" 1556checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1" 1557 1558[[package]] 1559name = "petgraph" 1560version = "0.6.2" 1561source = "registry+https://github.com/rust-lang/crates.io-index" 1562checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143" 1563dependencies = [ 1564 "fixedbitset", 1565 "indexmap", 1566] 1567 1568[[package]] 1569name = "phf" 1570version = "0.10.1" 1571source = "registry+https://github.com/rust-lang/crates.io-index" 1572checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 1573dependencies = [ 1574 "phf_shared", 1575] 1576 1577[[package]] 1578name = "phf_codegen" 1579version = "0.10.0" 1580source = "registry+https://github.com/rust-lang/crates.io-index" 1581checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" 1582dependencies = [ 1583 "phf_generator", 1584 "phf_shared", 1585] 1586 1587[[package]] 1588name = "phf_generator" 1589version = "0.10.0" 1590source = "registry+https://github.com/rust-lang/crates.io-index" 1591checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 1592dependencies = [ 1593 "phf_shared", 1594 "rand", 1595] 1596 1597[[package]] 1598name = "phf_shared" 1599version = "0.10.0" 1600source = "registry+https://github.com/rust-lang/crates.io-index" 1601checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 1602dependencies = [ 1603 "siphasher", 1604] 1605 1606[[package]] 1607name = "pico-args" 1608version = "0.4.2" 1609source = "registry+https://github.com/rust-lang/crates.io-index" 1610checksum = "db8bcd96cb740d03149cbad5518db9fd87126a10ab519c011893b1754134c468" 1611 1612[[package]] 1613name = "pkg-config" 1614version = "0.3.26" 1615source = "registry+https://github.com/rust-lang/crates.io-index" 1616checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 1617 1618[[package]] 1619name = "plotters" 1620version = "0.3.4" 1621source = "registry+https://github.com/rust-lang/crates.io-index" 1622checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97" 1623dependencies = [ 1624 "num-traits", 1625 "plotters-backend", 1626 "plotters-svg", 1627 "wasm-bindgen", 1628 "web-sys", 1629] 1630 1631[[package]] 1632name = "plotters-backend" 1633version = "0.3.4" 1634source = "registry+https://github.com/rust-lang/crates.io-index" 1635checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142" 1636 1637[[package]] 1638name = "plotters-svg" 1639version = "0.3.3" 1640source = "registry+https://github.com/rust-lang/crates.io-index" 1641checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f" 1642dependencies = [ 1643 "plotters-backend", 1644] 1645 1646[[package]] 1647name = "pmutil" 1648version = "0.5.3" 1649source = "registry+https://github.com/rust-lang/crates.io-index" 1650checksum = "3894e5d549cccbe44afecf72922f277f603cd4bb0219c8342631ef18fffbe004" 1651dependencies = [ 1652 "proc-macro2", 1653 "quote", 1654 "syn", 1655] 1656 1657[[package]] 1658name = "ppv-lite86" 1659version = "0.2.17" 1660source = "registry+https://github.com/rust-lang/crates.io-index" 1661checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1662 1663[[package]] 1664name = "precomputed-hash" 1665version = "0.1.1" 1666source = "registry+https://github.com/rust-lang/crates.io-index" 1667checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 1668 1669[[package]] 1670name = "proc-macro-crate" 1671version = "1.2.1" 1672source = "registry+https://github.com/rust-lang/crates.io-index" 1673checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9" 1674dependencies = [ 1675 "once_cell", 1676 "thiserror", 1677 "toml", 1678] 1679 1680[[package]] 1681name = "proc-macro2" 1682version = "1.0.47" 1683source = "registry+https://github.com/rust-lang/crates.io-index" 1684checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725" 1685dependencies = [ 1686 "unicode-ident", 1687] 1688 1689[[package]] 1690name = "puruspe" 1691version = "0.1.5" 1692source = "registry+https://github.com/rust-lang/crates.io-index" 1693checksum = "3b7e158a385023d209d6d5f2585c4b468f6dcb3dd5aca9b75c4f1678c05bb375" 1694 1695[[package]] 1696name = "python3-sys" 1697version = "0.7.1" 1698source = "registry+https://github.com/rust-lang/crates.io-index" 1699checksum = "49f8b50d72fb3015735aa403eebf19bbd72c093bfeeae24ee798be5f2f1aab52" 1700dependencies = [ 1701 "libc", 1702 "regex", 1703] 1704 1705[[package]] 1706name = "quote" 1707version = "1.0.21" 1708source = "registry+https://github.com/rust-lang/crates.io-index" 1709checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" 1710dependencies = [ 1711 "proc-macro2", 1712] 1713 1714[[package]] 1715name = "radium" 1716version = "0.7.0" 1717source = "registry+https://github.com/rust-lang/crates.io-index" 1718checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 1719 1720[[package]] 1721name = "radix_trie" 1722version = "0.2.1" 1723source = "registry+https://github.com/rust-lang/crates.io-index" 1724checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd" 1725dependencies = [ 1726 "endian-type", 1727 "nibble_vec", 1728] 1729 1730[[package]] 1731name = "rand" 1732version = "0.8.5" 1733source = "registry+https://github.com/rust-lang/crates.io-index" 1734checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1735dependencies = [ 1736 "libc", 1737 "rand_chacha", 1738 "rand_core", 1739] 1740 1741[[package]] 1742name = "rand_chacha" 1743version = "0.3.1" 1744source = "registry+https://github.com/rust-lang/crates.io-index" 1745checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1746dependencies = [ 1747 "ppv-lite86", 1748 "rand_core", 1749] 1750 1751[[package]] 1752name = "rand_core" 1753version = "0.6.4" 1754source = "registry+https://github.com/rust-lang/crates.io-index" 1755checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1756dependencies = [ 1757 "getrandom", 1758] 1759 1760[[package]] 1761name = "rayon" 1762version = "1.6.0" 1763source = "registry+https://github.com/rust-lang/crates.io-index" 1764checksum = "1e060280438193c554f654141c9ea9417886713b7acd75974c85b18a69a88e0b" 1765dependencies = [ 1766 "crossbeam-deque", 1767 "either", 1768 "rayon-core", 1769] 1770 1771[[package]] 1772name = "rayon-core" 1773version = "1.10.1" 1774source = "registry+https://github.com/rust-lang/crates.io-index" 1775checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3" 1776dependencies = [ 1777 "crossbeam-channel", 1778 "crossbeam-deque", 1779 "crossbeam-utils", 1780 "num_cpus", 1781] 1782 1783[[package]] 1784name = "redox_syscall" 1785version = "0.1.57" 1786source = "registry+https://github.com/rust-lang/crates.io-index" 1787checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" 1788 1789[[package]] 1790name = "redox_syscall" 1791version = "0.2.16" 1792source = "registry+https://github.com/rust-lang/crates.io-index" 1793checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1794dependencies = [ 1795 "bitflags", 1796] 1797 1798[[package]] 1799name = "redox_users" 1800version = "0.4.3" 1801source = "registry+https://github.com/rust-lang/crates.io-index" 1802checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 1803dependencies = [ 1804 "getrandom", 1805 "redox_syscall 0.2.16", 1806 "thiserror", 1807] 1808 1809[[package]] 1810name = "regalloc2" 1811version = "0.3.2" 1812source = "registry+https://github.com/rust-lang/crates.io-index" 1813checksum = "d43a209257d978ef079f3d446331d0f1794f5e0fc19b306a199983857833a779" 1814dependencies = [ 1815 "fxhash", 1816 "log", 1817 "slice-group-by", 1818 "smallvec", 1819] 1820 1821[[package]] 1822name = "regex" 1823version = "1.7.0" 1824source = "registry+https://github.com/rust-lang/crates.io-index" 1825checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" 1826dependencies = [ 1827 "aho-corasick", 1828 "memchr", 1829 "regex-syntax", 1830] 1831 1832[[package]] 1833name = "regex-automata" 1834version = "0.1.10" 1835source = "registry+https://github.com/rust-lang/crates.io-index" 1836checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1837 1838[[package]] 1839name = "regex-syntax" 1840version = "0.6.28" 1841source = "registry+https://github.com/rust-lang/crates.io-index" 1842checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 1843 1844[[package]] 1845name = "region" 1846version = "2.2.0" 1847source = "registry+https://github.com/rust-lang/crates.io-index" 1848checksum = "877e54ea2adcd70d80e9179344c97f93ef0dffd6b03e1f4529e6e83ab2fa9ae0" 1849dependencies = [ 1850 "bitflags", 1851 "libc", 1852 "mach", 1853 "winapi", 1854] 1855 1856[[package]] 1857name = "result-like" 1858version = "0.4.5" 1859source = "registry+https://github.com/rust-lang/crates.io-index" 1860checksum = "7b80fe0296795a96913be20558326b797a187bb3986ce84ed82dee0fb7414428" 1861dependencies = [ 1862 "result-like-derive", 1863] 1864 1865[[package]] 1866name = "result-like-derive" 1867version = "0.4.5" 1868source = "registry+https://github.com/rust-lang/crates.io-index" 1869checksum = "2a29c8a4ac7839f1dcb8b899263b501e0d6932f210300c8a0d271323727b35c1" 1870dependencies = [ 1871 "pmutil", 1872 "proc-macro2", 1873 "quote", 1874 "syn", 1875 "syn-ext", 1876] 1877 1878[[package]] 1879name = "rustc-hash" 1880version = "1.1.0" 1881source = "registry+https://github.com/rust-lang/crates.io-index" 1882checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1883 1884[[package]] 1885name = "rustc_version" 1886version = "0.4.0" 1887source = "registry+https://github.com/rust-lang/crates.io-index" 1888checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1889dependencies = [ 1890 "semver", 1891] 1892 1893[[package]] 1894name = "rustix" 1895version = "0.36.3" 1896source = "registry+https://github.com/rust-lang/crates.io-index" 1897checksum = "0b1fbb4dfc4eb1d390c02df47760bb19a84bb80b301ecc947ab5406394d8223e" 1898dependencies = [ 1899 "bitflags", 1900 "errno", 1901 "io-lifetimes", 1902 "libc", 1903 "linux-raw-sys", 1904 "windows-sys 0.42.0", 1905] 1906 1907[[package]] 1908name = "rustpython" 1909version = "0.2.0" 1910dependencies = [ 1911 "atty", 1912 "cfg-if", 1913 "clap", 1914 "cpython", 1915 "criterion", 1916 "dirs-next", 1917 "env_logger", 1918 "flame", 1919 "flamescope", 1920 "libc", 1921 "log", 1922 "num-traits", 1923 "python3-sys", 1924 "rustpython-compiler", 1925 "rustpython-parser", 1926 "rustpython-pylib", 1927 "rustpython-stdlib", 1928 "rustpython-vm", 1929 "rustyline", 1930] 1931 1932[[package]] 1933name = "rustpython-ast" 1934version = "0.2.0" 1935dependencies = [ 1936 "num-bigint", 1937 "rustpython-common", 1938 "rustpython-compiler-core", 1939] 1940 1941[[package]] 1942name = "rustpython-codegen" 1943version = "0.2.0" 1944dependencies = [ 1945 "ahash", 1946 "bitflags", 1947 "indexmap", 1948 "insta", 1949 "itertools", 1950 "log", 1951 "num-complex", 1952 "num-traits", 1953 "rustpython-ast", 1954 "rustpython-compiler-core", 1955 "rustpython-parser", 1956 "thiserror", 1957] 1958 1959[[package]] 1960name = "rustpython-common" 1961version = "0.2.0" 1962dependencies = [ 1963 "ascii", 1964 "bitflags", 1965 "cfg-if", 1966 "hexf-parse", 1967 "itertools", 1968 "lexical-parse-float", 1969 "libc", 1970 "lock_api", 1971 "num-bigint", 1972 "num-complex", 1973 "num-traits", 1974 "once_cell", 1975 "parking_lot", 1976 "radium", 1977 "rand", 1978 "siphasher", 1979 "unic-ucd-category", 1980 "volatile", 1981 "widestring", 1982] 1983 1984[[package]] 1985name = "rustpython-compiler" 1986version = "0.2.0" 1987dependencies = [ 1988 "rustpython-codegen", 1989 "rustpython-compiler-core", 1990 "rustpython-parser", 1991 "thiserror", 1992] 1993 1994[[package]] 1995name = "rustpython-compiler-core" 1996version = "0.2.0" 1997dependencies = [ 1998 "bincode", 1999 "bitflags", 2000 "bstr", 2001 "itertools", 2002 "lz4_flex", 2003 "num-bigint", 2004 "num-complex", 2005 "serde", 2006 "static_assertions", 2007 "thiserror", 2008] 2009 2010[[package]] 2011name = "rustpython-derive" 2012version = "0.2.0" 2013dependencies = [ 2014 "rustpython-compiler", 2015 "rustpython-derive-impl", 2016 "syn", 2017] 2018 2019[[package]] 2020name = "rustpython-derive-impl" 2021version = "0.2.0" 2022dependencies = [ 2023 "indexmap", 2024 "itertools", 2025 "maplit", 2026 "once_cell", 2027 "proc-macro2", 2028 "quote", 2029 "rustpython-compiler-core", 2030 "rustpython-doc", 2031 "syn", 2032 "syn-ext", 2033 "textwrap 0.15.2", 2034] 2035 2036[[package]] 2037name = "rustpython-doc" 2038version = "0.1.0" 2039source = "git+https://github.com/RustPython/__doc__?branch=main#d927debd491e4c45b88e953e6e50e4718e0f2965" 2040dependencies = [ 2041 "once_cell", 2042] 2043 2044[[package]] 2045name = "rustpython-jit" 2046version = "0.2.0" 2047dependencies = [ 2048 "approx", 2049 "cranelift", 2050 "cranelift-jit", 2051 "cranelift-module", 2052 "libffi", 2053 "num-traits", 2054 "rustpython-compiler-core", 2055 "rustpython-derive", 2056 "thiserror", 2057] 2058 2059[[package]] 2060name = "rustpython-parser" 2061version = "0.2.0" 2062dependencies = [ 2063 "ahash", 2064 "anyhow", 2065 "insta", 2066 "itertools", 2067 "lalrpop", 2068 "lalrpop-util", 2069 "log", 2070 "num-bigint", 2071 "num-traits", 2072 "phf", 2073 "phf_codegen", 2074 "rustc-hash", 2075 "rustpython-ast", 2076 "rustpython-compiler-core", 2077 "thiserror", 2078 "tiny-keccak", 2079 "unic-emoji-char", 2080 "unic-ucd-ident", 2081 "unicode_names2", 2082] 2083 2084[[package]] 2085name = "rustpython-pylib" 2086version = "0.2.0" 2087dependencies = [ 2088 "glob", 2089 "rustpython-compiler-core", 2090 "rustpython-derive", 2091] 2092 2093[[package]] 2094name = "rustpython-stdlib" 2095version = "0.2.0" 2096dependencies = [ 2097 "adler32", 2098 "ahash", 2099 "ascii", 2100 "base64", 2101 "blake2", 2102 "bzip2", 2103 "cfg-if", 2104 "crc32fast", 2105 "crossbeam-utils", 2106 "csv-core", 2107 "digest", 2108 "dns-lookup", 2109 "flate2", 2110 "foreign-types-shared", 2111 "gethostname", 2112 "hex", 2113 "itertools", 2114 "lexical-parse-float", 2115 "libc", 2116 "libsqlite3-sys", 2117 "libz-sys", 2118 "mac_address", 2119 "md-5", 2120 "memchr", 2121 "memmap2", 2122 "mt19937", 2123 "nix 0.24.2", 2124 "num-bigint", 2125 "num-complex", 2126 "num-integer", 2127 "num-rational", 2128 "num-traits", 2129 "num_enum", 2130 "once_cell", 2131 "openssl", 2132 "openssl-probe", 2133 "openssl-sys", 2134 "page_size", 2135 "parking_lot", 2136 "paste", 2137 "puruspe", 2138 "rand", 2139 "rand_core", 2140 "rustpython-common", 2141 "rustpython-derive", 2142 "rustpython-vm", 2143 "schannel", 2144 "sha-1", 2145 "sha2", 2146 "sha3", 2147 "socket2", 2148 "system-configuration", 2149 "termios", 2150 "unic-char-property", 2151 "unic-normal", 2152 "unic-ucd-age", 2153 "unic-ucd-bidi", 2154 "unic-ucd-category", 2155 "unic-ucd-ident", 2156 "unicode-casing", 2157 "unicode_names2", 2158 "uuid", 2159 "widestring", 2160 "winapi", 2161 "xml-rs", 2162] 2163 2164[[package]] 2165name = "rustpython-vm" 2166version = "0.2.0" 2167dependencies = [ 2168 "adler32", 2169 "ahash", 2170 "ascii", 2171 "atty", 2172 "bitflags", 2173 "bstr", 2174 "caseless", 2175 "cfg-if", 2176 "chrono", 2177 "crossbeam-utils", 2178 "exitcode", 2179 "flame", 2180 "flamer", 2181 "flate2", 2182 "getrandom", 2183 "glob", 2184 "half", 2185 "hex", 2186 "hexf-parse", 2187 "indexmap", 2188 "is-macro", 2189 "itertools", 2190 "libc", 2191 "log", 2192 "memchr", 2193 "memoffset 0.6.5", 2194 "nix 0.24.2", 2195 "num-bigint", 2196 "num-complex", 2197 "num-integer", 2198 "num-rational", 2199 "num-traits", 2200 "num_cpus", 2201 "num_enum", 2202 "once_cell", 2203 "optional", 2204 "parking_lot", 2205 "paste", 2206 "rand", 2207 "result-like", 2208 "rustc_version", 2209 "rustpython-ast", 2210 "rustpython-codegen", 2211 "rustpython-common", 2212 "rustpython-compiler", 2213 "rustpython-compiler-core", 2214 "rustpython-derive", 2215 "rustpython-jit", 2216 "rustpython-parser", 2217 "rustyline", 2218 "schannel", 2219 "serde", 2220 "sre-engine", 2221 "static_assertions", 2222 "strum", 2223 "strum_macros", 2224 "thiserror", 2225 "thread_local", 2226 "timsort", 2227 "uname", 2228 "unic-ucd-bidi", 2229 "unic-ucd-category", 2230 "unic-ucd-ident", 2231 "unicode-casing", 2232 "unicode_names2", 2233 "wasm-bindgen", 2234 "which", 2235 "widestring", 2236 "winapi", 2237 "windows", 2238 "winreg", 2239] 2240 2241[[package]] 2242name = "rustpython_wasm" 2243version = "0.2.0" 2244dependencies = [ 2245 "console_error_panic_hook", 2246 "js-sys", 2247 "parking_lot", 2248 "rustpython-common", 2249 "rustpython-parser", 2250 "rustpython-pylib", 2251 "rustpython-stdlib", 2252 "rustpython-vm", 2253 "serde", 2254 "serde-wasm-bindgen", 2255 "wasm-bindgen", 2256 "wasm-bindgen-futures", 2257 "web-sys", 2258] 2259 2260[[package]] 2261name = "rustversion" 2262version = "1.0.9" 2263source = "registry+https://github.com/rust-lang/crates.io-index" 2264checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8" 2265 2266[[package]] 2267name = "rustyline" 2268version = "10.0.0" 2269source = "registry+https://github.com/rust-lang/crates.io-index" 2270checksum = "1d1cd5ae51d3f7bf65d7969d579d502168ef578f289452bd8ccc91de28fda20e" 2271dependencies = [ 2272 "bitflags", 2273 "cfg-if", 2274 "clipboard-win", 2275 "dirs-next", 2276 "fd-lock", 2277 "libc", 2278 "log", 2279 "memchr", 2280 "nix 0.24.2", 2281 "radix_trie", 2282 "scopeguard", 2283 "unicode-segmentation", 2284 "unicode-width", 2285 "utf8parse", 2286 "winapi", 2287] 2288 2289[[package]] 2290name = "ryu" 2291version = "1.0.11" 2292source = "registry+https://github.com/rust-lang/crates.io-index" 2293checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" 2294 2295[[package]] 2296name = "same-file" 2297version = "1.0.6" 2298source = "registry+https://github.com/rust-lang/crates.io-index" 2299checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2300dependencies = [ 2301 "winapi-util", 2302] 2303 2304[[package]] 2305name = "schannel" 2306version = "0.1.20" 2307source = "registry+https://github.com/rust-lang/crates.io-index" 2308checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" 2309dependencies = [ 2310 "lazy_static 1.4.0", 2311 "windows-sys 0.36.1", 2312] 2313 2314[[package]] 2315name = "scopeguard" 2316version = "1.1.0" 2317source = "registry+https://github.com/rust-lang/crates.io-index" 2318checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2319 2320[[package]] 2321name = "scratch" 2322version = "1.0.2" 2323source = "registry+https://github.com/rust-lang/crates.io-index" 2324checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898" 2325 2326[[package]] 2327name = "semver" 2328version = "1.0.14" 2329source = "registry+https://github.com/rust-lang/crates.io-index" 2330checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4" 2331 2332[[package]] 2333name = "serde" 2334version = "1.0.147" 2335source = "registry+https://github.com/rust-lang/crates.io-index" 2336checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965" 2337dependencies = [ 2338 "serde_derive", 2339] 2340 2341[[package]] 2342name = "serde-wasm-bindgen" 2343version = "0.3.1" 2344source = "registry+https://github.com/rust-lang/crates.io-index" 2345checksum = "618365e8e586c22123d692b72a7d791d5ee697817b65a218cdf12a98870af0f7" 2346dependencies = [ 2347 "fnv", 2348 "js-sys", 2349 "serde", 2350 "wasm-bindgen", 2351] 2352 2353[[package]] 2354name = "serde_cbor" 2355version = "0.11.2" 2356source = "registry+https://github.com/rust-lang/crates.io-index" 2357checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" 2358dependencies = [ 2359 "half", 2360 "serde", 2361] 2362 2363[[package]] 2364name = "serde_derive" 2365version = "1.0.147" 2366source = "registry+https://github.com/rust-lang/crates.io-index" 2367checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852" 2368dependencies = [ 2369 "proc-macro2", 2370 "quote", 2371 "syn", 2372] 2373 2374[[package]] 2375name = "serde_json" 2376version = "1.0.89" 2377source = "registry+https://github.com/rust-lang/crates.io-index" 2378checksum = "020ff22c755c2ed3f8cf162dbb41a7268d934702f3ed3631656ea597e08fc3db" 2379dependencies = [ 2380 "itoa 1.0.4", 2381 "ryu", 2382 "serde", 2383] 2384 2385[[package]] 2386name = "sha-1" 2387version = "0.10.0" 2388source = "registry+https://github.com/rust-lang/crates.io-index" 2389checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f" 2390dependencies = [ 2391 "cfg-if", 2392 "cpufeatures", 2393 "digest", 2394] 2395 2396[[package]] 2397name = "sha2" 2398version = "0.10.6" 2399source = "registry+https://github.com/rust-lang/crates.io-index" 2400checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 2401dependencies = [ 2402 "cfg-if", 2403 "cpufeatures", 2404 "digest", 2405] 2406 2407[[package]] 2408name = "sha3" 2409version = "0.10.6" 2410source = "registry+https://github.com/rust-lang/crates.io-index" 2411checksum = "bdf0c33fae925bdc080598b84bc15c55e7b9a4a43b3c704da051f977469691c9" 2412dependencies = [ 2413 "digest", 2414 "keccak", 2415] 2416 2417[[package]] 2418name = "similar" 2419version = "2.2.1" 2420source = "registry+https://github.com/rust-lang/crates.io-index" 2421checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf" 2422 2423[[package]] 2424name = "siphasher" 2425version = "0.3.10" 2426source = "registry+https://github.com/rust-lang/crates.io-index" 2427checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 2428 2429[[package]] 2430name = "slice-group-by" 2431version = "0.3.0" 2432source = "registry+https://github.com/rust-lang/crates.io-index" 2433checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" 2434 2435[[package]] 2436name = "smallvec" 2437version = "1.10.0" 2438source = "registry+https://github.com/rust-lang/crates.io-index" 2439checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 2440 2441[[package]] 2442name = "socket2" 2443version = "0.4.7" 2444source = "registry+https://github.com/rust-lang/crates.io-index" 2445checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" 2446dependencies = [ 2447 "libc", 2448 "winapi", 2449] 2450 2451[[package]] 2452name = "sre-engine" 2453version = "0.4.1" 2454source = "registry+https://github.com/rust-lang/crates.io-index" 2455checksum = "a490c5c46c35dba9a6f5e7ee8e4d67e775eb2d2da0f115750b8d10e1c1ac2d28" 2456dependencies = [ 2457 "bitflags", 2458 "num_enum", 2459 "optional", 2460] 2461 2462[[package]] 2463name = "static_assertions" 2464version = "1.1.0" 2465source = "registry+https://github.com/rust-lang/crates.io-index" 2466checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2467 2468[[package]] 2469name = "str-buf" 2470version = "1.0.6" 2471source = "registry+https://github.com/rust-lang/crates.io-index" 2472checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0" 2473 2474[[package]] 2475name = "string_cache" 2476version = "0.8.4" 2477source = "registry+https://github.com/rust-lang/crates.io-index" 2478checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" 2479dependencies = [ 2480 "new_debug_unreachable", 2481 "once_cell", 2482 "parking_lot", 2483 "phf_shared", 2484 "precomputed-hash", 2485] 2486 2487[[package]] 2488name = "strsim" 2489version = "0.8.0" 2490source = "registry+https://github.com/rust-lang/crates.io-index" 2491checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 2492 2493[[package]] 2494name = "strum" 2495version = "0.24.1" 2496source = "registry+https://github.com/rust-lang/crates.io-index" 2497checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" 2498 2499[[package]] 2500name = "strum_macros" 2501version = "0.24.3" 2502source = "registry+https://github.com/rust-lang/crates.io-index" 2503checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 2504dependencies = [ 2505 "heck", 2506 "proc-macro2", 2507 "quote", 2508 "rustversion", 2509 "syn", 2510] 2511 2512[[package]] 2513name = "subtle" 2514version = "2.4.1" 2515source = "registry+https://github.com/rust-lang/crates.io-index" 2516checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 2517 2518[[package]] 2519name = "syn" 2520version = "1.0.103" 2521source = "registry+https://github.com/rust-lang/crates.io-index" 2522checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d" 2523dependencies = [ 2524 "proc-macro2", 2525 "quote", 2526 "unicode-ident", 2527] 2528 2529[[package]] 2530name = "syn-ext" 2531version = "0.4.0" 2532source = "registry+https://github.com/rust-lang/crates.io-index" 2533checksum = "9b86cb2b68c5b3c078cac02588bc23f3c04bb828c5d3aedd17980876ec6a7be6" 2534dependencies = [ 2535 "syn", 2536] 2537 2538[[package]] 2539name = "system-configuration" 2540version = "0.5.0" 2541source = "registry+https://github.com/rust-lang/crates.io-index" 2542checksum = "d75182f12f490e953596550b65ee31bda7c8e043d9386174b353bda50838c3fd" 2543dependencies = [ 2544 "bitflags", 2545 "core-foundation", 2546 "system-configuration-sys", 2547] 2548 2549[[package]] 2550name = "system-configuration-sys" 2551version = "0.5.0" 2552source = "registry+https://github.com/rust-lang/crates.io-index" 2553checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 2554dependencies = [ 2555 "core-foundation-sys", 2556 "libc", 2557] 2558 2559[[package]] 2560name = "target-lexicon" 2561version = "0.12.5" 2562source = "registry+https://github.com/rust-lang/crates.io-index" 2563checksum = "9410d0f6853b1d94f0e519fb95df60f29d2c1eff2d921ffdf01a4c8a3b54f12d" 2564 2565[[package]] 2566name = "term" 2567version = "0.7.0" 2568source = "registry+https://github.com/rust-lang/crates.io-index" 2569checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" 2570dependencies = [ 2571 "dirs-next", 2572 "rustversion", 2573 "winapi", 2574] 2575 2576[[package]] 2577name = "termcolor" 2578version = "1.1.3" 2579source = "registry+https://github.com/rust-lang/crates.io-index" 2580checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 2581dependencies = [ 2582 "winapi-util", 2583] 2584 2585[[package]] 2586name = "terminal_size" 2587version = "0.1.17" 2588source = "registry+https://github.com/rust-lang/crates.io-index" 2589checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df" 2590dependencies = [ 2591 "libc", 2592 "winapi", 2593] 2594 2595[[package]] 2596name = "termios" 2597version = "0.3.3" 2598source = "registry+https://github.com/rust-lang/crates.io-index" 2599checksum = "411c5bf740737c7918b8b1fe232dca4dc9f8e754b8ad5e20966814001ed0ac6b" 2600dependencies = [ 2601 "libc", 2602] 2603 2604[[package]] 2605name = "textwrap" 2606version = "0.11.0" 2607source = "registry+https://github.com/rust-lang/crates.io-index" 2608checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 2609dependencies = [ 2610 "unicode-width", 2611] 2612 2613[[package]] 2614name = "textwrap" 2615version = "0.15.2" 2616source = "registry+https://github.com/rust-lang/crates.io-index" 2617checksum = "b7b3e525a49ec206798b40326a44121291b530c963cfb01018f63e135bac543d" 2618 2619[[package]] 2620name = "thiserror" 2621version = "1.0.37" 2622source = "registry+https://github.com/rust-lang/crates.io-index" 2623checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e" 2624dependencies = [ 2625 "thiserror-impl", 2626] 2627 2628[[package]] 2629name = "thiserror-impl" 2630version = "1.0.37" 2631source = "registry+https://github.com/rust-lang/crates.io-index" 2632checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb" 2633dependencies = [ 2634 "proc-macro2", 2635 "quote", 2636 "syn", 2637] 2638 2639[[package]] 2640name = "thread-id" 2641version = "3.3.0" 2642source = "registry+https://github.com/rust-lang/crates.io-index" 2643checksum = "c7fbf4c9d56b320106cd64fd024dadfa0be7cb4706725fc44a7d7ce952d820c1" 2644dependencies = [ 2645 "libc", 2646 "redox_syscall 0.1.57", 2647 "winapi", 2648] 2649 2650[[package]] 2651name = "thread_local" 2652version = "1.1.4" 2653source = "registry+https://github.com/rust-lang/crates.io-index" 2654checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 2655dependencies = [ 2656 "once_cell", 2657] 2658 2659[[package]] 2660name = "time" 2661version = "0.1.44" 2662source = "registry+https://github.com/rust-lang/crates.io-index" 2663checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" 2664dependencies = [ 2665 "libc", 2666 "wasi 0.10.0+wasi-snapshot-preview1", 2667 "winapi", 2668] 2669 2670[[package]] 2671name = "timsort" 2672version = "0.1.2" 2673source = "registry+https://github.com/rust-lang/crates.io-index" 2674checksum = "3cb4fa83bb73adf1c7219f4fe4bf3c0ac5635e4e51e070fad5df745a41bedfb8" 2675 2676[[package]] 2677name = "tiny-keccak" 2678version = "2.0.2" 2679source = "registry+https://github.com/rust-lang/crates.io-index" 2680checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 2681dependencies = [ 2682 "crunchy", 2683] 2684 2685[[package]] 2686name = "tinytemplate" 2687version = "1.2.1" 2688source = "registry+https://github.com/rust-lang/crates.io-index" 2689checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 2690dependencies = [ 2691 "serde", 2692 "serde_json", 2693] 2694 2695[[package]] 2696name = "tinyvec" 2697version = "1.6.0" 2698source = "registry+https://github.com/rust-lang/crates.io-index" 2699checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2700dependencies = [ 2701 "tinyvec_macros", 2702] 2703 2704[[package]] 2705name = "tinyvec_macros" 2706version = "0.1.0" 2707source = "registry+https://github.com/rust-lang/crates.io-index" 2708checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 2709 2710[[package]] 2711name = "toml" 2712version = "0.5.9" 2713source = "registry+https://github.com/rust-lang/crates.io-index" 2714checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 2715dependencies = [ 2716 "serde", 2717] 2718 2719[[package]] 2720name = "twox-hash" 2721version = "1.6.3" 2722source = "registry+https://github.com/rust-lang/crates.io-index" 2723checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" 2724dependencies = [ 2725 "cfg-if", 2726 "static_assertions", 2727] 2728 2729[[package]] 2730name = "typenum" 2731version = "1.15.0" 2732source = "registry+https://github.com/rust-lang/crates.io-index" 2733checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 2734 2735[[package]] 2736name = "uname" 2737version = "0.1.1" 2738source = "registry+https://github.com/rust-lang/crates.io-index" 2739checksum = "b72f89f0ca32e4db1c04e2a72f5345d59796d4866a1ee0609084569f73683dc8" 2740dependencies = [ 2741 "libc", 2742] 2743 2744[[package]] 2745name = "unic-char-property" 2746version = "0.9.0" 2747source = "registry+https://github.com/rust-lang/crates.io-index" 2748checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" 2749dependencies = [ 2750 "unic-char-range", 2751] 2752 2753[[package]] 2754name = "unic-char-range" 2755version = "0.9.0" 2756source = "registry+https://github.com/rust-lang/crates.io-index" 2757checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" 2758 2759[[package]] 2760name = "unic-common" 2761version = "0.9.0" 2762source = "registry+https://github.com/rust-lang/crates.io-index" 2763checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" 2764 2765[[package]] 2766name = "unic-emoji-char" 2767version = "0.9.0" 2768source = "registry+https://github.com/rust-lang/crates.io-index" 2769checksum = "0b07221e68897210270a38bde4babb655869637af0f69407f96053a34f76494d" 2770dependencies = [ 2771 "unic-char-property", 2772 "unic-char-range", 2773 "unic-ucd-version", 2774] 2775 2776[[package]] 2777name = "unic-normal" 2778version = "0.9.0" 2779source = "registry+https://github.com/rust-lang/crates.io-index" 2780checksum = "f09d64d33589a94628bc2aeb037f35c2e25f3f049c7348b5aa5580b48e6bba62" 2781dependencies = [ 2782 "unic-ucd-normal", 2783] 2784 2785[[package]] 2786name = "unic-ucd-age" 2787version = "0.9.0" 2788source = "registry+https://github.com/rust-lang/crates.io-index" 2789checksum = "6c8cfdfe71af46b871dc6af2c24fcd360e2f3392ee4c5111877f2947f311671c" 2790dependencies = [ 2791 "unic-char-property", 2792 "unic-char-range", 2793 "unic-ucd-version", 2794] 2795 2796[[package]] 2797name = "unic-ucd-bidi" 2798version = "0.9.0" 2799source = "registry+https://github.com/rust-lang/crates.io-index" 2800checksum = "d1d568b51222484e1f8209ce48caa6b430bf352962b877d592c29ab31fb53d8c" 2801dependencies = [ 2802 "unic-char-property", 2803 "unic-char-range", 2804 "unic-ucd-version", 2805] 2806 2807[[package]] 2808name = "unic-ucd-category" 2809version = "0.9.0" 2810source = "registry+https://github.com/rust-lang/crates.io-index" 2811checksum = "1b8d4591f5fcfe1bd4453baaf803c40e1b1e69ff8455c47620440b46efef91c0" 2812dependencies = [ 2813 "matches", 2814 "unic-char-property", 2815 "unic-char-range", 2816 "unic-ucd-version", 2817] 2818 2819[[package]] 2820name = "unic-ucd-hangul" 2821version = "0.9.0" 2822source = "registry+https://github.com/rust-lang/crates.io-index" 2823checksum = "eb1dc690e19010e1523edb9713224cba5ef55b54894fe33424439ec9a40c0054" 2824dependencies = [ 2825 "unic-ucd-version", 2826] 2827 2828[[package]] 2829name = "unic-ucd-ident" 2830version = "0.9.0" 2831source = "registry+https://github.com/rust-lang/crates.io-index" 2832checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987" 2833dependencies = [ 2834 "unic-char-property", 2835 "unic-char-range", 2836 "unic-ucd-version", 2837] 2838 2839[[package]] 2840name = "unic-ucd-normal" 2841version = "0.9.0" 2842source = "registry+https://github.com/rust-lang/crates.io-index" 2843checksum = "86aed873b8202d22b13859dda5fe7c001d271412c31d411fd9b827e030569410" 2844dependencies = [ 2845 "unic-char-property", 2846 "unic-char-range", 2847 "unic-ucd-hangul", 2848 "unic-ucd-version", 2849] 2850 2851[[package]] 2852name = "unic-ucd-version" 2853version = "0.9.0" 2854source = "registry+https://github.com/rust-lang/crates.io-index" 2855checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" 2856dependencies = [ 2857 "unic-common", 2858] 2859 2860[[package]] 2861name = "unicode-casing" 2862version = "0.1.0" 2863source = "registry+https://github.com/rust-lang/crates.io-index" 2864checksum = "623f59e6af2a98bdafeb93fa277ac8e1e40440973001ca15cf4ae1541cd16d56" 2865 2866[[package]] 2867name = "unicode-ident" 2868version = "1.0.5" 2869source = "registry+https://github.com/rust-lang/crates.io-index" 2870checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3" 2871 2872[[package]] 2873name = "unicode-normalization" 2874version = "0.1.22" 2875source = "registry+https://github.com/rust-lang/crates.io-index" 2876checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 2877dependencies = [ 2878 "tinyvec", 2879] 2880 2881[[package]] 2882name = "unicode-segmentation" 2883version = "1.10.0" 2884source = "registry+https://github.com/rust-lang/crates.io-index" 2885checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a" 2886 2887[[package]] 2888name = "unicode-width" 2889version = "0.1.10" 2890source = "registry+https://github.com/rust-lang/crates.io-index" 2891checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 2892 2893[[package]] 2894name = "unicode-xid" 2895version = "0.2.4" 2896source = "registry+https://github.com/rust-lang/crates.io-index" 2897checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 2898 2899[[package]] 2900name = "unicode_names2" 2901version = "0.5.1" 2902source = "registry+https://github.com/rust-lang/crates.io-index" 2903checksum = "029df4cc8238cefc911704ff8fa210853a0f3bce2694d8f51181dd41ee0f3301" 2904 2905[[package]] 2906name = "utf8parse" 2907version = "0.2.0" 2908source = "registry+https://github.com/rust-lang/crates.io-index" 2909checksum = "936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372" 2910 2911[[package]] 2912name = "uuid" 2913version = "1.2.2" 2914source = "registry+https://github.com/rust-lang/crates.io-index" 2915checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c" 2916dependencies = [ 2917 "atomic", 2918 "getrandom", 2919 "rand", 2920 "uuid-macro-internal", 2921] 2922 2923[[package]] 2924name = "uuid-macro-internal" 2925version = "1.2.2" 2926source = "registry+https://github.com/rust-lang/crates.io-index" 2927checksum = "73bc89f2894593e665241e0052c3791999e6787b7c4831daa0a5c2e637e276d8" 2928dependencies = [ 2929 "proc-macro2", 2930 "quote", 2931 "syn", 2932] 2933 2934[[package]] 2935name = "vcpkg" 2936version = "0.2.15" 2937source = "registry+https://github.com/rust-lang/crates.io-index" 2938checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2939 2940[[package]] 2941name = "vec_map" 2942version = "0.8.2" 2943source = "registry+https://github.com/rust-lang/crates.io-index" 2944checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 2945 2946[[package]] 2947name = "version_check" 2948version = "0.9.4" 2949source = "registry+https://github.com/rust-lang/crates.io-index" 2950checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2951 2952[[package]] 2953name = "volatile" 2954version = "0.3.0" 2955source = "registry+https://github.com/rust-lang/crates.io-index" 2956checksum = "f8e76fae08f03f96e166d2dfda232190638c10e0383841252416f9cfe2ae60e6" 2957 2958[[package]] 2959name = "walkdir" 2960version = "2.3.2" 2961source = "registry+https://github.com/rust-lang/crates.io-index" 2962checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 2963dependencies = [ 2964 "same-file", 2965 "winapi", 2966 "winapi-util", 2967] 2968 2969[[package]] 2970name = "wasi" 2971version = "0.10.0+wasi-snapshot-preview1" 2972source = "registry+https://github.com/rust-lang/crates.io-index" 2973checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 2974 2975[[package]] 2976name = "wasi" 2977version = "0.11.0+wasi-snapshot-preview1" 2978source = "registry+https://github.com/rust-lang/crates.io-index" 2979checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2980 2981[[package]] 2982name = "wasm-bindgen" 2983version = "0.2.83" 2984source = "registry+https://github.com/rust-lang/crates.io-index" 2985checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" 2986dependencies = [ 2987 "cfg-if", 2988 "wasm-bindgen-macro", 2989] 2990 2991[[package]] 2992name = "wasm-bindgen-backend" 2993version = "0.2.83" 2994source = "registry+https://github.com/rust-lang/crates.io-index" 2995checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" 2996dependencies = [ 2997 "bumpalo", 2998 "log", 2999 "once_cell", 3000 "proc-macro2", 3001 "quote", 3002 "syn", 3003 "wasm-bindgen-shared", 3004] 3005 3006[[package]] 3007name = "wasm-bindgen-futures" 3008version = "0.4.33" 3009source = "registry+https://github.com/rust-lang/crates.io-index" 3010checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d" 3011dependencies = [ 3012 "cfg-if", 3013 "js-sys", 3014 "wasm-bindgen", 3015 "web-sys", 3016] 3017 3018[[package]] 3019name = "wasm-bindgen-macro" 3020version = "0.2.83" 3021source = "registry+https://github.com/rust-lang/crates.io-index" 3022checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" 3023dependencies = [ 3024 "quote", 3025 "wasm-bindgen-macro-support", 3026] 3027 3028[[package]] 3029name = "wasm-bindgen-macro-support" 3030version = "0.2.83" 3031source = "registry+https://github.com/rust-lang/crates.io-index" 3032checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" 3033dependencies = [ 3034 "proc-macro2", 3035 "quote", 3036 "syn", 3037 "wasm-bindgen-backend", 3038 "wasm-bindgen-shared", 3039] 3040 3041[[package]] 3042name = "wasm-bindgen-shared" 3043version = "0.2.83" 3044source = "registry+https://github.com/rust-lang/crates.io-index" 3045checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" 3046 3047[[package]] 3048name = "web-sys" 3049version = "0.3.60" 3050source = "registry+https://github.com/rust-lang/crates.io-index" 3051checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" 3052dependencies = [ 3053 "js-sys", 3054 "wasm-bindgen", 3055] 3056 3057[[package]] 3058name = "which" 3059version = "4.3.0" 3060source = "registry+https://github.com/rust-lang/crates.io-index" 3061checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b" 3062dependencies = [ 3063 "either", 3064 "libc", 3065 "once_cell", 3066] 3067 3068[[package]] 3069name = "widestring" 3070version = "0.5.1" 3071source = "registry+https://github.com/rust-lang/crates.io-index" 3072checksum = "17882f045410753661207383517a6f62ec3dbeb6a4ed2acce01f0728238d1983" 3073 3074[[package]] 3075name = "winapi" 3076version = "0.3.9" 3077source = "registry+https://github.com/rust-lang/crates.io-index" 3078checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3079dependencies = [ 3080 "winapi-i686-pc-windows-gnu", 3081 "winapi-x86_64-pc-windows-gnu", 3082] 3083 3084[[package]] 3085name = "winapi-i686-pc-windows-gnu" 3086version = "0.4.0" 3087source = "registry+https://github.com/rust-lang/crates.io-index" 3088checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3089 3090[[package]] 3091name = "winapi-util" 3092version = "0.1.5" 3093source = "registry+https://github.com/rust-lang/crates.io-index" 3094checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 3095dependencies = [ 3096 "winapi", 3097] 3098 3099[[package]] 3100name = "winapi-x86_64-pc-windows-gnu" 3101version = "0.4.0" 3102source = "registry+https://github.com/rust-lang/crates.io-index" 3103checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3104 3105[[package]] 3106name = "windows" 3107version = "0.39.0" 3108source = "registry+https://github.com/rust-lang/crates.io-index" 3109checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a" 3110dependencies = [ 3111 "windows_aarch64_msvc 0.39.0", 3112 "windows_i686_gnu 0.39.0", 3113 "windows_i686_msvc 0.39.0", 3114 "windows_x86_64_gnu 0.39.0", 3115 "windows_x86_64_msvc 0.39.0", 3116] 3117 3118[[package]] 3119name = "windows-sys" 3120version = "0.36.1" 3121source = "registry+https://github.com/rust-lang/crates.io-index" 3122checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 3123dependencies = [ 3124 "windows_aarch64_msvc 0.36.1", 3125 "windows_i686_gnu 0.36.1", 3126 "windows_i686_msvc 0.36.1", 3127 "windows_x86_64_gnu 0.36.1", 3128 "windows_x86_64_msvc 0.36.1", 3129] 3130 3131[[package]] 3132name = "windows-sys" 3133version = "0.42.0" 3134source = "registry+https://github.com/rust-lang/crates.io-index" 3135checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 3136dependencies = [ 3137 "windows_aarch64_gnullvm", 3138 "windows_aarch64_msvc 0.42.0", 3139 "windows_i686_gnu 0.42.0", 3140 "windows_i686_msvc 0.42.0", 3141 "windows_x86_64_gnu 0.42.0", 3142 "windows_x86_64_gnullvm", 3143 "windows_x86_64_msvc 0.42.0", 3144] 3145 3146[[package]] 3147name = "windows_aarch64_gnullvm" 3148version = "0.42.0" 3149source = "registry+https://github.com/rust-lang/crates.io-index" 3150checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e" 3151 3152[[package]] 3153name = "windows_aarch64_msvc" 3154version = "0.36.1" 3155source = "registry+https://github.com/rust-lang/crates.io-index" 3156checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 3157 3158[[package]] 3159name = "windows_aarch64_msvc" 3160version = "0.39.0" 3161source = "registry+https://github.com/rust-lang/crates.io-index" 3162checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2" 3163 3164[[package]] 3165name = "windows_aarch64_msvc" 3166version = "0.42.0" 3167source = "registry+https://github.com/rust-lang/crates.io-index" 3168checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4" 3169 3170[[package]] 3171name = "windows_i686_gnu" 3172version = "0.36.1" 3173source = "registry+https://github.com/rust-lang/crates.io-index" 3174checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 3175 3176[[package]] 3177name = "windows_i686_gnu" 3178version = "0.39.0" 3179source = "registry+https://github.com/rust-lang/crates.io-index" 3180checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b" 3181 3182[[package]] 3183name = "windows_i686_gnu" 3184version = "0.42.0" 3185source = "registry+https://github.com/rust-lang/crates.io-index" 3186checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7" 3187 3188[[package]] 3189name = "windows_i686_msvc" 3190version = "0.36.1" 3191source = "registry+https://github.com/rust-lang/crates.io-index" 3192checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 3193 3194[[package]] 3195name = "windows_i686_msvc" 3196version = "0.39.0" 3197source = "registry+https://github.com/rust-lang/crates.io-index" 3198checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106" 3199 3200[[package]] 3201name = "windows_i686_msvc" 3202version = "0.42.0" 3203source = "registry+https://github.com/rust-lang/crates.io-index" 3204checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246" 3205 3206[[package]] 3207name = "windows_x86_64_gnu" 3208version = "0.36.1" 3209source = "registry+https://github.com/rust-lang/crates.io-index" 3210checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 3211 3212[[package]] 3213name = "windows_x86_64_gnu" 3214version = "0.39.0" 3215source = "registry+https://github.com/rust-lang/crates.io-index" 3216checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65" 3217 3218[[package]] 3219name = "windows_x86_64_gnu" 3220version = "0.42.0" 3221source = "registry+https://github.com/rust-lang/crates.io-index" 3222checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed" 3223 3224[[package]] 3225name = "windows_x86_64_gnullvm" 3226version = "0.42.0" 3227source = "registry+https://github.com/rust-lang/crates.io-index" 3228checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028" 3229 3230[[package]] 3231name = "windows_x86_64_msvc" 3232version = "0.36.1" 3233source = "registry+https://github.com/rust-lang/crates.io-index" 3234checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 3235 3236[[package]] 3237name = "windows_x86_64_msvc" 3238version = "0.39.0" 3239source = "registry+https://github.com/rust-lang/crates.io-index" 3240checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809" 3241 3242[[package]] 3243name = "windows_x86_64_msvc" 3244version = "0.42.0" 3245source = "registry+https://github.com/rust-lang/crates.io-index" 3246checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5" 3247 3248[[package]] 3249name = "winreg" 3250version = "0.10.1" 3251source = "registry+https://github.com/rust-lang/crates.io-index" 3252checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 3253dependencies = [ 3254 "winapi", 3255] 3256 3257[[package]] 3258name = "xml-rs" 3259version = "0.8.4" 3260source = "registry+https://github.com/rust-lang/crates.io-index" 3261checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3" 3262 3263[[package]] 3264name = "yaml-rust" 3265version = "0.4.5" 3266source = "registry+https://github.com/rust-lang/crates.io-index" 3267checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 3268dependencies = [ 3269 "linked-hash-map", 3270]