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