Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

gleam / Cargo.lock
60 kB 2428 lines
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "adler" 7version = "1.0.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 11[[package]] 12name = "aho-corasick" 13version = "0.7.18" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 16dependencies = [ 17 "memchr", 18] 19 20[[package]] 21name = "ansi_term" 22version = "0.12.1" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 25dependencies = [ 26 "winapi", 27] 28 29[[package]] 30name = "arrayvec" 31version = "0.5.2" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 34 35[[package]] 36name = "askama" 37version = "0.10.5" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "d298738b6e47e1034e560e5afe63aa488fea34e25ec11b855a76f0d7b8e73134" 40dependencies = [ 41 "askama_derive", 42 "askama_escape", 43 "askama_shared", 44] 45 46[[package]] 47name = "askama_derive" 48version = "0.10.5" 49source = "registry+https://github.com/rust-lang/crates.io-index" 50checksum = "ca2925c4c290382f9d2fa3d1c1b6a63fa1427099721ecca4749b154cc9c25522" 51dependencies = [ 52 "askama_shared", 53 "proc-macro2", 54 "syn", 55] 56 57[[package]] 58name = "askama_escape" 59version = "0.10.1" 60source = "registry+https://github.com/rust-lang/crates.io-index" 61checksum = "90c108c1a94380c89d2215d0ac54ce09796823cca0fd91b299cfff3b33e346fb" 62 63[[package]] 64name = "askama_shared" 65version = "0.11.1" 66source = "registry+https://github.com/rust-lang/crates.io-index" 67checksum = "2582b77e0f3c506ec4838a25fa8a5f97b9bed72bb6d3d272ea1c031d8bd373bc" 68dependencies = [ 69 "askama_escape", 70 "humansize", 71 "nom", 72 "num-traits", 73 "percent-encoding", 74 "proc-macro2", 75 "quote", 76 "serde", 77 "syn", 78 "toml", 79] 80 81[[package]] 82name = "async-trait" 83version = "0.1.51" 84source = "registry+https://github.com/rust-lang/crates.io-index" 85checksum = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e" 86dependencies = [ 87 "proc-macro2", 88 "quote", 89 "syn", 90] 91 92[[package]] 93name = "atty" 94version = "0.2.14" 95source = "registry+https://github.com/rust-lang/crates.io-index" 96checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 97dependencies = [ 98 "hermit-abi", 99 "libc", 100 "winapi", 101] 102 103[[package]] 104name = "autocfg" 105version = "1.0.1" 106source = "registry+https://github.com/rust-lang/crates.io-index" 107checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" 108 109[[package]] 110name = "base16" 111version = "0.2.1" 112source = "registry+https://github.com/rust-lang/crates.io-index" 113checksum = "d27c3610c36aee21ce8ac510e6224498de4228ad772a171ed65643a24693a5a8" 114 115[[package]] 116name = "base64" 117version = "0.12.3" 118source = "registry+https://github.com/rust-lang/crates.io-index" 119checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" 120 121[[package]] 122name = "base64" 123version = "0.13.0" 124source = "registry+https://github.com/rust-lang/crates.io-index" 125checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 126 127[[package]] 128name = "bitflags" 129version = "1.3.2" 130source = "registry+https://github.com/rust-lang/crates.io-index" 131checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 132 133[[package]] 134name = "bitmaps" 135version = "2.1.0" 136source = "registry+https://github.com/rust-lang/crates.io-index" 137checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2" 138dependencies = [ 139 "typenum", 140] 141 142[[package]] 143name = "bitvec" 144version = "0.19.6" 145source = "registry+https://github.com/rust-lang/crates.io-index" 146checksum = "55f93d0ef3363c364d5976646a38f04cf67cfe1d4c8d160cdea02cab2c116b33" 147dependencies = [ 148 "funty", 149 "radium", 150 "tap", 151 "wyz", 152] 153 154[[package]] 155name = "block-buffer" 156version = "0.9.0" 157source = "registry+https://github.com/rust-lang/crates.io-index" 158checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 159dependencies = [ 160 "generic-array", 161] 162 163[[package]] 164name = "bstr" 165version = "0.2.17" 166source = "registry+https://github.com/rust-lang/crates.io-index" 167checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 168dependencies = [ 169 "memchr", 170] 171 172[[package]] 173name = "bumpalo" 174version = "3.8.0" 175source = "registry+https://github.com/rust-lang/crates.io-index" 176checksum = "8f1e260c3a9040a7c19a12468758f4c16f31a81a1fe087482be9570ec864bb6c" 177 178[[package]] 179name = "bytes" 180version = "1.1.0" 181source = "registry+https://github.com/rust-lang/crates.io-index" 182checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8" 183 184[[package]] 185name = "capnp" 186version = "0.14.3" 187source = "registry+https://github.com/rust-lang/crates.io-index" 188checksum = "ae9b8a7119420b5279ddc2b4ee553ee15bcf4605df6135a26f03ffe153bee97c" 189 190[[package]] 191name = "capnpc" 192version = "0.14.4" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "b47bce811162518b5c38f746ed584bd2922ae7bb560ef64f230d2e4ee0d111fe" 195dependencies = [ 196 "capnp", 197] 198 199[[package]] 200name = "cc" 201version = "1.0.72" 202source = "registry+https://github.com/rust-lang/crates.io-index" 203checksum = "22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee" 204 205[[package]] 206name = "cfg-if" 207version = "1.0.0" 208source = "registry+https://github.com/rust-lang/crates.io-index" 209checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 210 211[[package]] 212name = "chrono" 213version = "0.4.19" 214source = "registry+https://github.com/rust-lang/crates.io-index" 215checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" 216dependencies = [ 217 "num-integer", 218 "num-traits", 219] 220 221[[package]] 222name = "clap" 223version = "2.34.0" 224source = "registry+https://github.com/rust-lang/crates.io-index" 225checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 226dependencies = [ 227 "ansi_term", 228 "atty", 229 "bitflags", 230 "strsim 0.8.0", 231 "textwrap 0.11.0", 232 "unicode-width", 233 "vec_map", 234] 235 236[[package]] 237name = "codespan-reporting" 238version = "0.11.1" 239source = "registry+https://github.com/rust-lang/crates.io-index" 240checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 241dependencies = [ 242 "termcolor", 243 "unicode-width", 244] 245 246[[package]] 247name = "combine" 248version = "4.6.2" 249source = "registry+https://github.com/rust-lang/crates.io-index" 250checksum = "b2b2f5d0ee456f3928812dfc8c6d9a1d592b98678f6d56db9b0cd2b7bc6c8db5" 251dependencies = [ 252 "bytes", 253 "memchr", 254] 255 256[[package]] 257name = "console" 258version = "0.14.1" 259source = "registry+https://github.com/rust-lang/crates.io-index" 260checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45" 261dependencies = [ 262 "encode_unicode", 263 "lazy_static", 264 "libc", 265 "terminal_size", 266 "winapi", 267] 268 269[[package]] 270name = "console_error_panic_hook" 271version = "0.1.7" 272source = "registry+https://github.com/rust-lang/crates.io-index" 273checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" 274dependencies = [ 275 "cfg-if", 276 "wasm-bindgen", 277] 278 279[[package]] 280name = "core-foundation" 281version = "0.9.2" 282source = "registry+https://github.com/rust-lang/crates.io-index" 283checksum = "6888e10551bb93e424d8df1d07f1a8b4fceb0001a3a4b048bfc47554946f47b3" 284dependencies = [ 285 "core-foundation-sys", 286 "libc", 287] 288 289[[package]] 290name = "core-foundation-sys" 291version = "0.8.3" 292source = "registry+https://github.com/rust-lang/crates.io-index" 293checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 294 295[[package]] 296name = "cpufeatures" 297version = "0.2.1" 298source = "registry+https://github.com/rust-lang/crates.io-index" 299checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469" 300dependencies = [ 301 "libc", 302] 303 304[[package]] 305name = "crc32fast" 306version = "1.3.0" 307source = "registry+https://github.com/rust-lang/crates.io-index" 308checksum = "738c290dfaea84fc1ca15ad9c168d083b05a714e1efddd8edaab678dc28d2836" 309dependencies = [ 310 "cfg-if", 311] 312 313[[package]] 314name = "crossbeam-utils" 315version = "0.8.5" 316source = "registry+https://github.com/rust-lang/crates.io-index" 317checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db" 318dependencies = [ 319 "cfg-if", 320 "lazy_static", 321] 322 323[[package]] 324name = "ctor" 325version = "0.1.21" 326source = "registry+https://github.com/rust-lang/crates.io-index" 327checksum = "ccc0a48a9b826acdf4028595adc9db92caea352f7af011a3034acd172a52a0aa" 328dependencies = [ 329 "quote", 330 "syn", 331] 332 333[[package]] 334name = "ctrlc" 335version = "3.2.1" 336source = "registry+https://github.com/rust-lang/crates.io-index" 337checksum = "a19c6cedffdc8c03a3346d723eb20bd85a13362bb96dc2ac000842c6381ec7bf" 338dependencies = [ 339 "nix", 340 "winapi", 341] 342 343[[package]] 344name = "data-encoding" 345version = "2.3.2" 346source = "registry+https://github.com/rust-lang/crates.io-index" 347checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57" 348 349[[package]] 350name = "debug-ignore" 351version = "1.0.1" 352source = "registry+https://github.com/rust-lang/crates.io-index" 353checksum = "223089cd5a4e4491f0a0dddd9933f9575123160cf96ca2bb56a690046ecf1745" 354 355[[package]] 356name = "der-oid-macro" 357version = "0.4.0" 358source = "registry+https://github.com/rust-lang/crates.io-index" 359checksum = "a4cccf60bb98c0fca115a581f894aed0e43fa55bf289fdac5599bec440bb4fd6" 360dependencies = [ 361 "nom", 362 "num-bigint", 363 "num-traits", 364 "syn", 365] 366 367[[package]] 368name = "der-parser" 369version = "5.1.2" 370source = "registry+https://github.com/rust-lang/crates.io-index" 371checksum = "2d7ededb7525bb4114bc209685ce7894edc2965f4914312a1ea578a645a237f0" 372dependencies = [ 373 "der-oid-macro", 374 "nom", 375 "num-bigint", 376 "num-traits", 377 "rusticata-macros", 378] 379 380[[package]] 381name = "diff" 382version = "0.1.12" 383source = "registry+https://github.com/rust-lang/crates.io-index" 384checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499" 385 386[[package]] 387name = "digest" 388version = "0.9.0" 389source = "registry+https://github.com/rust-lang/crates.io-index" 390checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 391dependencies = [ 392 "generic-array", 393] 394 395[[package]] 396name = "dirs" 397version = "4.0.0" 398source = "registry+https://github.com/rust-lang/crates.io-index" 399checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 400dependencies = [ 401 "dirs-sys", 402] 403 404[[package]] 405name = "dirs-sys" 406version = "0.3.6" 407source = "registry+https://github.com/rust-lang/crates.io-index" 408checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780" 409dependencies = [ 410 "libc", 411 "redox_users", 412 "winapi", 413] 414 415[[package]] 416name = "dtoa" 417version = "0.4.8" 418source = "registry+https://github.com/rust-lang/crates.io-index" 419checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 420 421[[package]] 422name = "either" 423version = "1.6.1" 424source = "registry+https://github.com/rust-lang/crates.io-index" 425checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" 426 427[[package]] 428name = "encode_unicode" 429version = "0.3.6" 430source = "registry+https://github.com/rust-lang/crates.io-index" 431checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 432 433[[package]] 434name = "encoding_rs" 435version = "0.8.29" 436source = "registry+https://github.com/rust-lang/crates.io-index" 437checksum = "a74ea89a0a1b98f6332de42c95baff457ada66d1cb4030f9ff151b2041a1c746" 438dependencies = [ 439 "cfg-if", 440] 441 442[[package]] 443name = "filetime" 444version = "0.2.15" 445source = "registry+https://github.com/rust-lang/crates.io-index" 446checksum = "975ccf83d8d9d0d84682850a38c8169027be83368805971cc4f238c2b245bc98" 447dependencies = [ 448 "cfg-if", 449 "libc", 450 "redox_syscall", 451 "winapi", 452] 453 454[[package]] 455name = "fixedbitset" 456version = "0.4.0" 457source = "registry+https://github.com/rust-lang/crates.io-index" 458checksum = "398ea4fabe40b9b0d885340a2a991a44c8a645624075ad966d21f88688e2b69e" 459 460[[package]] 461name = "flate2" 462version = "1.0.22" 463source = "registry+https://github.com/rust-lang/crates.io-index" 464checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f" 465dependencies = [ 466 "cfg-if", 467 "crc32fast", 468 "libc", 469 "miniz_oxide", 470] 471 472[[package]] 473name = "fnv" 474version = "1.0.7" 475source = "registry+https://github.com/rust-lang/crates.io-index" 476checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 477 478[[package]] 479name = "foreign-types" 480version = "0.3.2" 481source = "registry+https://github.com/rust-lang/crates.io-index" 482checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 483dependencies = [ 484 "foreign-types-shared", 485] 486 487[[package]] 488name = "foreign-types-shared" 489version = "0.1.1" 490source = "registry+https://github.com/rust-lang/crates.io-index" 491checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 492 493[[package]] 494name = "form_urlencoded" 495version = "1.0.1" 496source = "registry+https://github.com/rust-lang/crates.io-index" 497checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" 498dependencies = [ 499 "matches", 500 "percent-encoding", 501] 502 503[[package]] 504name = "fs_extra" 505version = "1.2.0" 506source = "registry+https://github.com/rust-lang/crates.io-index" 507checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394" 508 509[[package]] 510name = "funty" 511version = "1.1.0" 512source = "registry+https://github.com/rust-lang/crates.io-index" 513checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7" 514 515[[package]] 516name = "futures" 517version = "0.3.18" 518source = "registry+https://github.com/rust-lang/crates.io-index" 519checksum = "8cd0210d8c325c245ff06fd95a3b13689a1a276ac8cfa8e8720cb840bfb84b9e" 520dependencies = [ 521 "futures-channel", 522 "futures-core", 523 "futures-executor", 524 "futures-io", 525 "futures-sink", 526 "futures-task", 527 "futures-util", 528] 529 530[[package]] 531name = "futures-channel" 532version = "0.3.18" 533source = "registry+https://github.com/rust-lang/crates.io-index" 534checksum = "7fc8cd39e3dbf865f7340dce6a2d401d24fd37c6fe6c4f0ee0de8bfca2252d27" 535dependencies = [ 536 "futures-core", 537 "futures-sink", 538] 539 540[[package]] 541name = "futures-core" 542version = "0.3.18" 543source = "registry+https://github.com/rust-lang/crates.io-index" 544checksum = "629316e42fe7c2a0b9a65b47d159ceaa5453ab14e8f0a3c5eedbb8cd55b4a445" 545 546[[package]] 547name = "futures-executor" 548version = "0.3.18" 549source = "registry+https://github.com/rust-lang/crates.io-index" 550checksum = "7b808bf53348a36cab739d7e04755909b9fcaaa69b7d7e588b37b6ec62704c97" 551dependencies = [ 552 "futures-core", 553 "futures-task", 554 "futures-util", 555] 556 557[[package]] 558name = "futures-io" 559version = "0.3.18" 560source = "registry+https://github.com/rust-lang/crates.io-index" 561checksum = "e481354db6b5c353246ccf6a728b0c5511d752c08da7260546fc0933869daa11" 562 563[[package]] 564name = "futures-macro" 565version = "0.3.18" 566source = "registry+https://github.com/rust-lang/crates.io-index" 567checksum = "a89f17b21645bc4ed773c69af9c9a0effd4a3f1a3876eadd453469f8854e7fdd" 568dependencies = [ 569 "proc-macro2", 570 "quote", 571 "syn", 572] 573 574[[package]] 575name = "futures-sink" 576version = "0.3.18" 577source = "registry+https://github.com/rust-lang/crates.io-index" 578checksum = "996c6442437b62d21a32cd9906f9c41e7dc1e19a9579843fad948696769305af" 579 580[[package]] 581name = "futures-task" 582version = "0.3.18" 583source = "registry+https://github.com/rust-lang/crates.io-index" 584checksum = "dabf1872aaab32c886832f2276d2f5399887e2bd613698a02359e4ea83f8de12" 585 586[[package]] 587name = "futures-util" 588version = "0.3.18" 589source = "registry+https://github.com/rust-lang/crates.io-index" 590checksum = "41d22213122356472061ac0f1ab2cee28d2bac8491410fd68c2af53d1cedb83e" 591dependencies = [ 592 "futures-channel", 593 "futures-core", 594 "futures-io", 595 "futures-macro", 596 "futures-sink", 597 "futures-task", 598 "memchr", 599 "pin-project-lite", 600 "pin-utils", 601 "slab", 602] 603 604[[package]] 605name = "generic-array" 606version = "0.14.4" 607source = "registry+https://github.com/rust-lang/crates.io-index" 608checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817" 609dependencies = [ 610 "typenum", 611 "version_check", 612] 613 614[[package]] 615name = "getopts" 616version = "0.2.21" 617source = "registry+https://github.com/rust-lang/crates.io-index" 618checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 619dependencies = [ 620 "unicode-width", 621] 622 623[[package]] 624name = "getrandom" 625version = "0.2.3" 626source = "registry+https://github.com/rust-lang/crates.io-index" 627checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" 628dependencies = [ 629 "cfg-if", 630 "libc", 631 "wasi", 632] 633 634[[package]] 635name = "gleam" 636version = "0.18.0-rc3" 637dependencies = [ 638 "async-trait", 639 "atty", 640 "base16", 641 "bytes", 642 "ctrlc", 643 "debug-ignore", 644 "flate2", 645 "fs_extra", 646 "futures", 647 "gleam-core", 648 "hexpm", 649 "hostname", 650 "http", 651 "ignore", 652 "itertools", 653 "lazy_static", 654 "pretty_assertions", 655 "regex", 656 "reqwest", 657 "rpassword", 658 "serde", 659 "sha2", 660 "structopt", 661 "strum", 662 "tar", 663 "termcolor", 664 "tokio", 665 "toml", 666 "toml_edit", 667 "tracing", 668 "tracing-subscriber", 669 "walkdir", 670] 671 672[[package]] 673name = "gleam-core" 674version = "0.18.0-rc3" 675dependencies = [ 676 "askama", 677 "async-trait", 678 "base16", 679 "bytes", 680 "capnp", 681 "capnpc", 682 "codespan-reporting", 683 "debug-ignore", 684 "dirs", 685 "flate2", 686 "futures", 687 "heck", 688 "hexpm", 689 "http", 690 "im", 691 "insta", 692 "itertools", 693 "lazy_static", 694 "petgraph", 695 "pretty_assertions", 696 "pulldown-cmark", 697 "regex", 698 "serde", 699 "serde_derive", 700 "strsim 0.10.0", 701 "strum", 702 "tar", 703 "termcolor", 704 "textwrap 0.14.2", 705 "thiserror", 706 "toml", 707 "tracing", 708 "vec1", 709] 710 711[[package]] 712name = "gleam-wasm" 713version = "0.18.0-rc3" 714dependencies = [ 715 "gleam-core", 716 "wasm-bindgen", 717 "wasm-bindgen-test", 718] 719 720[[package]] 721name = "globset" 722version = "0.4.8" 723source = "registry+https://github.com/rust-lang/crates.io-index" 724checksum = "10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd" 725dependencies = [ 726 "aho-corasick", 727 "bstr", 728 "fnv", 729 "log", 730 "regex", 731] 732 733[[package]] 734name = "h2" 735version = "0.3.7" 736source = "registry+https://github.com/rust-lang/crates.io-index" 737checksum = "7fd819562fcebdac5afc5c113c3ec36f902840b70fd4fc458799c8ce4607ae55" 738dependencies = [ 739 "bytes", 740 "fnv", 741 "futures-core", 742 "futures-sink", 743 "futures-util", 744 "http", 745 "indexmap", 746 "slab", 747 "tokio", 748 "tokio-util", 749 "tracing", 750] 751 752[[package]] 753name = "hashbrown" 754version = "0.11.2" 755source = "registry+https://github.com/rust-lang/crates.io-index" 756checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" 757 758[[package]] 759name = "heck" 760version = "0.3.3" 761source = "registry+https://github.com/rust-lang/crates.io-index" 762checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 763dependencies = [ 764 "unicode-segmentation", 765] 766 767[[package]] 768name = "hermit-abi" 769version = "0.1.19" 770source = "registry+https://github.com/rust-lang/crates.io-index" 771checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 772dependencies = [ 773 "libc", 774] 775 776[[package]] 777name = "hexpm" 778version = "1.4.1" 779source = "registry+https://github.com/rust-lang/crates.io-index" 780checksum = "d3e84ed45452443718118eac7d4a5bc80d1bec26bd6d7720148d6259fb841890" 781dependencies = [ 782 "base16", 783 "bytes", 784 "flate2", 785 "http", 786 "http-auth-basic", 787 "lazy_static", 788 "protobuf", 789 "protobuf-codegen-pure", 790 "pubgrub", 791 "regex", 792 "ring", 793 "serde", 794 "serde_json", 795 "thiserror", 796 "url", 797 "x509-parser", 798] 799 800[[package]] 801name = "hostname" 802version = "0.3.1" 803source = "registry+https://github.com/rust-lang/crates.io-index" 804checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 805dependencies = [ 806 "libc", 807 "match_cfg", 808 "winapi", 809] 810 811[[package]] 812name = "http" 813version = "0.2.5" 814source = "registry+https://github.com/rust-lang/crates.io-index" 815checksum = "1323096b05d41827dadeaee54c9981958c0f94e670bc94ed80037d1a7b8b186b" 816dependencies = [ 817 "bytes", 818 "fnv", 819 "itoa", 820] 821 822[[package]] 823name = "http-auth-basic" 824version = "0.3.1" 825source = "registry+https://github.com/rust-lang/crates.io-index" 826checksum = "c692c953703936fa684b33084ce21ad4248769b5052079bbd89afe6b354a5762" 827dependencies = [ 828 "base64 0.12.3", 829] 830 831[[package]] 832name = "http-body" 833version = "0.4.4" 834source = "registry+https://github.com/rust-lang/crates.io-index" 835checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6" 836dependencies = [ 837 "bytes", 838 "http", 839 "pin-project-lite", 840] 841 842[[package]] 843name = "httparse" 844version = "1.5.1" 845source = "registry+https://github.com/rust-lang/crates.io-index" 846checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503" 847 848[[package]] 849name = "httpdate" 850version = "1.0.2" 851source = "registry+https://github.com/rust-lang/crates.io-index" 852checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 853 854[[package]] 855name = "humansize" 856version = "1.1.1" 857source = "registry+https://github.com/rust-lang/crates.io-index" 858checksum = "02296996cb8796d7c6e3bc2d9211b7802812d36999a51bb754123ead7d37d026" 859 860[[package]] 861name = "hyper" 862version = "0.14.15" 863source = "registry+https://github.com/rust-lang/crates.io-index" 864checksum = "436ec0091e4f20e655156a30a0df3770fe2900aa301e548e08446ec794b6953c" 865dependencies = [ 866 "bytes", 867 "futures-channel", 868 "futures-core", 869 "futures-util", 870 "h2", 871 "http", 872 "http-body", 873 "httparse", 874 "httpdate", 875 "itoa", 876 "pin-project-lite", 877 "socket2", 878 "tokio", 879 "tower-service", 880 "tracing", 881 "want", 882] 883 884[[package]] 885name = "hyper-tls" 886version = "0.5.0" 887source = "registry+https://github.com/rust-lang/crates.io-index" 888checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 889dependencies = [ 890 "bytes", 891 "hyper", 892 "native-tls", 893 "tokio", 894 "tokio-native-tls", 895] 896 897[[package]] 898name = "idna" 899version = "0.2.3" 900source = "registry+https://github.com/rust-lang/crates.io-index" 901checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 902dependencies = [ 903 "matches", 904 "unicode-bidi", 905 "unicode-normalization", 906] 907 908[[package]] 909name = "ignore" 910version = "0.4.18" 911source = "registry+https://github.com/rust-lang/crates.io-index" 912checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d" 913dependencies = [ 914 "crossbeam-utils", 915 "globset", 916 "lazy_static", 917 "log", 918 "memchr", 919 "regex", 920 "same-file", 921 "thread_local", 922 "walkdir", 923 "winapi-util", 924] 925 926[[package]] 927name = "im" 928version = "15.0.0" 929source = "registry+https://github.com/rust-lang/crates.io-index" 930checksum = "111c1983f3c5bb72732df25cddacee9b546d08325fb584b5ebd38148be7b0246" 931dependencies = [ 932 "bitmaps", 933 "rand_core 0.5.1", 934 "rand_xoshiro", 935 "sized-chunks", 936 "typenum", 937 "version_check", 938] 939 940[[package]] 941name = "indexmap" 942version = "1.7.0" 943source = "registry+https://github.com/rust-lang/crates.io-index" 944checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5" 945dependencies = [ 946 "autocfg", 947 "hashbrown", 948] 949 950[[package]] 951name = "insta" 952version = "1.8.0" 953source = "registry+https://github.com/rust-lang/crates.io-index" 954checksum = "15226a375927344c78d39dc6b49e2d5562a5b0705e26a589093c6792e52eed8e" 955dependencies = [ 956 "console", 957 "lazy_static", 958 "serde", 959 "serde_json", 960 "serde_yaml", 961 "similar", 962 "uuid", 963] 964 965[[package]] 966name = "ipnet" 967version = "2.3.1" 968source = "registry+https://github.com/rust-lang/crates.io-index" 969checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9" 970 971[[package]] 972name = "itertools" 973version = "0.10.1" 974source = "registry+https://github.com/rust-lang/crates.io-index" 975checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf" 976dependencies = [ 977 "either", 978] 979 980[[package]] 981name = "itoa" 982version = "0.4.8" 983source = "registry+https://github.com/rust-lang/crates.io-index" 984checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 985 986[[package]] 987name = "js-sys" 988version = "0.3.55" 989source = "registry+https://github.com/rust-lang/crates.io-index" 990checksum = "7cc9ffccd38c451a86bf13657df244e9c3f37493cce8e5e21e940963777acc84" 991dependencies = [ 992 "wasm-bindgen", 993] 994 995[[package]] 996name = "kstring" 997version = "1.0.6" 998source = "registry+https://github.com/rust-lang/crates.io-index" 999checksum = "8b310ccceade8121d7d77fee406160e457c2f4e7c7982d589da3499bc7ea4526" 1000dependencies = [ 1001 "serde", 1002] 1003 1004[[package]] 1005name = "lazy_static" 1006version = "1.4.0" 1007source = "registry+https://github.com/rust-lang/crates.io-index" 1008checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1009 1010[[package]] 1011name = "lexical-core" 1012version = "0.7.6" 1013source = "registry+https://github.com/rust-lang/crates.io-index" 1014checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe" 1015dependencies = [ 1016 "arrayvec", 1017 "bitflags", 1018 "cfg-if", 1019 "ryu", 1020 "static_assertions", 1021] 1022 1023[[package]] 1024name = "libc" 1025version = "0.2.108" 1026source = "registry+https://github.com/rust-lang/crates.io-index" 1027checksum = "8521a1b57e76b1ec69af7599e75e38e7b7fad6610f037db8c79b127201b5d119" 1028 1029[[package]] 1030name = "linked-hash-map" 1031version = "0.5.4" 1032source = "registry+https://github.com/rust-lang/crates.io-index" 1033checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3" 1034 1035[[package]] 1036name = "log" 1037version = "0.4.14" 1038source = "registry+https://github.com/rust-lang/crates.io-index" 1039checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" 1040dependencies = [ 1041 "cfg-if", 1042] 1043 1044[[package]] 1045name = "match_cfg" 1046version = "0.1.0" 1047source = "registry+https://github.com/rust-lang/crates.io-index" 1048checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 1049 1050[[package]] 1051name = "matchers" 1052version = "0.1.0" 1053source = "registry+https://github.com/rust-lang/crates.io-index" 1054checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1055dependencies = [ 1056 "regex-automata", 1057] 1058 1059[[package]] 1060name = "matches" 1061version = "0.1.9" 1062source = "registry+https://github.com/rust-lang/crates.io-index" 1063checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 1064 1065[[package]] 1066name = "memchr" 1067version = "2.4.1" 1068source = "registry+https://github.com/rust-lang/crates.io-index" 1069checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" 1070 1071[[package]] 1072name = "memoffset" 1073version = "0.6.5" 1074source = "registry+https://github.com/rust-lang/crates.io-index" 1075checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1076dependencies = [ 1077 "autocfg", 1078] 1079 1080[[package]] 1081name = "mime" 1082version = "0.3.16" 1083source = "registry+https://github.com/rust-lang/crates.io-index" 1084checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 1085 1086[[package]] 1087name = "miniz_oxide" 1088version = "0.4.4" 1089source = "registry+https://github.com/rust-lang/crates.io-index" 1090checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" 1091dependencies = [ 1092 "adler", 1093 "autocfg", 1094] 1095 1096[[package]] 1097name = "mio" 1098version = "0.7.14" 1099source = "registry+https://github.com/rust-lang/crates.io-index" 1100checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc" 1101dependencies = [ 1102 "libc", 1103 "log", 1104 "miow", 1105 "ntapi", 1106 "winapi", 1107] 1108 1109[[package]] 1110name = "miow" 1111version = "0.3.7" 1112source = "registry+https://github.com/rust-lang/crates.io-index" 1113checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" 1114dependencies = [ 1115 "winapi", 1116] 1117 1118[[package]] 1119name = "native-tls" 1120version = "0.2.8" 1121source = "registry+https://github.com/rust-lang/crates.io-index" 1122checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d" 1123dependencies = [ 1124 "lazy_static", 1125 "libc", 1126 "log", 1127 "openssl", 1128 "openssl-probe", 1129 "openssl-sys", 1130 "schannel", 1131 "security-framework", 1132 "security-framework-sys", 1133 "tempfile", 1134] 1135 1136[[package]] 1137name = "nix" 1138version = "0.23.0" 1139source = "registry+https://github.com/rust-lang/crates.io-index" 1140checksum = "f305c2c2e4c39a82f7bf0bf65fb557f9070ce06781d4f2454295cc34b1c43188" 1141dependencies = [ 1142 "bitflags", 1143 "cc", 1144 "cfg-if", 1145 "libc", 1146 "memoffset", 1147] 1148 1149[[package]] 1150name = "nom" 1151version = "6.1.2" 1152source = "registry+https://github.com/rust-lang/crates.io-index" 1153checksum = "e7413f999671bd4745a7b624bd370a569fb6bc574b23c83a3c5ed2e453f3d5e2" 1154dependencies = [ 1155 "bitvec", 1156 "funty", 1157 "lexical-core", 1158 "memchr", 1159 "version_check", 1160] 1161 1162[[package]] 1163name = "ntapi" 1164version = "0.3.6" 1165source = "registry+https://github.com/rust-lang/crates.io-index" 1166checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44" 1167dependencies = [ 1168 "winapi", 1169] 1170 1171[[package]] 1172name = "num-bigint" 1173version = "0.4.3" 1174source = "registry+https://github.com/rust-lang/crates.io-index" 1175checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 1176dependencies = [ 1177 "autocfg", 1178 "num-integer", 1179 "num-traits", 1180] 1181 1182[[package]] 1183name = "num-integer" 1184version = "0.1.44" 1185source = "registry+https://github.com/rust-lang/crates.io-index" 1186checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" 1187dependencies = [ 1188 "autocfg", 1189 "num-traits", 1190] 1191 1192[[package]] 1193name = "num-traits" 1194version = "0.2.14" 1195source = "registry+https://github.com/rust-lang/crates.io-index" 1196checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" 1197dependencies = [ 1198 "autocfg", 1199] 1200 1201[[package]] 1202name = "num_cpus" 1203version = "1.13.0" 1204source = "registry+https://github.com/rust-lang/crates.io-index" 1205checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" 1206dependencies = [ 1207 "hermit-abi", 1208 "libc", 1209] 1210 1211[[package]] 1212name = "oid-registry" 1213version = "0.1.5" 1214source = "registry+https://github.com/rust-lang/crates.io-index" 1215checksum = "f6aae73e474f83beacd8ae2179e328e03d63d9223949d97e1b7c108059a34715" 1216dependencies = [ 1217 "der-parser", 1218] 1219 1220[[package]] 1221name = "once_cell" 1222version = "1.8.0" 1223source = "registry+https://github.com/rust-lang/crates.io-index" 1224checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" 1225 1226[[package]] 1227name = "opaque-debug" 1228version = "0.3.0" 1229source = "registry+https://github.com/rust-lang/crates.io-index" 1230checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 1231 1232[[package]] 1233name = "openssl" 1234version = "0.10.38" 1235source = "registry+https://github.com/rust-lang/crates.io-index" 1236checksum = "0c7ae222234c30df141154f159066c5093ff73b63204dcda7121eb082fc56a95" 1237dependencies = [ 1238 "bitflags", 1239 "cfg-if", 1240 "foreign-types", 1241 "libc", 1242 "once_cell", 1243 "openssl-sys", 1244] 1245 1246[[package]] 1247name = "openssl-probe" 1248version = "0.1.4" 1249source = "registry+https://github.com/rust-lang/crates.io-index" 1250checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a" 1251 1252[[package]] 1253name = "openssl-sys" 1254version = "0.9.71" 1255source = "registry+https://github.com/rust-lang/crates.io-index" 1256checksum = "7df13d165e607909b363a4757a6f133f8a818a74e9d3a98d09c6128e15fa4c73" 1257dependencies = [ 1258 "autocfg", 1259 "cc", 1260 "libc", 1261 "pkg-config", 1262 "vcpkg", 1263] 1264 1265[[package]] 1266name = "output_vt100" 1267version = "0.1.2" 1268source = "registry+https://github.com/rust-lang/crates.io-index" 1269checksum = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9" 1270dependencies = [ 1271 "winapi", 1272] 1273 1274[[package]] 1275name = "percent-encoding" 1276version = "2.1.0" 1277source = "registry+https://github.com/rust-lang/crates.io-index" 1278checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 1279 1280[[package]] 1281name = "petgraph" 1282version = "0.6.0" 1283source = "registry+https://github.com/rust-lang/crates.io-index" 1284checksum = "4a13a2fa9d0b63e5f22328828741e523766fff0ee9e779316902290dff3f824f" 1285dependencies = [ 1286 "fixedbitset", 1287 "indexmap", 1288] 1289 1290[[package]] 1291name = "pin-project-lite" 1292version = "0.2.7" 1293source = "registry+https://github.com/rust-lang/crates.io-index" 1294checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443" 1295 1296[[package]] 1297name = "pin-utils" 1298version = "0.1.0" 1299source = "registry+https://github.com/rust-lang/crates.io-index" 1300checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1301 1302[[package]] 1303name = "pkg-config" 1304version = "0.3.22" 1305source = "registry+https://github.com/rust-lang/crates.io-index" 1306checksum = "12295df4f294471248581bc09bef3c38a5e46f1e36d6a37353621a0c6c357e1f" 1307 1308[[package]] 1309name = "ppv-lite86" 1310version = "0.2.15" 1311source = "registry+https://github.com/rust-lang/crates.io-index" 1312checksum = "ed0cfbc8191465bed66e1718596ee0b0b35d5ee1f41c5df2189d0fe8bde535ba" 1313 1314[[package]] 1315name = "pretty_assertions" 1316version = "1.0.0" 1317source = "registry+https://github.com/rust-lang/crates.io-index" 1318checksum = "ec0cfe1b2403f172ba0f234e500906ee0a3e493fb81092dac23ebefe129301cc" 1319dependencies = [ 1320 "ansi_term", 1321 "ctor", 1322 "diff", 1323 "output_vt100", 1324] 1325 1326[[package]] 1327name = "proc-macro-error" 1328version = "1.0.4" 1329source = "registry+https://github.com/rust-lang/crates.io-index" 1330checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1331dependencies = [ 1332 "proc-macro-error-attr", 1333 "proc-macro2", 1334 "quote", 1335 "syn", 1336 "version_check", 1337] 1338 1339[[package]] 1340name = "proc-macro-error-attr" 1341version = "1.0.4" 1342source = "registry+https://github.com/rust-lang/crates.io-index" 1343checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1344dependencies = [ 1345 "proc-macro2", 1346 "quote", 1347 "version_check", 1348] 1349 1350[[package]] 1351name = "proc-macro2" 1352version = "1.0.32" 1353source = "registry+https://github.com/rust-lang/crates.io-index" 1354checksum = "ba508cc11742c0dc5c1659771673afbab7a0efab23aa17e854cbab0837ed0b43" 1355dependencies = [ 1356 "unicode-xid", 1357] 1358 1359[[package]] 1360name = "protobuf" 1361version = "2.25.2" 1362source = "registry+https://github.com/rust-lang/crates.io-index" 1363checksum = "47c327e191621a2158159df97cdbc2e7074bb4e940275e35abf38eb3d2595754" 1364 1365[[package]] 1366name = "protobuf-codegen" 1367version = "2.25.2" 1368source = "registry+https://github.com/rust-lang/crates.io-index" 1369checksum = "3df8c98c08bd4d6653c2dbae00bd68c1d1d82a360265a5b0bbc73d48c63cb853" 1370dependencies = [ 1371 "protobuf", 1372] 1373 1374[[package]] 1375name = "protobuf-codegen-pure" 1376version = "2.25.2" 1377source = "registry+https://github.com/rust-lang/crates.io-index" 1378checksum = "394a73e2a819405364df8d30042c0f1174737a763e0170497ec9d36f8a2ea8f7" 1379dependencies = [ 1380 "protobuf", 1381 "protobuf-codegen", 1382] 1383 1384[[package]] 1385name = "pubgrub" 1386version = "0.2.1" 1387source = "registry+https://github.com/rust-lang/crates.io-index" 1388checksum = "cdd14552ad5f5d743a323c10d576f26822a044355d6601f377d813ece46f38fd" 1389dependencies = [ 1390 "rustc-hash", 1391 "thiserror", 1392] 1393 1394[[package]] 1395name = "pulldown-cmark" 1396version = "0.8.0" 1397source = "registry+https://github.com/rust-lang/crates.io-index" 1398checksum = "ffade02495f22453cd593159ea2f59827aae7f53fa8323f756799b670881dcf8" 1399dependencies = [ 1400 "bitflags", 1401 "getopts", 1402 "memchr", 1403 "unicase", 1404] 1405 1406[[package]] 1407name = "quote" 1408version = "1.0.10" 1409source = "registry+https://github.com/rust-lang/crates.io-index" 1410checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05" 1411dependencies = [ 1412 "proc-macro2", 1413] 1414 1415[[package]] 1416name = "radium" 1417version = "0.5.3" 1418source = "registry+https://github.com/rust-lang/crates.io-index" 1419checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8" 1420 1421[[package]] 1422name = "rand" 1423version = "0.8.4" 1424source = "registry+https://github.com/rust-lang/crates.io-index" 1425checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" 1426dependencies = [ 1427 "libc", 1428 "rand_chacha", 1429 "rand_core 0.6.3", 1430 "rand_hc", 1431] 1432 1433[[package]] 1434name = "rand_chacha" 1435version = "0.3.1" 1436source = "registry+https://github.com/rust-lang/crates.io-index" 1437checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1438dependencies = [ 1439 "ppv-lite86", 1440 "rand_core 0.6.3", 1441] 1442 1443[[package]] 1444name = "rand_core" 1445version = "0.5.1" 1446source = "registry+https://github.com/rust-lang/crates.io-index" 1447checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 1448 1449[[package]] 1450name = "rand_core" 1451version = "0.6.3" 1452source = "registry+https://github.com/rust-lang/crates.io-index" 1453checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 1454dependencies = [ 1455 "getrandom", 1456] 1457 1458[[package]] 1459name = "rand_hc" 1460version = "0.3.1" 1461source = "registry+https://github.com/rust-lang/crates.io-index" 1462checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7" 1463dependencies = [ 1464 "rand_core 0.6.3", 1465] 1466 1467[[package]] 1468name = "rand_xoshiro" 1469version = "0.4.0" 1470source = "registry+https://github.com/rust-lang/crates.io-index" 1471checksum = "a9fcdd2e881d02f1d9390ae47ad8e5696a9e4be7b547a1da2afbc61973217004" 1472dependencies = [ 1473 "rand_core 0.5.1", 1474] 1475 1476[[package]] 1477name = "redox_syscall" 1478version = "0.2.10" 1479source = "registry+https://github.com/rust-lang/crates.io-index" 1480checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff" 1481dependencies = [ 1482 "bitflags", 1483] 1484 1485[[package]] 1486name = "redox_users" 1487version = "0.4.0" 1488source = "registry+https://github.com/rust-lang/crates.io-index" 1489checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64" 1490dependencies = [ 1491 "getrandom", 1492 "redox_syscall", 1493] 1494 1495[[package]] 1496name = "regex" 1497version = "1.5.4" 1498source = "registry+https://github.com/rust-lang/crates.io-index" 1499checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" 1500dependencies = [ 1501 "aho-corasick", 1502 "memchr", 1503 "regex-syntax", 1504] 1505 1506[[package]] 1507name = "regex-automata" 1508version = "0.1.10" 1509source = "registry+https://github.com/rust-lang/crates.io-index" 1510checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1511dependencies = [ 1512 "regex-syntax", 1513] 1514 1515[[package]] 1516name = "regex-syntax" 1517version = "0.6.25" 1518source = "registry+https://github.com/rust-lang/crates.io-index" 1519checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" 1520 1521[[package]] 1522name = "remove_dir_all" 1523version = "0.5.3" 1524source = "registry+https://github.com/rust-lang/crates.io-index" 1525checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 1526dependencies = [ 1527 "winapi", 1528] 1529 1530[[package]] 1531name = "reqwest" 1532version = "0.11.7" 1533source = "registry+https://github.com/rust-lang/crates.io-index" 1534checksum = "07bea77bc708afa10e59905c3d4af7c8fd43c9214251673095ff8b14345fcbc5" 1535dependencies = [ 1536 "base64 0.13.0", 1537 "bytes", 1538 "encoding_rs", 1539 "futures-core", 1540 "futures-util", 1541 "http", 1542 "http-body", 1543 "hyper", 1544 "hyper-tls", 1545 "ipnet", 1546 "js-sys", 1547 "lazy_static", 1548 "log", 1549 "mime", 1550 "native-tls", 1551 "percent-encoding", 1552 "pin-project-lite", 1553 "serde", 1554 "serde_json", 1555 "serde_urlencoded", 1556 "tokio", 1557 "tokio-native-tls", 1558 "url", 1559 "wasm-bindgen", 1560 "wasm-bindgen-futures", 1561 "web-sys", 1562 "winreg", 1563] 1564 1565[[package]] 1566name = "ring" 1567version = "0.16.20" 1568source = "registry+https://github.com/rust-lang/crates.io-index" 1569checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 1570dependencies = [ 1571 "cc", 1572 "libc", 1573 "once_cell", 1574 "spin", 1575 "untrusted", 1576 "web-sys", 1577 "winapi", 1578] 1579 1580[[package]] 1581name = "rpassword" 1582version = "5.0.1" 1583source = "registry+https://github.com/rust-lang/crates.io-index" 1584checksum = "ffc936cf8a7ea60c58f030fd36a612a48f440610214dc54bc36431f9ea0c3efb" 1585dependencies = [ 1586 "libc", 1587 "winapi", 1588] 1589 1590[[package]] 1591name = "rustc-hash" 1592version = "1.1.0" 1593source = "registry+https://github.com/rust-lang/crates.io-index" 1594checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1595 1596[[package]] 1597name = "rusticata-macros" 1598version = "3.2.0" 1599source = "registry+https://github.com/rust-lang/crates.io-index" 1600checksum = "fbbee512c633ecabd4481c40111b6ded03ddd9ab10ba6caa5a74e14c889921ad" 1601dependencies = [ 1602 "nom", 1603] 1604 1605[[package]] 1606name = "rustversion" 1607version = "1.0.5" 1608source = "registry+https://github.com/rust-lang/crates.io-index" 1609checksum = "61b3909d758bb75c79f23d4736fac9433868679d3ad2ea7a61e3c25cfda9a088" 1610 1611[[package]] 1612name = "ryu" 1613version = "1.0.6" 1614source = "registry+https://github.com/rust-lang/crates.io-index" 1615checksum = "3c9613b5a66ab9ba26415184cfc41156594925a9cf3a2057e57f31ff145f6568" 1616 1617[[package]] 1618name = "same-file" 1619version = "1.0.6" 1620source = "registry+https://github.com/rust-lang/crates.io-index" 1621checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1622dependencies = [ 1623 "winapi-util", 1624] 1625 1626[[package]] 1627name = "schannel" 1628version = "0.1.19" 1629source = "registry+https://github.com/rust-lang/crates.io-index" 1630checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75" 1631dependencies = [ 1632 "lazy_static", 1633 "winapi", 1634] 1635 1636[[package]] 1637name = "scoped-tls" 1638version = "1.0.0" 1639source = "registry+https://github.com/rust-lang/crates.io-index" 1640checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" 1641 1642[[package]] 1643name = "security-framework" 1644version = "2.4.2" 1645source = "registry+https://github.com/rust-lang/crates.io-index" 1646checksum = "525bc1abfda2e1998d152c45cf13e696f76d0a4972310b22fac1658b05df7c87" 1647dependencies = [ 1648 "bitflags", 1649 "core-foundation", 1650 "core-foundation-sys", 1651 "libc", 1652 "security-framework-sys", 1653] 1654 1655[[package]] 1656name = "security-framework-sys" 1657version = "2.4.2" 1658source = "registry+https://github.com/rust-lang/crates.io-index" 1659checksum = "a9dd14d83160b528b7bfd66439110573efcfbe281b17fc2ca9f39f550d619c7e" 1660dependencies = [ 1661 "core-foundation-sys", 1662 "libc", 1663] 1664 1665[[package]] 1666name = "serde" 1667version = "1.0.130" 1668source = "registry+https://github.com/rust-lang/crates.io-index" 1669checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913" 1670dependencies = [ 1671 "serde_derive", 1672] 1673 1674[[package]] 1675name = "serde_derive" 1676version = "1.0.130" 1677source = "registry+https://github.com/rust-lang/crates.io-index" 1678checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b" 1679dependencies = [ 1680 "proc-macro2", 1681 "quote", 1682 "syn", 1683] 1684 1685[[package]] 1686name = "serde_json" 1687version = "1.0.72" 1688source = "registry+https://github.com/rust-lang/crates.io-index" 1689checksum = "d0ffa0837f2dfa6fb90868c2b5468cad482e175f7dad97e7421951e663f2b527" 1690dependencies = [ 1691 "itoa", 1692 "ryu", 1693 "serde", 1694] 1695 1696[[package]] 1697name = "serde_urlencoded" 1698version = "0.7.0" 1699source = "registry+https://github.com/rust-lang/crates.io-index" 1700checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9" 1701dependencies = [ 1702 "form_urlencoded", 1703 "itoa", 1704 "ryu", 1705 "serde", 1706] 1707 1708[[package]] 1709name = "serde_yaml" 1710version = "0.8.21" 1711source = "registry+https://github.com/rust-lang/crates.io-index" 1712checksum = "d8c608a35705a5d3cdc9fbe403147647ff34b921f8e833e49306df898f9b20af" 1713dependencies = [ 1714 "dtoa", 1715 "indexmap", 1716 "serde", 1717 "yaml-rust", 1718] 1719 1720[[package]] 1721name = "sha2" 1722version = "0.9.8" 1723source = "registry+https://github.com/rust-lang/crates.io-index" 1724checksum = "b69f9a4c9740d74c5baa3fd2e547f9525fa8088a8a958e0ca2409a514e33f5fa" 1725dependencies = [ 1726 "block-buffer", 1727 "cfg-if", 1728 "cpufeatures", 1729 "digest", 1730 "opaque-debug", 1731] 1732 1733[[package]] 1734name = "sharded-slab" 1735version = "0.1.4" 1736source = "registry+https://github.com/rust-lang/crates.io-index" 1737checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 1738dependencies = [ 1739 "lazy_static", 1740] 1741 1742[[package]] 1743name = "similar" 1744version = "1.3.0" 1745source = "registry+https://github.com/rust-lang/crates.io-index" 1746checksum = "1ad1d488a557b235fc46dae55512ffbfc429d2482b08b4d9435ab07384ca8aec" 1747 1748[[package]] 1749name = "sized-chunks" 1750version = "0.6.5" 1751source = "registry+https://github.com/rust-lang/crates.io-index" 1752checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e" 1753dependencies = [ 1754 "bitmaps", 1755 "typenum", 1756] 1757 1758[[package]] 1759name = "slab" 1760version = "0.4.5" 1761source = "registry+https://github.com/rust-lang/crates.io-index" 1762checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5" 1763 1764[[package]] 1765name = "smallvec" 1766version = "1.7.0" 1767source = "registry+https://github.com/rust-lang/crates.io-index" 1768checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309" 1769 1770[[package]] 1771name = "smawk" 1772version = "0.3.1" 1773source = "registry+https://github.com/rust-lang/crates.io-index" 1774checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043" 1775 1776[[package]] 1777name = "socket2" 1778version = "0.4.2" 1779source = "registry+https://github.com/rust-lang/crates.io-index" 1780checksum = "5dc90fe6c7be1a323296982db1836d1ea9e47b6839496dde9a541bc496df3516" 1781dependencies = [ 1782 "libc", 1783 "winapi", 1784] 1785 1786[[package]] 1787name = "spin" 1788version = "0.5.2" 1789source = "registry+https://github.com/rust-lang/crates.io-index" 1790checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 1791 1792[[package]] 1793name = "static_assertions" 1794version = "1.1.0" 1795source = "registry+https://github.com/rust-lang/crates.io-index" 1796checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 1797 1798[[package]] 1799name = "strsim" 1800version = "0.8.0" 1801source = "registry+https://github.com/rust-lang/crates.io-index" 1802checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 1803 1804[[package]] 1805name = "strsim" 1806version = "0.10.0" 1807source = "registry+https://github.com/rust-lang/crates.io-index" 1808checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 1809 1810[[package]] 1811name = "structopt" 1812version = "0.3.25" 1813source = "registry+https://github.com/rust-lang/crates.io-index" 1814checksum = "40b9788f4202aa75c240ecc9c15c65185e6a39ccdeb0fd5d008b98825464c87c" 1815dependencies = [ 1816 "clap", 1817 "lazy_static", 1818 "structopt-derive", 1819] 1820 1821[[package]] 1822name = "structopt-derive" 1823version = "0.4.18" 1824source = "registry+https://github.com/rust-lang/crates.io-index" 1825checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" 1826dependencies = [ 1827 "heck", 1828 "proc-macro-error", 1829 "proc-macro2", 1830 "quote", 1831 "syn", 1832] 1833 1834[[package]] 1835name = "strum" 1836version = "0.23.0" 1837source = "registry+https://github.com/rust-lang/crates.io-index" 1838checksum = "cae14b91c7d11c9a851d3fbc80a963198998c2a64eec840477fa92d8ce9b70bb" 1839dependencies = [ 1840 "strum_macros", 1841] 1842 1843[[package]] 1844name = "strum_macros" 1845version = "0.23.1" 1846source = "registry+https://github.com/rust-lang/crates.io-index" 1847checksum = "5bb0dc7ee9c15cea6199cde9a127fa16a4c5819af85395457ad72d68edc85a38" 1848dependencies = [ 1849 "heck", 1850 "proc-macro2", 1851 "quote", 1852 "rustversion", 1853 "syn", 1854] 1855 1856[[package]] 1857name = "syn" 1858version = "1.0.82" 1859source = "registry+https://github.com/rust-lang/crates.io-index" 1860checksum = "8daf5dd0bb60cbd4137b1b587d2fc0ae729bc07cf01cd70b36a1ed5ade3b9d59" 1861dependencies = [ 1862 "proc-macro2", 1863 "quote", 1864 "unicode-xid", 1865] 1866 1867[[package]] 1868name = "tap" 1869version = "1.0.1" 1870source = "registry+https://github.com/rust-lang/crates.io-index" 1871checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 1872 1873[[package]] 1874name = "tar" 1875version = "0.4.37" 1876source = "registry+https://github.com/rust-lang/crates.io-index" 1877checksum = "d6f5515d3add52e0bbdcad7b83c388bb36ba7b754dda3b5f5bc2d38640cdba5c" 1878dependencies = [ 1879 "filetime", 1880 "libc", 1881 "xattr", 1882] 1883 1884[[package]] 1885name = "tempfile" 1886version = "3.2.0" 1887source = "registry+https://github.com/rust-lang/crates.io-index" 1888checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22" 1889dependencies = [ 1890 "cfg-if", 1891 "libc", 1892 "rand", 1893 "redox_syscall", 1894 "remove_dir_all", 1895 "winapi", 1896] 1897 1898[[package]] 1899name = "termcolor" 1900version = "1.1.2" 1901source = "registry+https://github.com/rust-lang/crates.io-index" 1902checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" 1903dependencies = [ 1904 "winapi-util", 1905] 1906 1907[[package]] 1908name = "terminal_size" 1909version = "0.1.17" 1910source = "registry+https://github.com/rust-lang/crates.io-index" 1911checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df" 1912dependencies = [ 1913 "libc", 1914 "winapi", 1915] 1916 1917[[package]] 1918name = "textwrap" 1919version = "0.11.0" 1920source = "registry+https://github.com/rust-lang/crates.io-index" 1921checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 1922dependencies = [ 1923 "unicode-width", 1924] 1925 1926[[package]] 1927name = "textwrap" 1928version = "0.14.2" 1929source = "registry+https://github.com/rust-lang/crates.io-index" 1930checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80" 1931dependencies = [ 1932 "smawk", 1933 "terminal_size", 1934 "unicode-linebreak", 1935 "unicode-width", 1936] 1937 1938[[package]] 1939name = "thiserror" 1940version = "1.0.30" 1941source = "registry+https://github.com/rust-lang/crates.io-index" 1942checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" 1943dependencies = [ 1944 "thiserror-impl", 1945] 1946 1947[[package]] 1948name = "thiserror-impl" 1949version = "1.0.30" 1950source = "registry+https://github.com/rust-lang/crates.io-index" 1951checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" 1952dependencies = [ 1953 "proc-macro2", 1954 "quote", 1955 "syn", 1956] 1957 1958[[package]] 1959name = "thread_local" 1960version = "1.1.3" 1961source = "registry+https://github.com/rust-lang/crates.io-index" 1962checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd" 1963dependencies = [ 1964 "once_cell", 1965] 1966 1967[[package]] 1968name = "tinyvec" 1969version = "1.5.1" 1970source = "registry+https://github.com/rust-lang/crates.io-index" 1971checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2" 1972dependencies = [ 1973 "tinyvec_macros", 1974] 1975 1976[[package]] 1977name = "tinyvec_macros" 1978version = "0.1.0" 1979source = "registry+https://github.com/rust-lang/crates.io-index" 1980checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 1981 1982[[package]] 1983name = "tokio" 1984version = "1.14.0" 1985source = "registry+https://github.com/rust-lang/crates.io-index" 1986checksum = "70e992e41e0d2fb9f755b37446f20900f64446ef54874f40a60c78f021ac6144" 1987dependencies = [ 1988 "autocfg", 1989 "bytes", 1990 "libc", 1991 "memchr", 1992 "mio", 1993 "num_cpus", 1994 "pin-project-lite", 1995 "winapi", 1996] 1997 1998[[package]] 1999name = "tokio-native-tls" 2000version = "0.3.0" 2001source = "registry+https://github.com/rust-lang/crates.io-index" 2002checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b" 2003dependencies = [ 2004 "native-tls", 2005 "tokio", 2006] 2007 2008[[package]] 2009name = "tokio-util" 2010version = "0.6.9" 2011source = "registry+https://github.com/rust-lang/crates.io-index" 2012checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0" 2013dependencies = [ 2014 "bytes", 2015 "futures-core", 2016 "futures-sink", 2017 "log", 2018 "pin-project-lite", 2019 "tokio", 2020] 2021 2022[[package]] 2023name = "toml" 2024version = "0.5.8" 2025source = "registry+https://github.com/rust-lang/crates.io-index" 2026checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" 2027dependencies = [ 2028 "serde", 2029] 2030 2031[[package]] 2032name = "toml_edit" 2033version = "0.9.1" 2034source = "registry+https://github.com/rust-lang/crates.io-index" 2035checksum = "6b26d63d75583ce572323a963b850d2121cf47a03b1f6c5fc96d641d3b0412b3" 2036dependencies = [ 2037 "combine", 2038 "indexmap", 2039 "itertools", 2040 "kstring", 2041] 2042 2043[[package]] 2044name = "tower-service" 2045version = "0.3.1" 2046source = "registry+https://github.com/rust-lang/crates.io-index" 2047checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" 2048 2049[[package]] 2050name = "tracing" 2051version = "0.1.29" 2052source = "registry+https://github.com/rust-lang/crates.io-index" 2053checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105" 2054dependencies = [ 2055 "cfg-if", 2056 "pin-project-lite", 2057 "tracing-attributes", 2058 "tracing-core", 2059] 2060 2061[[package]] 2062name = "tracing-attributes" 2063version = "0.1.18" 2064source = "registry+https://github.com/rust-lang/crates.io-index" 2065checksum = "f4f480b8f81512e825f337ad51e94c1eb5d3bbdf2b363dcd01e2b19a9ffe3f8e" 2066dependencies = [ 2067 "proc-macro2", 2068 "quote", 2069 "syn", 2070] 2071 2072[[package]] 2073name = "tracing-core" 2074version = "0.1.21" 2075source = "registry+https://github.com/rust-lang/crates.io-index" 2076checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4" 2077dependencies = [ 2078 "lazy_static", 2079] 2080 2081[[package]] 2082name = "tracing-log" 2083version = "0.1.2" 2084source = "registry+https://github.com/rust-lang/crates.io-index" 2085checksum = "a6923477a48e41c1951f1999ef8bb5a3023eb723ceadafe78ffb65dc366761e3" 2086dependencies = [ 2087 "lazy_static", 2088 "log", 2089 "tracing-core", 2090] 2091 2092[[package]] 2093name = "tracing-subscriber" 2094version = "0.3.3" 2095source = "registry+https://github.com/rust-lang/crates.io-index" 2096checksum = "245da694cc7fc4729f3f418b304cb57789f1bed2a78c575407ab8a23f53cb4d3" 2097dependencies = [ 2098 "ansi_term", 2099 "lazy_static", 2100 "matchers", 2101 "regex", 2102 "sharded-slab", 2103 "smallvec", 2104 "thread_local", 2105 "tracing", 2106 "tracing-core", 2107 "tracing-log", 2108] 2109 2110[[package]] 2111name = "try-lock" 2112version = "0.2.3" 2113source = "registry+https://github.com/rust-lang/crates.io-index" 2114checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" 2115 2116[[package]] 2117name = "typenum" 2118version = "1.14.0" 2119source = "registry+https://github.com/rust-lang/crates.io-index" 2120checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec" 2121 2122[[package]] 2123name = "unicase" 2124version = "2.6.0" 2125source = "registry+https://github.com/rust-lang/crates.io-index" 2126checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 2127dependencies = [ 2128 "version_check", 2129] 2130 2131[[package]] 2132name = "unicode-bidi" 2133version = "0.3.7" 2134source = "registry+https://github.com/rust-lang/crates.io-index" 2135checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f" 2136 2137[[package]] 2138name = "unicode-linebreak" 2139version = "0.1.2" 2140source = "registry+https://github.com/rust-lang/crates.io-index" 2141checksum = "3a52dcaab0c48d931f7cc8ef826fa51690a08e1ea55117ef26f89864f532383f" 2142dependencies = [ 2143 "regex", 2144] 2145 2146[[package]] 2147name = "unicode-normalization" 2148version = "0.1.19" 2149source = "registry+https://github.com/rust-lang/crates.io-index" 2150checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9" 2151dependencies = [ 2152 "tinyvec", 2153] 2154 2155[[package]] 2156name = "unicode-segmentation" 2157version = "1.8.0" 2158source = "registry+https://github.com/rust-lang/crates.io-index" 2159checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b" 2160 2161[[package]] 2162name = "unicode-width" 2163version = "0.1.9" 2164source = "registry+https://github.com/rust-lang/crates.io-index" 2165checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" 2166 2167[[package]] 2168name = "unicode-xid" 2169version = "0.2.2" 2170source = "registry+https://github.com/rust-lang/crates.io-index" 2171checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" 2172 2173[[package]] 2174name = "untrusted" 2175version = "0.7.1" 2176source = "registry+https://github.com/rust-lang/crates.io-index" 2177checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 2178 2179[[package]] 2180name = "url" 2181version = "2.2.2" 2182source = "registry+https://github.com/rust-lang/crates.io-index" 2183checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" 2184dependencies = [ 2185 "form_urlencoded", 2186 "idna", 2187 "matches", 2188 "percent-encoding", 2189] 2190 2191[[package]] 2192name = "uuid" 2193version = "0.8.2" 2194source = "registry+https://github.com/rust-lang/crates.io-index" 2195checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 2196 2197[[package]] 2198name = "vcpkg" 2199version = "0.2.15" 2200source = "registry+https://github.com/rust-lang/crates.io-index" 2201checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2202 2203[[package]] 2204name = "vec1" 2205version = "1.8.0" 2206source = "registry+https://github.com/rust-lang/crates.io-index" 2207checksum = "5fc1631c774f0f9570797191e01247cbefde789eebfbf128074cb934115a6133" 2208 2209[[package]] 2210name = "vec_map" 2211version = "0.8.2" 2212source = "registry+https://github.com/rust-lang/crates.io-index" 2213checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 2214 2215[[package]] 2216name = "version_check" 2217version = "0.9.3" 2218source = "registry+https://github.com/rust-lang/crates.io-index" 2219checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" 2220 2221[[package]] 2222name = "walkdir" 2223version = "2.3.2" 2224source = "registry+https://github.com/rust-lang/crates.io-index" 2225checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 2226dependencies = [ 2227 "same-file", 2228 "winapi", 2229 "winapi-util", 2230] 2231 2232[[package]] 2233name = "want" 2234version = "0.3.0" 2235source = "registry+https://github.com/rust-lang/crates.io-index" 2236checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 2237dependencies = [ 2238 "log", 2239 "try-lock", 2240] 2241 2242[[package]] 2243name = "wasi" 2244version = "0.10.2+wasi-snapshot-preview1" 2245source = "registry+https://github.com/rust-lang/crates.io-index" 2246checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" 2247 2248[[package]] 2249name = "wasm-bindgen" 2250version = "0.2.78" 2251source = "registry+https://github.com/rust-lang/crates.io-index" 2252checksum = "632f73e236b219150ea279196e54e610f5dbafa5d61786303d4da54f84e47fce" 2253dependencies = [ 2254 "cfg-if", 2255 "wasm-bindgen-macro", 2256] 2257 2258[[package]] 2259name = "wasm-bindgen-backend" 2260version = "0.2.78" 2261source = "registry+https://github.com/rust-lang/crates.io-index" 2262checksum = "a317bf8f9fba2476b4b2c85ef4c4af8ff39c3c7f0cdfeed4f82c34a880aa837b" 2263dependencies = [ 2264 "bumpalo", 2265 "lazy_static", 2266 "log", 2267 "proc-macro2", 2268 "quote", 2269 "syn", 2270 "wasm-bindgen-shared", 2271] 2272 2273[[package]] 2274name = "wasm-bindgen-futures" 2275version = "0.4.28" 2276source = "registry+https://github.com/rust-lang/crates.io-index" 2277checksum = "8e8d7523cb1f2a4c96c1317ca690031b714a51cc14e05f712446691f413f5d39" 2278dependencies = [ 2279 "cfg-if", 2280 "js-sys", 2281 "wasm-bindgen", 2282 "web-sys", 2283] 2284 2285[[package]] 2286name = "wasm-bindgen-macro" 2287version = "0.2.78" 2288source = "registry+https://github.com/rust-lang/crates.io-index" 2289checksum = "d56146e7c495528bf6587663bea13a8eb588d39b36b679d83972e1a2dbbdacf9" 2290dependencies = [ 2291 "quote", 2292 "wasm-bindgen-macro-support", 2293] 2294 2295[[package]] 2296name = "wasm-bindgen-macro-support" 2297version = "0.2.78" 2298source = "registry+https://github.com/rust-lang/crates.io-index" 2299checksum = "7803e0eea25835f8abdc585cd3021b3deb11543c6fe226dcd30b228857c5c5ab" 2300dependencies = [ 2301 "proc-macro2", 2302 "quote", 2303 "syn", 2304 "wasm-bindgen-backend", 2305 "wasm-bindgen-shared", 2306] 2307 2308[[package]] 2309name = "wasm-bindgen-shared" 2310version = "0.2.78" 2311source = "registry+https://github.com/rust-lang/crates.io-index" 2312checksum = "0237232789cf037d5480773fe568aac745bfe2afbc11a863e97901780a6b47cc" 2313 2314[[package]] 2315name = "wasm-bindgen-test" 2316version = "0.3.28" 2317source = "registry+https://github.com/rust-lang/crates.io-index" 2318checksum = "96f1aa7971fdf61ef0f353602102dbea75a56e225ed036c1e3740564b91e6b7e" 2319dependencies = [ 2320 "console_error_panic_hook", 2321 "js-sys", 2322 "scoped-tls", 2323 "wasm-bindgen", 2324 "wasm-bindgen-futures", 2325 "wasm-bindgen-test-macro", 2326] 2327 2328[[package]] 2329name = "wasm-bindgen-test-macro" 2330version = "0.3.28" 2331source = "registry+https://github.com/rust-lang/crates.io-index" 2332checksum = "6006f79628dfeb96a86d4db51fbf1344cd7fd8408f06fc9aa3c84913a4789688" 2333dependencies = [ 2334 "proc-macro2", 2335 "quote", 2336] 2337 2338[[package]] 2339name = "web-sys" 2340version = "0.3.55" 2341source = "registry+https://github.com/rust-lang/crates.io-index" 2342checksum = "38eb105f1c59d9eaa6b5cdc92b859d85b926e82cb2e0945cd0c9259faa6fe9fb" 2343dependencies = [ 2344 "js-sys", 2345 "wasm-bindgen", 2346] 2347 2348[[package]] 2349name = "winapi" 2350version = "0.3.9" 2351source = "registry+https://github.com/rust-lang/crates.io-index" 2352checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2353dependencies = [ 2354 "winapi-i686-pc-windows-gnu", 2355 "winapi-x86_64-pc-windows-gnu", 2356] 2357 2358[[package]] 2359name = "winapi-i686-pc-windows-gnu" 2360version = "0.4.0" 2361source = "registry+https://github.com/rust-lang/crates.io-index" 2362checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2363 2364[[package]] 2365name = "winapi-util" 2366version = "0.1.5" 2367source = "registry+https://github.com/rust-lang/crates.io-index" 2368checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 2369dependencies = [ 2370 "winapi", 2371] 2372 2373[[package]] 2374name = "winapi-x86_64-pc-windows-gnu" 2375version = "0.4.0" 2376source = "registry+https://github.com/rust-lang/crates.io-index" 2377checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2378 2379[[package]] 2380name = "winreg" 2381version = "0.7.0" 2382source = "registry+https://github.com/rust-lang/crates.io-index" 2383checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69" 2384dependencies = [ 2385 "winapi", 2386] 2387 2388[[package]] 2389name = "wyz" 2390version = "0.2.0" 2391source = "registry+https://github.com/rust-lang/crates.io-index" 2392checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214" 2393 2394[[package]] 2395name = "x509-parser" 2396version = "0.9.2" 2397source = "registry+https://github.com/rust-lang/crates.io-index" 2398checksum = "64abca276c58f8341ddc13fd4bd6ae75993cc669043f5b34813c90f7dff04771" 2399dependencies = [ 2400 "base64 0.13.0", 2401 "chrono", 2402 "data-encoding", 2403 "der-parser", 2404 "lazy_static", 2405 "nom", 2406 "oid-registry", 2407 "rusticata-macros", 2408 "rustversion", 2409 "thiserror", 2410] 2411 2412[[package]] 2413name = "xattr" 2414version = "0.2.2" 2415source = "registry+https://github.com/rust-lang/crates.io-index" 2416checksum = "244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c" 2417dependencies = [ 2418 "libc", 2419] 2420 2421[[package]] 2422name = "yaml-rust" 2423version = "0.4.5" 2424source = "registry+https://github.com/rust-lang/crates.io-index" 2425checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 2426dependencies = [ 2427 "linked-hash-map", 2428]