at 23.11-beta 4049 lines 100 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "addr2line" 7version = "0.19.0" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" 10dependencies = [ 11 "gimli", 12] 13 14[[package]] 15name = "adler" 16version = "1.0.2" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 20[[package]] 21name = "adler32" 22version = "1.2.0" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 25 26[[package]] 27name = "aes" 28version = "0.8.2" 29source = "registry+https://github.com/rust-lang/crates.io-index" 30checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241" 31dependencies = [ 32 "cfg-if", 33 "cipher", 34 "cpufeatures", 35] 36 37[[package]] 38name = "ahash" 39version = "0.7.6" 40source = "registry+https://github.com/rust-lang/crates.io-index" 41checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 42dependencies = [ 43 "getrandom", 44 "once_cell", 45 "version_check", 46] 47 48[[package]] 49name = "aho-corasick" 50version = "1.0.2" 51source = "registry+https://github.com/rust-lang/crates.io-index" 52checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" 53dependencies = [ 54 "memchr", 55] 56 57[[package]] 58name = "android-tzdata" 59version = "0.1.1" 60source = "registry+https://github.com/rust-lang/crates.io-index" 61checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 62 63[[package]] 64name = "anstyle" 65version = "1.0.0" 66source = "registry+https://github.com/rust-lang/crates.io-index" 67checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" 68 69[[package]] 70name = "anyhow" 71version = "1.0.71" 72source = "registry+https://github.com/rust-lang/crates.io-index" 73checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 74 75[[package]] 76name = "arc-swap" 77version = "1.6.0" 78source = "registry+https://github.com/rust-lang/crates.io-index" 79checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" 80 81[[package]] 82name = "arrayref" 83version = "0.3.6" 84source = "registry+https://github.com/rust-lang/crates.io-index" 85checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" 86 87[[package]] 88name = "arrayvec" 89version = "0.7.2" 90source = "registry+https://github.com/rust-lang/crates.io-index" 91checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 92 93[[package]] 94name = "assert_cmd" 95version = "2.0.11" 96source = "registry+https://github.com/rust-lang/crates.io-index" 97checksum = "86d6b683edf8d1119fe420a94f8a7e389239666aa72e65495d91c00462510151" 98dependencies = [ 99 "anstyle", 100 "bstr", 101 "doc-comment", 102 "predicates 3.0.3", 103 "predicates-core", 104 "predicates-tree", 105 "wait-timeout", 106] 107 108[[package]] 109name = "async-channel" 110version = "1.8.0" 111source = "registry+https://github.com/rust-lang/crates.io-index" 112checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" 113dependencies = [ 114 "concurrent-queue", 115 "event-listener", 116 "futures-core", 117] 118 119[[package]] 120name = "async-executor" 121version = "1.5.0" 122source = "registry+https://github.com/rust-lang/crates.io-index" 123checksum = "17adb73da160dfb475c183343c8cccd80721ea5a605d3eb57125f0a7b7a92d0b" 124dependencies = [ 125 "async-lock", 126 "async-task", 127 "concurrent-queue", 128 "fastrand", 129 "futures-lite", 130 "slab", 131] 132 133[[package]] 134name = "async-global-executor" 135version = "2.3.1" 136source = "registry+https://github.com/rust-lang/crates.io-index" 137checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" 138dependencies = [ 139 "async-channel", 140 "async-executor", 141 "async-io", 142 "async-lock", 143 "blocking", 144 "futures-lite", 145 "once_cell", 146] 147 148[[package]] 149name = "async-io" 150version = "1.12.0" 151source = "registry+https://github.com/rust-lang/crates.io-index" 152checksum = "8c374dda1ed3e7d8f0d9ba58715f924862c63eae6849c92d3a18e7fbde9e2794" 153dependencies = [ 154 "async-lock", 155 "autocfg", 156 "concurrent-queue", 157 "futures-lite", 158 "libc", 159 "log", 160 "parking", 161 "polling", 162 "slab", 163 "socket2", 164 "waker-fn", 165 "windows-sys 0.42.0", 166] 167 168[[package]] 169name = "async-listen" 170version = "0.2.1" 171source = "registry+https://github.com/rust-lang/crates.io-index" 172checksum = "c0eff11d7d3dbf808fb25952cc54a0bcf50b501ae6d6ea98a817009b330d0a2a" 173dependencies = [ 174 "async-std", 175] 176 177[[package]] 178name = "async-lock" 179version = "2.7.0" 180source = "registry+https://github.com/rust-lang/crates.io-index" 181checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" 182dependencies = [ 183 "event-listener", 184] 185 186[[package]] 187name = "async-std" 188version = "1.12.0" 189source = "registry+https://github.com/rust-lang/crates.io-index" 190checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" 191dependencies = [ 192 "async-channel", 193 "async-global-executor", 194 "async-io", 195 "async-lock", 196 "crossbeam-utils", 197 "futures-channel", 198 "futures-core", 199 "futures-io", 200 "futures-lite", 201 "gloo-timers", 202 "kv-log-macro", 203 "log", 204 "memchr", 205 "once_cell", 206 "pin-project-lite", 207 "pin-utils", 208 "slab", 209 "wasm-bindgen-futures", 210] 211 212[[package]] 213name = "async-task" 214version = "4.3.0" 215source = "registry+https://github.com/rust-lang/crates.io-index" 216checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524" 217 218[[package]] 219name = "async-trait" 220version = "0.1.66" 221source = "registry+https://github.com/rust-lang/crates.io-index" 222checksum = "b84f9ebcc6c1f5b8cb160f6990096a5c127f423fcb6e1ccc46c370cbdfb75dfc" 223dependencies = [ 224 "proc-macro2", 225 "quote", 226 "syn 1.0.109", 227] 228 229[[package]] 230name = "atomic-waker" 231version = "1.1.0" 232source = "registry+https://github.com/rust-lang/crates.io-index" 233checksum = "debc29dde2e69f9e47506b525f639ed42300fc014a3e007832592448fa8e4599" 234 235[[package]] 236name = "atty" 237version = "0.2.14" 238source = "registry+https://github.com/rust-lang/crates.io-index" 239checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 240dependencies = [ 241 "hermit-abi 0.1.19", 242 "libc", 243 "winapi", 244] 245 246[[package]] 247name = "autocfg" 248version = "1.1.0" 249source = "registry+https://github.com/rust-lang/crates.io-index" 250checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 251 252[[package]] 253name = "backtrace" 254version = "0.3.67" 255source = "registry+https://github.com/rust-lang/crates.io-index" 256checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" 257dependencies = [ 258 "addr2line", 259 "cc", 260 "cfg-if", 261 "libc", 262 "miniz_oxide", 263 "object", 264 "rustc-demangle", 265] 266 267[[package]] 268name = "base16ct" 269version = "0.2.0" 270source = "registry+https://github.com/rust-lang/crates.io-index" 271checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 272 273[[package]] 274name = "base32" 275version = "0.4.0" 276source = "registry+https://github.com/rust-lang/crates.io-index" 277checksum = "23ce669cd6c8588f79e15cf450314f9638f967fc5770ff1c7c1deb0925ea7cfa" 278 279[[package]] 280name = "base64" 281version = "0.13.1" 282source = "registry+https://github.com/rust-lang/crates.io-index" 283checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 284 285[[package]] 286name = "base64" 287version = "0.21.2" 288source = "registry+https://github.com/rust-lang/crates.io-index" 289checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 290 291[[package]] 292name = "base64ct" 293version = "1.0.1" 294source = "registry+https://github.com/rust-lang/crates.io-index" 295checksum = "8a32fd6af2b5827bce66c29053ba0e7c42b9dcab01835835058558c10851a46b" 296 297[[package]] 298name = "basic-toml" 299version = "0.1.2" 300source = "registry+https://github.com/rust-lang/crates.io-index" 301checksum = "5c0de75129aa8d0cceaf750b89013f0e08804d6ec61416da787b35ad0d7cddf1" 302dependencies = [ 303 "serde", 304] 305 306[[package]] 307name = "bigdecimal" 308version = "0.3.1" 309source = "registry+https://github.com/rust-lang/crates.io-index" 310checksum = "a6773ddc0eafc0e509fb60e48dff7f450f8e674a0686ae8605e8d9901bd5eefa" 311dependencies = [ 312 "num-bigint", 313 "num-integer", 314 "num-traits", 315] 316 317[[package]] 318name = "bitflags" 319version = "1.3.2" 320source = "registry+https://github.com/rust-lang/crates.io-index" 321checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 322 323[[package]] 324name = "bitflags" 325version = "2.3.1" 326source = "registry+https://github.com/rust-lang/crates.io-index" 327checksum = "6776fc96284a0bb647b615056fc496d1fe1644a7ab01829818a6d91cae888b84" 328 329[[package]] 330name = "bitvec" 331version = "1.0.1" 332source = "registry+https://github.com/rust-lang/crates.io-index" 333checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 334dependencies = [ 335 "funty", 336 "radium", 337 "tap", 338 "wyz", 339] 340 341[[package]] 342name = "blake2b_simd" 343version = "1.0.1" 344source = "registry+https://github.com/rust-lang/crates.io-index" 345checksum = "3c2f0dc9a68c6317d884f97cc36cf5a3d20ba14ce404227df55e1af708ab04bc" 346dependencies = [ 347 "arrayref", 348 "arrayvec", 349 "constant_time_eq 0.2.4", 350] 351 352[[package]] 353name = "blake3" 354version = "1.4.0" 355source = "registry+https://github.com/rust-lang/crates.io-index" 356checksum = "729b71f35bd3fa1a4c86b85d32c8b9069ea7fe14f7a53cfabb65f62d4265b888" 357dependencies = [ 358 "arrayref", 359 "arrayvec", 360 "cc", 361 "cfg-if", 362 "constant_time_eq 0.2.4", 363 "digest", 364] 365 366[[package]] 367name = "block-buffer" 368version = "0.10.4" 369source = "registry+https://github.com/rust-lang/crates.io-index" 370checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 371dependencies = [ 372 "generic-array", 373] 374 375[[package]] 376name = "blocking" 377version = "1.3.0" 378source = "registry+https://github.com/rust-lang/crates.io-index" 379checksum = "3c67b173a56acffd6d2326fb7ab938ba0b00a71480e14902b2591c87bc5741e8" 380dependencies = [ 381 "async-channel", 382 "async-lock", 383 "async-task", 384 "atomic-waker", 385 "fastrand", 386 "futures-lite", 387] 388 389[[package]] 390name = "bstr" 391version = "1.3.0" 392source = "registry+https://github.com/rust-lang/crates.io-index" 393checksum = "5ffdb39cb703212f3c11973452c2861b972f757b021158f3516ba10f2fa8b2c1" 394dependencies = [ 395 "memchr", 396 "once_cell", 397 "regex-automata", 398 "serde", 399] 400 401[[package]] 402name = "bumpalo" 403version = "3.12.0" 404source = "registry+https://github.com/rust-lang/crates.io-index" 405checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 406 407[[package]] 408name = "byteorder" 409version = "1.4.3" 410source = "registry+https://github.com/rust-lang/crates.io-index" 411checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 412 413[[package]] 414name = "bytes" 415version = "1.4.0" 416source = "registry+https://github.com/rust-lang/crates.io-index" 417checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 418 419[[package]] 420name = "bzip2" 421version = "0.4.4" 422source = "registry+https://github.com/rust-lang/crates.io-index" 423checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 424dependencies = [ 425 "bzip2-sys", 426 "libc", 427] 428 429[[package]] 430name = "bzip2-sys" 431version = "0.1.11+1.0.8" 432source = "registry+https://github.com/rust-lang/crates.io-index" 433checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 434dependencies = [ 435 "cc", 436 "libc", 437 "pkg-config", 438] 439 440[[package]] 441name = "cc" 442version = "1.0.79" 443source = "registry+https://github.com/rust-lang/crates.io-index" 444checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 445dependencies = [ 446 "jobserver", 447] 448 449[[package]] 450name = "cfg-if" 451version = "1.0.0" 452source = "registry+https://github.com/rust-lang/crates.io-index" 453checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 454 455[[package]] 456name = "chrono" 457version = "0.4.26" 458source = "registry+https://github.com/rust-lang/crates.io-index" 459checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" 460dependencies = [ 461 "android-tzdata", 462 "num-traits", 463] 464 465[[package]] 466name = "cipher" 467version = "0.4.4" 468source = "registry+https://github.com/rust-lang/crates.io-index" 469checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 470dependencies = [ 471 "crypto-common", 472 "inout", 473] 474 475[[package]] 476name = "clap" 477version = "3.2.25" 478source = "registry+https://github.com/rust-lang/crates.io-index" 479checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 480dependencies = [ 481 "atty", 482 "bitflags 1.3.2", 483 "clap_derive", 484 "clap_lex", 485 "indexmap 1.9.3", 486 "once_cell", 487 "strsim", 488 "termcolor", 489 "textwrap", 490] 491 492[[package]] 493name = "clap_complete" 494version = "3.2.5" 495source = "registry+https://github.com/rust-lang/crates.io-index" 496checksum = "3f7a2e0a962c45ce25afce14220bc24f9dade0a1787f185cecf96bfba7847cd8" 497dependencies = [ 498 "clap", 499] 500 501[[package]] 502name = "clap_derive" 503version = "3.2.25" 504source = "registry+https://github.com/rust-lang/crates.io-index" 505checksum = "ae6371b8bdc8b7d3959e9cf7b22d4435ef3e79e138688421ec654acf8c81b008" 506dependencies = [ 507 "heck", 508 "proc-macro-error", 509 "proc-macro2", 510 "quote", 511 "syn 1.0.109", 512] 513 514[[package]] 515name = "clap_generate" 516version = "3.0.3" 517source = "registry+https://github.com/rust-lang/crates.io-index" 518checksum = "8e1b28c4a802ac3628604fd267cac62aaea74dc61af3410db6b1c44c03b42599" 519dependencies = [ 520 "clap", 521 "clap_complete", 522] 523 524[[package]] 525name = "clap_lex" 526version = "0.2.4" 527source = "registry+https://github.com/rust-lang/crates.io-index" 528checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 529dependencies = [ 530 "os_str_bytes", 531] 532 533[[package]] 534name = "clicolors-control" 535version = "1.0.1" 536source = "registry+https://github.com/rust-lang/crates.io-index" 537checksum = "90082ee5dcdd64dc4e9e0d37fbf3ee325419e39c0092191e0393df65518f741e" 538dependencies = [ 539 "atty", 540 "lazy_static", 541 "libc", 542 "winapi", 543] 544 545[[package]] 546name = "codespan-reporting" 547version = "0.11.1" 548source = "registry+https://github.com/rust-lang/crates.io-index" 549checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 550dependencies = [ 551 "termcolor", 552 "unicode-width", 553] 554 555[[package]] 556name = "colorful" 557version = "0.2.2" 558source = "registry+https://github.com/rust-lang/crates.io-index" 559checksum = "97af0562545a7d7f3d9222fcf909963bec36dcb502afaacab98c6ffac8da47ce" 560 561[[package]] 562name = "combine" 563version = "4.6.6" 564source = "registry+https://github.com/rust-lang/crates.io-index" 565checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 566dependencies = [ 567 "bytes", 568 "memchr", 569] 570 571[[package]] 572name = "comma" 573version = "1.0.0" 574source = "registry+https://github.com/rust-lang/crates.io-index" 575checksum = "55b672471b4e9f9e95499ea597ff64941a309b2cdbffcc46f2cc5e2d971fd335" 576 577[[package]] 578name = "concurrent-queue" 579version = "2.1.0" 580source = "registry+https://github.com/rust-lang/crates.io-index" 581checksum = "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e" 582dependencies = [ 583 "crossbeam-utils", 584] 585 586[[package]] 587name = "console" 588version = "0.15.5" 589source = "registry+https://github.com/rust-lang/crates.io-index" 590checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60" 591dependencies = [ 592 "encode_unicode 0.3.6", 593 "lazy_static", 594 "libc", 595 "unicode-width", 596 "windows-sys 0.42.0", 597] 598 599[[package]] 600name = "constant_time_eq" 601version = "0.1.5" 602source = "registry+https://github.com/rust-lang/crates.io-index" 603checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 604 605[[package]] 606name = "constant_time_eq" 607version = "0.2.4" 608source = "registry+https://github.com/rust-lang/crates.io-index" 609checksum = "f3ad85c1f65dc7b37604eb0e89748faf0b9653065f2a8ef69f96a687ec1e9279" 610 611[[package]] 612name = "coolor" 613version = "0.5.0" 614source = "registry+https://github.com/rust-lang/crates.io-index" 615checksum = "af4d7a805ca0d92f8c61a31c809d4323fdaa939b0b440e544d21db7797c5aaad" 616dependencies = [ 617 "crossterm", 618] 619 620[[package]] 621name = "core-foundation" 622version = "0.9.3" 623source = "registry+https://github.com/rust-lang/crates.io-index" 624checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 625dependencies = [ 626 "core-foundation-sys", 627 "libc", 628] 629 630[[package]] 631name = "core-foundation-sys" 632version = "0.8.3" 633source = "registry+https://github.com/rust-lang/crates.io-index" 634checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 635 636[[package]] 637name = "cpufeatures" 638version = "0.2.5" 639source = "registry+https://github.com/rust-lang/crates.io-index" 640checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 641dependencies = [ 642 "libc", 643] 644 645[[package]] 646name = "crc16" 647version = "0.4.0" 648source = "registry+https://github.com/rust-lang/crates.io-index" 649checksum = "338089f42c427b86394a5ee60ff321da23a5c89c9d89514c829687b26359fcff" 650 651[[package]] 652name = "crc32fast" 653version = "1.3.2" 654source = "registry+https://github.com/rust-lang/crates.io-index" 655checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 656dependencies = [ 657 "cfg-if", 658] 659 660[[package]] 661name = "crossbeam" 662version = "0.8.2" 663source = "registry+https://github.com/rust-lang/crates.io-index" 664checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c" 665dependencies = [ 666 "cfg-if", 667 "crossbeam-channel", 668 "crossbeam-deque", 669 "crossbeam-epoch", 670 "crossbeam-queue", 671 "crossbeam-utils", 672] 673 674[[package]] 675name = "crossbeam-channel" 676version = "0.5.8" 677source = "registry+https://github.com/rust-lang/crates.io-index" 678checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 679dependencies = [ 680 "cfg-if", 681 "crossbeam-utils", 682] 683 684[[package]] 685name = "crossbeam-deque" 686version = "0.8.3" 687source = "registry+https://github.com/rust-lang/crates.io-index" 688checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 689dependencies = [ 690 "cfg-if", 691 "crossbeam-epoch", 692 "crossbeam-utils", 693] 694 695[[package]] 696name = "crossbeam-epoch" 697version = "0.9.14" 698source = "registry+https://github.com/rust-lang/crates.io-index" 699checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 700dependencies = [ 701 "autocfg", 702 "cfg-if", 703 "crossbeam-utils", 704 "memoffset 0.8.0", 705 "scopeguard", 706] 707 708[[package]] 709name = "crossbeam-queue" 710version = "0.3.8" 711source = "registry+https://github.com/rust-lang/crates.io-index" 712checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" 713dependencies = [ 714 "cfg-if", 715 "crossbeam-utils", 716] 717 718[[package]] 719name = "crossbeam-utils" 720version = "0.8.16" 721source = "registry+https://github.com/rust-lang/crates.io-index" 722checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 723dependencies = [ 724 "cfg-if", 725] 726 727[[package]] 728name = "crossterm" 729version = "0.23.2" 730source = "registry+https://github.com/rust-lang/crates.io-index" 731checksum = "a2102ea4f781910f8a5b98dd061f4c2023f479ce7bb1236330099ceb5a93cf17" 732dependencies = [ 733 "bitflags 1.3.2", 734 "crossterm_winapi", 735 "libc", 736 "mio", 737 "parking_lot", 738 "signal-hook", 739 "signal-hook-mio", 740 "winapi", 741] 742 743[[package]] 744name = "crossterm_winapi" 745version = "0.9.0" 746source = "registry+https://github.com/rust-lang/crates.io-index" 747checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c" 748dependencies = [ 749 "winapi", 750] 751 752[[package]] 753name = "crypto-common" 754version = "0.1.6" 755source = "registry+https://github.com/rust-lang/crates.io-index" 756checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 757dependencies = [ 758 "generic-array", 759 "typenum", 760] 761 762[[package]] 763name = "ctor" 764version = "0.1.26" 765source = "registry+https://github.com/rust-lang/crates.io-index" 766checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 767dependencies = [ 768 "quote", 769 "syn 1.0.109", 770] 771 772[[package]] 773name = "ctrlc" 774version = "3.4.0" 775source = "registry+https://github.com/rust-lang/crates.io-index" 776checksum = "2a011bbe2c35ce9c1f143b7af6f94f29a167beb4cd1d29e6740ce836f723120e" 777dependencies = [ 778 "nix", 779 "windows-sys 0.48.0", 780] 781 782[[package]] 783name = "diff" 784version = "0.1.13" 785source = "registry+https://github.com/rust-lang/crates.io-index" 786checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 787 788[[package]] 789name = "difflib" 790version = "0.4.0" 791source = "registry+https://github.com/rust-lang/crates.io-index" 792checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" 793 794[[package]] 795name = "digest" 796version = "0.10.6" 797source = "registry+https://github.com/rust-lang/crates.io-index" 798checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 799dependencies = [ 800 "block-buffer", 801 "crypto-common", 802 "subtle", 803] 804 805[[package]] 806name = "dirs" 807version = "4.0.0" 808source = "registry+https://github.com/rust-lang/crates.io-index" 809checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 810dependencies = [ 811 "dirs-sys 0.3.7", 812] 813 814[[package]] 815name = "dirs" 816version = "5.0.1" 817source = "registry+https://github.com/rust-lang/crates.io-index" 818checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" 819dependencies = [ 820 "dirs-sys 0.4.1", 821] 822 823[[package]] 824name = "dirs-next" 825version = "2.0.0" 826source = "registry+https://github.com/rust-lang/crates.io-index" 827checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 828dependencies = [ 829 "cfg-if", 830 "dirs-sys-next", 831] 832 833[[package]] 834name = "dirs-sys" 835version = "0.3.7" 836source = "registry+https://github.com/rust-lang/crates.io-index" 837checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 838dependencies = [ 839 "libc", 840 "redox_users", 841 "winapi", 842] 843 844[[package]] 845name = "dirs-sys" 846version = "0.4.1" 847source = "registry+https://github.com/rust-lang/crates.io-index" 848checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" 849dependencies = [ 850 "libc", 851 "option-ext", 852 "redox_users", 853 "windows-sys 0.48.0", 854] 855 856[[package]] 857name = "dirs-sys-next" 858version = "0.1.2" 859source = "registry+https://github.com/rust-lang/crates.io-index" 860checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 861dependencies = [ 862 "libc", 863 "redox_users", 864 "winapi", 865] 866 867[[package]] 868name = "dissimilar" 869version = "1.0.6" 870source = "registry+https://github.com/rust-lang/crates.io-index" 871checksum = "210ec60ae7d710bed8683e333e9d2855a8a56a3e9892b38bad3bb0d4d29b0d5e" 872 873[[package]] 874name = "doc-comment" 875version = "0.3.3" 876source = "registry+https://github.com/rust-lang/crates.io-index" 877checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 878 879[[package]] 880name = "downcast-rs" 881version = "1.2.0" 882source = "registry+https://github.com/rust-lang/crates.io-index" 883checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" 884 885[[package]] 886name = "edgedb-cli" 887version = "3.4.0" 888dependencies = [ 889 "anyhow", 890 "arc-swap", 891 "assert_cmd", 892 "async-listen", 893 "backtrace", 894 "base32", 895 "base64 0.13.1", 896 "bigdecimal", 897 "bitvec", 898 "blake2b_simd", 899 "blake3", 900 "bytes", 901 "chrono", 902 "clap", 903 "clap_complete", 904 "clicolors-control", 905 "codespan-reporting", 906 "colorful", 907 "combine", 908 "crossbeam-utils", 909 "crossterm", 910 "ctrlc", 911 "dirs 4.0.0", 912 "dissimilar", 913 "downcast-rs", 914 "edgedb-cli-derive", 915 "edgedb-derive", 916 "edgedb-errors", 917 "edgedb-protocol", 918 "edgedb-tokio", 919 "edgeql-parser", 920 "env_logger 0.10.0", 921 "fd-lock 3.0.12", 922 "fn-error-context", 923 "fs-err", 924 "futures-util", 925 "gethostname", 926 "hex", 927 "humantime 2.1.0", 928 "humantime-serde", 929 "immutable-chunkmap", 930 "indexmap 2.0.0-pre", 931 "indicatif", 932 "is-terminal", 933 "libc", 934 "libflate", 935 "log", 936 "minimad", 937 "native-tls", 938 "nix", 939 "notify", 940 "num-bigint", 941 "once_cell", 942 "open", 943 "openssl", 944 "os-release", 945 "pem 1.1.1", 946 "predicates 2.1.5", 947 "pretty_assertions", 948 "prettytable-rs", 949 "rand", 950 "regex", 951 "reqwest", 952 "rexpect", 953 "ring", 954 "rpassword", 955 "rustls", 956 "rustyline", 957 "scram", 958 "semver", 959 "serde", 960 "serde_json", 961 "serde_millis", 962 "serde_path_to_error", 963 "serde_str", 964 "sha1", 965 "sha2", 966 "shell-escape", 967 "shutdown_hooks", 968 "signal-hook", 969 "snafu", 970 "strsim", 971 "tar", 972 "tempfile", 973 "term", 974 "termcolor", 975 "termimad", 976 "terminal_size", 977 "test-case", 978 "textwrap", 979 "thiserror", 980 "tokio", 981 "tokio-stream", 982 "toml", 983 "unicode-segmentation", 984 "unicode-width", 985 "url", 986 "urlencoding", 987 "uuid", 988 "wait-timeout", 989 "warp", 990 "webpki", 991 "which", 992 "whoami", 993 "winapi", 994 "winreg", 995 "wslapi", 996 "zip", 997 "zstd 0.12.3+zstd.1.5.2", 998] 999 1000[[package]] 1001name = "edgedb-cli-derive" 1002version = "0.3.0" 1003dependencies = [ 1004 "clap", 1005 "clap_generate", 1006 "heck", 1007 "indexmap 1.9.3", 1008 "proc-macro-error", 1009 "proc-macro2", 1010 "quote", 1011 "syn 1.0.109", 1012 "termimad", 1013 "trybuild", 1014] 1015 1016[[package]] 1017name = "edgedb-derive" 1018version = "0.5.0" 1019source = "git+https://github.com/edgedb/edgedb-rust/#4f12f749bc88af8167f1929d883920869c5572fc" 1020dependencies = [ 1021 "proc-macro2", 1022 "quote", 1023 "syn 2.0.18", 1024 "trybuild", 1025] 1026 1027[[package]] 1028name = "edgedb-errors" 1029version = "0.4.0" 1030source = "git+https://github.com/edgedb/edgedb-rust/#4f12f749bc88af8167f1929d883920869c5572fc" 1031dependencies = [ 1032 "bytes", 1033] 1034 1035[[package]] 1036name = "edgedb-protocol" 1037version = "0.5.0" 1038source = "git+https://github.com/edgedb/edgedb-rust/#4f12f749bc88af8167f1929d883920869c5572fc" 1039dependencies = [ 1040 "bigdecimal", 1041 "bitflags 2.3.1", 1042 "bytes", 1043 "chrono", 1044 "edgedb-errors", 1045 "num-bigint", 1046 "num-traits", 1047 "snafu", 1048 "uuid", 1049] 1050 1051[[package]] 1052name = "edgedb-tokio" 1053version = "0.4.0" 1054source = "git+https://github.com/edgedb/edgedb-rust/#4f12f749bc88af8167f1929d883920869c5572fc" 1055dependencies = [ 1056 "anyhow", 1057 "arc-swap", 1058 "async-trait", 1059 "base16ct", 1060 "base64 0.21.2", 1061 "bytes", 1062 "crc16", 1063 "dirs 5.0.1", 1064 "edgedb-derive", 1065 "edgedb-errors", 1066 "edgedb-protocol", 1067 "log", 1068 "once_cell", 1069 "rand", 1070 "rustls", 1071 "rustls-native-certs", 1072 "rustls-pemfile", 1073 "scram", 1074 "serde", 1075 "serde_json", 1076 "sha1", 1077 "tls-api", 1078 "tls-api-not-tls", 1079 "tls-api-rustls", 1080 "tokio", 1081 "tokio-stream", 1082 "url", 1083 "webpki", 1084 "webpki-roots", 1085] 1086 1087[[package]] 1088name = "edgeql-parser" 1089version = "0.1.0" 1090source = "git+https://github.com/edgedb/edgedb#68033e0256a9c4f214ec1b2042817d8e235f56ec" 1091dependencies = [ 1092 "base32", 1093 "combine", 1094 "memchr", 1095 "sha2", 1096 "snafu", 1097 "thiserror", 1098 "unicode-width", 1099] 1100 1101[[package]] 1102name = "either" 1103version = "1.8.1" 1104source = "registry+https://github.com/rust-lang/crates.io-index" 1105checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 1106 1107[[package]] 1108name = "encode_unicode" 1109version = "0.3.6" 1110source = "registry+https://github.com/rust-lang/crates.io-index" 1111checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 1112 1113[[package]] 1114name = "encode_unicode" 1115version = "1.0.0" 1116source = "registry+https://github.com/rust-lang/crates.io-index" 1117checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" 1118 1119[[package]] 1120name = "encoding_rs" 1121version = "0.8.32" 1122source = "registry+https://github.com/rust-lang/crates.io-index" 1123checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 1124dependencies = [ 1125 "cfg-if", 1126] 1127 1128[[package]] 1129name = "endian-type" 1130version = "0.1.2" 1131source = "registry+https://github.com/rust-lang/crates.io-index" 1132checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d" 1133 1134[[package]] 1135name = "env_logger" 1136version = "0.5.13" 1137source = "registry+https://github.com/rust-lang/crates.io-index" 1138checksum = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38" 1139dependencies = [ 1140 "atty", 1141 "humantime 1.3.0", 1142 "log", 1143 "regex", 1144 "termcolor", 1145] 1146 1147[[package]] 1148name = "env_logger" 1149version = "0.10.0" 1150source = "registry+https://github.com/rust-lang/crates.io-index" 1151checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 1152dependencies = [ 1153 "humantime 2.1.0", 1154 "is-terminal", 1155 "log", 1156 "regex", 1157 "termcolor", 1158] 1159 1160[[package]] 1161name = "errno" 1162version = "0.3.1" 1163source = "registry+https://github.com/rust-lang/crates.io-index" 1164checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 1165dependencies = [ 1166 "errno-dragonfly", 1167 "libc", 1168 "windows-sys 0.48.0", 1169] 1170 1171[[package]] 1172name = "errno-dragonfly" 1173version = "0.1.2" 1174source = "registry+https://github.com/rust-lang/crates.io-index" 1175checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1176dependencies = [ 1177 "cc", 1178 "libc", 1179] 1180 1181[[package]] 1182name = "event-listener" 1183version = "2.5.3" 1184source = "registry+https://github.com/rust-lang/crates.io-index" 1185checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1186 1187[[package]] 1188name = "fastrand" 1189version = "1.9.0" 1190source = "registry+https://github.com/rust-lang/crates.io-index" 1191checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 1192dependencies = [ 1193 "instant", 1194] 1195 1196[[package]] 1197name = "fd-lock" 1198version = "2.0.0" 1199source = "registry+https://github.com/rust-lang/crates.io-index" 1200checksum = "0010f02effd88c702318c5dde0463206be67495d0b4d906ba7c0a8f166cc7f06" 1201dependencies = [ 1202 "libc", 1203 "winapi", 1204] 1205 1206[[package]] 1207name = "fd-lock" 1208version = "3.0.12" 1209source = "registry+https://github.com/rust-lang/crates.io-index" 1210checksum = "39ae6b3d9530211fb3b12a95374b8b0823be812f53d09e18c5675c0146b09642" 1211dependencies = [ 1212 "cfg-if", 1213 "rustix", 1214 "windows-sys 0.48.0", 1215] 1216 1217[[package]] 1218name = "filetime" 1219version = "0.2.20" 1220source = "registry+https://github.com/rust-lang/crates.io-index" 1221checksum = "8a3de6e8d11b22ff9edc6d916f890800597d60f8b2da1caf2955c274638d6412" 1222dependencies = [ 1223 "cfg-if", 1224 "libc", 1225 "redox_syscall 0.2.16", 1226 "windows-sys 0.45.0", 1227] 1228 1229[[package]] 1230name = "flate2" 1231version = "1.0.25" 1232source = "registry+https://github.com/rust-lang/crates.io-index" 1233checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 1234dependencies = [ 1235 "crc32fast", 1236 "miniz_oxide", 1237] 1238 1239[[package]] 1240name = "float-cmp" 1241version = "0.9.0" 1242source = "registry+https://github.com/rust-lang/crates.io-index" 1243checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" 1244dependencies = [ 1245 "num-traits", 1246] 1247 1248[[package]] 1249name = "fn-error-context" 1250version = "0.2.1" 1251source = "registry+https://github.com/rust-lang/crates.io-index" 1252checksum = "2cd66269887534af4b0c3e3337404591daa8dc8b9b2b3db71f9523beb4bafb41" 1253dependencies = [ 1254 "proc-macro2", 1255 "quote", 1256 "syn 2.0.18", 1257] 1258 1259[[package]] 1260name = "fnv" 1261version = "1.0.7" 1262source = "registry+https://github.com/rust-lang/crates.io-index" 1263checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1264 1265[[package]] 1266name = "foreign-types" 1267version = "0.3.2" 1268source = "registry+https://github.com/rust-lang/crates.io-index" 1269checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1270dependencies = [ 1271 "foreign-types-shared", 1272] 1273 1274[[package]] 1275name = "foreign-types-shared" 1276version = "0.1.1" 1277source = "registry+https://github.com/rust-lang/crates.io-index" 1278checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1279 1280[[package]] 1281name = "form_urlencoded" 1282version = "1.1.0" 1283source = "registry+https://github.com/rust-lang/crates.io-index" 1284checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 1285dependencies = [ 1286 "percent-encoding", 1287] 1288 1289[[package]] 1290name = "fs-err" 1291version = "2.9.0" 1292source = "registry+https://github.com/rust-lang/crates.io-index" 1293checksum = "0845fa252299212f0389d64ba26f34fa32cfe41588355f21ed507c59a0f64541" 1294 1295[[package]] 1296name = "fsevent-sys" 1297version = "4.1.0" 1298source = "registry+https://github.com/rust-lang/crates.io-index" 1299checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" 1300dependencies = [ 1301 "libc", 1302] 1303 1304[[package]] 1305name = "funty" 1306version = "2.0.0" 1307source = "registry+https://github.com/rust-lang/crates.io-index" 1308checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 1309 1310[[package]] 1311name = "futures-channel" 1312version = "0.3.26" 1313source = "registry+https://github.com/rust-lang/crates.io-index" 1314checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5" 1315dependencies = [ 1316 "futures-core", 1317 "futures-sink", 1318] 1319 1320[[package]] 1321name = "futures-core" 1322version = "0.3.26" 1323source = "registry+https://github.com/rust-lang/crates.io-index" 1324checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608" 1325 1326[[package]] 1327name = "futures-io" 1328version = "0.3.26" 1329source = "registry+https://github.com/rust-lang/crates.io-index" 1330checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531" 1331 1332[[package]] 1333name = "futures-lite" 1334version = "1.12.0" 1335source = "registry+https://github.com/rust-lang/crates.io-index" 1336checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" 1337dependencies = [ 1338 "fastrand", 1339 "futures-core", 1340 "futures-io", 1341 "memchr", 1342 "parking", 1343 "pin-project-lite", 1344 "waker-fn", 1345] 1346 1347[[package]] 1348name = "futures-macro" 1349version = "0.3.26" 1350source = "registry+https://github.com/rust-lang/crates.io-index" 1351checksum = "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70" 1352dependencies = [ 1353 "proc-macro2", 1354 "quote", 1355 "syn 1.0.109", 1356] 1357 1358[[package]] 1359name = "futures-sink" 1360version = "0.3.26" 1361source = "registry+https://github.com/rust-lang/crates.io-index" 1362checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364" 1363 1364[[package]] 1365name = "futures-task" 1366version = "0.3.26" 1367source = "registry+https://github.com/rust-lang/crates.io-index" 1368checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366" 1369 1370[[package]] 1371name = "futures-util" 1372version = "0.3.26" 1373source = "registry+https://github.com/rust-lang/crates.io-index" 1374checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1" 1375dependencies = [ 1376 "futures-core", 1377 "futures-macro", 1378 "futures-sink", 1379 "futures-task", 1380 "pin-project-lite", 1381 "pin-utils", 1382 "slab", 1383] 1384 1385[[package]] 1386name = "generic-array" 1387version = "0.14.6" 1388source = "registry+https://github.com/rust-lang/crates.io-index" 1389checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 1390dependencies = [ 1391 "typenum", 1392 "version_check", 1393] 1394 1395[[package]] 1396name = "gethostname" 1397version = "0.4.3" 1398source = "registry+https://github.com/rust-lang/crates.io-index" 1399checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818" 1400dependencies = [ 1401 "libc", 1402 "windows-targets 0.48.0", 1403] 1404 1405[[package]] 1406name = "getrandom" 1407version = "0.2.8" 1408source = "registry+https://github.com/rust-lang/crates.io-index" 1409checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 1410dependencies = [ 1411 "cfg-if", 1412 "libc", 1413 "wasi", 1414] 1415 1416[[package]] 1417name = "gimli" 1418version = "0.27.2" 1419source = "registry+https://github.com/rust-lang/crates.io-index" 1420checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" 1421 1422[[package]] 1423name = "glob" 1424version = "0.3.1" 1425source = "registry+https://github.com/rust-lang/crates.io-index" 1426checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1427 1428[[package]] 1429name = "gloo-timers" 1430version = "0.2.6" 1431source = "registry+https://github.com/rust-lang/crates.io-index" 1432checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" 1433dependencies = [ 1434 "futures-channel", 1435 "futures-core", 1436 "js-sys", 1437 "wasm-bindgen", 1438] 1439 1440[[package]] 1441name = "h2" 1442version = "0.3.19" 1443source = "registry+https://github.com/rust-lang/crates.io-index" 1444checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782" 1445dependencies = [ 1446 "bytes", 1447 "fnv", 1448 "futures-core", 1449 "futures-sink", 1450 "futures-util", 1451 "http", 1452 "indexmap 1.9.3", 1453 "slab", 1454 "tokio", 1455 "tokio-util", 1456 "tracing", 1457] 1458 1459[[package]] 1460name = "hashbrown" 1461version = "0.12.3" 1462source = "registry+https://github.com/rust-lang/crates.io-index" 1463checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1464dependencies = [ 1465 "ahash", 1466] 1467 1468[[package]] 1469name = "hashbrown" 1470version = "0.13.2" 1471source = "registry+https://github.com/rust-lang/crates.io-index" 1472checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 1473 1474[[package]] 1475name = "headers" 1476version = "0.3.8" 1477source = "registry+https://github.com/rust-lang/crates.io-index" 1478checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" 1479dependencies = [ 1480 "base64 0.13.1", 1481 "bitflags 1.3.2", 1482 "bytes", 1483 "headers-core", 1484 "http", 1485 "httpdate", 1486 "mime", 1487 "sha1", 1488] 1489 1490[[package]] 1491name = "headers-core" 1492version = "0.2.0" 1493source = "registry+https://github.com/rust-lang/crates.io-index" 1494checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" 1495dependencies = [ 1496 "http", 1497] 1498 1499[[package]] 1500name = "heck" 1501version = "0.4.1" 1502source = "registry+https://github.com/rust-lang/crates.io-index" 1503checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1504 1505[[package]] 1506name = "hermit-abi" 1507version = "0.1.19" 1508source = "registry+https://github.com/rust-lang/crates.io-index" 1509checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1510dependencies = [ 1511 "libc", 1512] 1513 1514[[package]] 1515name = "hermit-abi" 1516version = "0.2.6" 1517source = "registry+https://github.com/rust-lang/crates.io-index" 1518checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 1519dependencies = [ 1520 "libc", 1521] 1522 1523[[package]] 1524name = "hermit-abi" 1525version = "0.3.1" 1526source = "registry+https://github.com/rust-lang/crates.io-index" 1527checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 1528 1529[[package]] 1530name = "hex" 1531version = "0.4.3" 1532source = "registry+https://github.com/rust-lang/crates.io-index" 1533checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1534dependencies = [ 1535 "serde", 1536] 1537 1538[[package]] 1539name = "hmac" 1540version = "0.12.1" 1541source = "registry+https://github.com/rust-lang/crates.io-index" 1542checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1543dependencies = [ 1544 "digest", 1545] 1546 1547[[package]] 1548name = "http" 1549version = "0.2.9" 1550source = "registry+https://github.com/rust-lang/crates.io-index" 1551checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1552dependencies = [ 1553 "bytes", 1554 "fnv", 1555 "itoa", 1556] 1557 1558[[package]] 1559name = "http-body" 1560version = "0.4.5" 1561source = "registry+https://github.com/rust-lang/crates.io-index" 1562checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1563dependencies = [ 1564 "bytes", 1565 "http", 1566 "pin-project-lite", 1567] 1568 1569[[package]] 1570name = "httparse" 1571version = "1.8.0" 1572source = "registry+https://github.com/rust-lang/crates.io-index" 1573checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1574 1575[[package]] 1576name = "httpdate" 1577version = "1.0.2" 1578source = "registry+https://github.com/rust-lang/crates.io-index" 1579checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 1580 1581[[package]] 1582name = "humantime" 1583version = "1.3.0" 1584source = "registry+https://github.com/rust-lang/crates.io-index" 1585checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" 1586dependencies = [ 1587 "quick-error", 1588] 1589 1590[[package]] 1591name = "humantime" 1592version = "2.1.0" 1593source = "registry+https://github.com/rust-lang/crates.io-index" 1594checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1595 1596[[package]] 1597name = "humantime-serde" 1598version = "1.1.1" 1599source = "registry+https://github.com/rust-lang/crates.io-index" 1600checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c" 1601dependencies = [ 1602 "humantime 2.1.0", 1603 "serde", 1604] 1605 1606[[package]] 1607name = "hyper" 1608version = "0.14.24" 1609source = "registry+https://github.com/rust-lang/crates.io-index" 1610checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c" 1611dependencies = [ 1612 "bytes", 1613 "futures-channel", 1614 "futures-core", 1615 "futures-util", 1616 "h2", 1617 "http", 1618 "http-body", 1619 "httparse", 1620 "httpdate", 1621 "itoa", 1622 "pin-project-lite", 1623 "socket2", 1624 "tokio", 1625 "tower-service", 1626 "tracing", 1627 "want", 1628] 1629 1630[[package]] 1631name = "hyper-tls" 1632version = "0.5.0" 1633source = "registry+https://github.com/rust-lang/crates.io-index" 1634checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 1635dependencies = [ 1636 "bytes", 1637 "hyper", 1638 "native-tls", 1639 "tokio", 1640 "tokio-native-tls", 1641] 1642 1643[[package]] 1644name = "idna" 1645version = "0.3.0" 1646source = "registry+https://github.com/rust-lang/crates.io-index" 1647checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 1648dependencies = [ 1649 "unicode-bidi", 1650 "unicode-normalization", 1651] 1652 1653[[package]] 1654name = "immutable-chunkmap" 1655version = "1.0.5" 1656source = "registry+https://github.com/rust-lang/crates.io-index" 1657checksum = "7617eb072b88069788fa9d5cadae34faebca64e5325ec5deaa2b4c96510f9e8c" 1658dependencies = [ 1659 "arrayvec", 1660 "packed_struct", 1661 "packed_struct_codegen", 1662] 1663 1664[[package]] 1665name = "indexmap" 1666version = "1.9.3" 1667source = "registry+https://github.com/rust-lang/crates.io-index" 1668checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1669dependencies = [ 1670 "autocfg", 1671 "hashbrown 0.12.3", 1672] 1673 1674[[package]] 1675name = "indexmap" 1676version = "2.0.0-pre" 1677source = "git+https://github.com/bluss/indexmap?rev=11ac52c#11ac52c3c828a42d69c5fb3248198511836bfd2f" 1678dependencies = [ 1679 "hashbrown 0.13.2", 1680 "serde", 1681] 1682 1683[[package]] 1684name = "indicatif" 1685version = "0.17.5" 1686source = "registry+https://github.com/rust-lang/crates.io-index" 1687checksum = "8ff8cc23a7393a397ed1d7f56e6365cba772aba9f9912ab968b03043c395d057" 1688dependencies = [ 1689 "console", 1690 "instant", 1691 "number_prefix", 1692 "portable-atomic", 1693 "unicode-width", 1694] 1695 1696[[package]] 1697name = "inotify" 1698version = "0.9.6" 1699source = "registry+https://github.com/rust-lang/crates.io-index" 1700checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" 1701dependencies = [ 1702 "bitflags 1.3.2", 1703 "inotify-sys", 1704 "libc", 1705] 1706 1707[[package]] 1708name = "inotify-sys" 1709version = "0.1.5" 1710source = "registry+https://github.com/rust-lang/crates.io-index" 1711checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" 1712dependencies = [ 1713 "libc", 1714] 1715 1716[[package]] 1717name = "inout" 1718version = "0.1.3" 1719source = "registry+https://github.com/rust-lang/crates.io-index" 1720checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 1721dependencies = [ 1722 "generic-array", 1723] 1724 1725[[package]] 1726name = "instant" 1727version = "0.1.12" 1728source = "registry+https://github.com/rust-lang/crates.io-index" 1729checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1730dependencies = [ 1731 "cfg-if", 1732] 1733 1734[[package]] 1735name = "io-lifetimes" 1736version = "1.0.6" 1737source = "registry+https://github.com/rust-lang/crates.io-index" 1738checksum = "cfa919a82ea574332e2de6e74b4c36e74d41982b335080fa59d4ef31be20fdf3" 1739dependencies = [ 1740 "libc", 1741 "windows-sys 0.45.0", 1742] 1743 1744[[package]] 1745name = "ipnet" 1746version = "2.7.1" 1747source = "registry+https://github.com/rust-lang/crates.io-index" 1748checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146" 1749 1750[[package]] 1751name = "is-terminal" 1752version = "0.4.7" 1753source = "registry+https://github.com/rust-lang/crates.io-index" 1754checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" 1755dependencies = [ 1756 "hermit-abi 0.3.1", 1757 "io-lifetimes", 1758 "rustix", 1759 "windows-sys 0.48.0", 1760] 1761 1762[[package]] 1763name = "itertools" 1764version = "0.10.5" 1765source = "registry+https://github.com/rust-lang/crates.io-index" 1766checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1767dependencies = [ 1768 "either", 1769] 1770 1771[[package]] 1772name = "itoa" 1773version = "1.0.6" 1774source = "registry+https://github.com/rust-lang/crates.io-index" 1775checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 1776 1777[[package]] 1778name = "jobserver" 1779version = "0.1.26" 1780source = "registry+https://github.com/rust-lang/crates.io-index" 1781checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 1782dependencies = [ 1783 "libc", 1784] 1785 1786[[package]] 1787name = "js-sys" 1788version = "0.3.61" 1789source = "registry+https://github.com/rust-lang/crates.io-index" 1790checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730" 1791dependencies = [ 1792 "wasm-bindgen", 1793] 1794 1795[[package]] 1796name = "kqueue" 1797version = "1.0.7" 1798source = "registry+https://github.com/rust-lang/crates.io-index" 1799checksum = "2c8fc60ba15bf51257aa9807a48a61013db043fcf3a78cb0d916e8e396dcad98" 1800dependencies = [ 1801 "kqueue-sys", 1802 "libc", 1803] 1804 1805[[package]] 1806name = "kqueue-sys" 1807version = "1.0.3" 1808source = "registry+https://github.com/rust-lang/crates.io-index" 1809checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587" 1810dependencies = [ 1811 "bitflags 1.3.2", 1812 "libc", 1813] 1814 1815[[package]] 1816name = "kv-log-macro" 1817version = "1.0.7" 1818source = "registry+https://github.com/rust-lang/crates.io-index" 1819checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" 1820dependencies = [ 1821 "log", 1822] 1823 1824[[package]] 1825name = "lazy_static" 1826version = "1.4.0" 1827source = "registry+https://github.com/rust-lang/crates.io-index" 1828checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1829 1830[[package]] 1831name = "libc" 1832version = "0.2.146" 1833source = "registry+https://github.com/rust-lang/crates.io-index" 1834checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" 1835 1836[[package]] 1837name = "libflate" 1838version = "1.4.0" 1839source = "registry+https://github.com/rust-lang/crates.io-index" 1840checksum = "5ff4ae71b685bbad2f2f391fe74f6b7659a34871c08b210fdc039e43bee07d18" 1841dependencies = [ 1842 "adler32", 1843 "crc32fast", 1844 "libflate_lz77", 1845] 1846 1847[[package]] 1848name = "libflate_lz77" 1849version = "1.2.0" 1850source = "registry+https://github.com/rust-lang/crates.io-index" 1851checksum = "a52d3a8bfc85f250440e4424db7d857e241a3aebbbe301f3eb606ab15c39acbf" 1852dependencies = [ 1853 "rle-decode-fast", 1854] 1855 1856[[package]] 1857name = "linux-raw-sys" 1858version = "0.3.8" 1859source = "registry+https://github.com/rust-lang/crates.io-index" 1860checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 1861 1862[[package]] 1863name = "lock_api" 1864version = "0.4.9" 1865source = "registry+https://github.com/rust-lang/crates.io-index" 1866checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1867dependencies = [ 1868 "autocfg", 1869 "scopeguard", 1870] 1871 1872[[package]] 1873name = "log" 1874version = "0.4.19" 1875source = "registry+https://github.com/rust-lang/crates.io-index" 1876checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 1877dependencies = [ 1878 "value-bag", 1879] 1880 1881[[package]] 1882name = "memchr" 1883version = "2.5.0" 1884source = "registry+https://github.com/rust-lang/crates.io-index" 1885checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1886 1887[[package]] 1888name = "memoffset" 1889version = "0.7.1" 1890source = "registry+https://github.com/rust-lang/crates.io-index" 1891checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 1892dependencies = [ 1893 "autocfg", 1894] 1895 1896[[package]] 1897name = "memoffset" 1898version = "0.8.0" 1899source = "registry+https://github.com/rust-lang/crates.io-index" 1900checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 1901dependencies = [ 1902 "autocfg", 1903] 1904 1905[[package]] 1906name = "mime" 1907version = "0.3.16" 1908source = "registry+https://github.com/rust-lang/crates.io-index" 1909checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 1910 1911[[package]] 1912name = "mime_guess" 1913version = "2.0.4" 1914source = "registry+https://github.com/rust-lang/crates.io-index" 1915checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 1916dependencies = [ 1917 "mime", 1918 "unicase", 1919] 1920 1921[[package]] 1922name = "minidl" 1923version = "0.1.5" 1924source = "registry+https://github.com/rust-lang/crates.io-index" 1925checksum = "87d3d8666e5ed22230c0096edcccf7097905b1e2975869e1b9fe5df40d26d801" 1926 1927[[package]] 1928name = "minimad" 1929version = "0.9.1" 1930source = "registry+https://github.com/rust-lang/crates.io-index" 1931checksum = "277639f0198568f70f8fe4ab88a52a67c96bca12f27ba5c17a76acdcb8b45834" 1932dependencies = [ 1933 "once_cell", 1934] 1935 1936[[package]] 1937name = "miniz_oxide" 1938version = "0.6.2" 1939source = "registry+https://github.com/rust-lang/crates.io-index" 1940checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 1941dependencies = [ 1942 "adler", 1943] 1944 1945[[package]] 1946name = "mio" 1947version = "0.8.6" 1948source = "registry+https://github.com/rust-lang/crates.io-index" 1949checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 1950dependencies = [ 1951 "libc", 1952 "log", 1953 "wasi", 1954 "windows-sys 0.45.0", 1955] 1956 1957[[package]] 1958name = "native-tls" 1959version = "0.2.11" 1960source = "registry+https://github.com/rust-lang/crates.io-index" 1961checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 1962dependencies = [ 1963 "lazy_static", 1964 "libc", 1965 "log", 1966 "openssl", 1967 "openssl-probe", 1968 "openssl-sys", 1969 "schannel", 1970 "security-framework", 1971 "security-framework-sys", 1972 "tempfile", 1973] 1974 1975[[package]] 1976name = "nibble_vec" 1977version = "0.1.0" 1978source = "registry+https://github.com/rust-lang/crates.io-index" 1979checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43" 1980dependencies = [ 1981 "smallvec", 1982] 1983 1984[[package]] 1985name = "nix" 1986version = "0.26.2" 1987source = "registry+https://github.com/rust-lang/crates.io-index" 1988checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" 1989dependencies = [ 1990 "bitflags 1.3.2", 1991 "cfg-if", 1992 "libc", 1993 "memoffset 0.7.1", 1994 "pin-utils", 1995 "static_assertions", 1996] 1997 1998[[package]] 1999name = "normalize-line-endings" 2000version = "0.3.0" 2001source = "registry+https://github.com/rust-lang/crates.io-index" 2002checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" 2003 2004[[package]] 2005name = "notify" 2006version = "5.2.0" 2007source = "registry+https://github.com/rust-lang/crates.io-index" 2008checksum = "729f63e1ca555a43fe3efa4f3efdf4801c479da85b432242a7b726f353c88486" 2009dependencies = [ 2010 "bitflags 1.3.2", 2011 "crossbeam-channel", 2012 "filetime", 2013 "fsevent-sys", 2014 "inotify", 2015 "kqueue", 2016 "libc", 2017 "mio", 2018 "walkdir", 2019 "windows-sys 0.45.0", 2020] 2021 2022[[package]] 2023name = "num-bigint" 2024version = "0.4.3" 2025source = "registry+https://github.com/rust-lang/crates.io-index" 2026checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 2027dependencies = [ 2028 "autocfg", 2029 "num-integer", 2030 "num-traits", 2031] 2032 2033[[package]] 2034name = "num-integer" 2035version = "0.1.45" 2036source = "registry+https://github.com/rust-lang/crates.io-index" 2037checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 2038dependencies = [ 2039 "autocfg", 2040 "num-traits", 2041] 2042 2043[[package]] 2044name = "num-traits" 2045version = "0.2.15" 2046source = "registry+https://github.com/rust-lang/crates.io-index" 2047checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 2048dependencies = [ 2049 "autocfg", 2050] 2051 2052[[package]] 2053name = "num_cpus" 2054version = "1.15.0" 2055source = "registry+https://github.com/rust-lang/crates.io-index" 2056checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 2057dependencies = [ 2058 "hermit-abi 0.2.6", 2059 "libc", 2060] 2061 2062[[package]] 2063name = "number_prefix" 2064version = "0.4.0" 2065source = "registry+https://github.com/rust-lang/crates.io-index" 2066checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 2067 2068[[package]] 2069name = "object" 2070version = "0.30.3" 2071source = "registry+https://github.com/rust-lang/crates.io-index" 2072checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439" 2073dependencies = [ 2074 "memchr", 2075] 2076 2077[[package]] 2078name = "once_cell" 2079version = "1.18.0" 2080source = "registry+https://github.com/rust-lang/crates.io-index" 2081checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 2082 2083[[package]] 2084name = "open" 2085version = "3.2.0" 2086source = "registry+https://github.com/rust-lang/crates.io-index" 2087checksum = "2078c0039e6a54a0c42c28faa984e115fb4c2d5bf2208f77d1961002df8576f8" 2088dependencies = [ 2089 "pathdiff", 2090 "windows-sys 0.42.0", 2091] 2092 2093[[package]] 2094name = "openssl" 2095version = "0.10.54" 2096source = "registry+https://github.com/rust-lang/crates.io-index" 2097checksum = "69b3f656a17a6cbc115b5c7a40c616947d213ba182135b014d6051b73ab6f019" 2098dependencies = [ 2099 "bitflags 1.3.2", 2100 "cfg-if", 2101 "foreign-types", 2102 "libc", 2103 "once_cell", 2104 "openssl-macros", 2105 "openssl-sys", 2106] 2107 2108[[package]] 2109name = "openssl-macros" 2110version = "0.1.0" 2111source = "registry+https://github.com/rust-lang/crates.io-index" 2112checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 2113dependencies = [ 2114 "proc-macro2", 2115 "quote", 2116 "syn 1.0.109", 2117] 2118 2119[[package]] 2120name = "openssl-probe" 2121version = "0.1.5" 2122source = "registry+https://github.com/rust-lang/crates.io-index" 2123checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 2124 2125[[package]] 2126name = "openssl-src" 2127version = "111.25.1+1.1.1t" 2128source = "registry+https://github.com/rust-lang/crates.io-index" 2129checksum = "1ef9a9cc6ea7d9d5e7c4a913dc4b48d0e359eddf01af1dfec96ba7064b4aba10" 2130dependencies = [ 2131 "cc", 2132] 2133 2134[[package]] 2135name = "openssl-sys" 2136version = "0.9.88" 2137source = "registry+https://github.com/rust-lang/crates.io-index" 2138checksum = "c2ce0f250f34a308dcfdbb351f511359857d4ed2134ba715a4eadd46e1ffd617" 2139dependencies = [ 2140 "cc", 2141 "libc", 2142 "openssl-src", 2143 "pkg-config", 2144 "vcpkg", 2145] 2146 2147[[package]] 2148name = "option-ext" 2149version = "0.2.0" 2150source = "registry+https://github.com/rust-lang/crates.io-index" 2151checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" 2152 2153[[package]] 2154name = "os-release" 2155version = "0.1.0" 2156source = "registry+https://github.com/rust-lang/crates.io-index" 2157checksum = "82f29ae2f71b53ec19cc23385f8e4f3d90975195aa3d09171ba3bef7159bec27" 2158dependencies = [ 2159 "lazy_static", 2160] 2161 2162[[package]] 2163name = "os_str_bytes" 2164version = "6.4.1" 2165source = "registry+https://github.com/rust-lang/crates.io-index" 2166checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" 2167 2168[[package]] 2169name = "output_vt100" 2170version = "0.1.3" 2171source = "registry+https://github.com/rust-lang/crates.io-index" 2172checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66" 2173dependencies = [ 2174 "winapi", 2175] 2176 2177[[package]] 2178name = "packed_struct" 2179version = "0.10.1" 2180source = "registry+https://github.com/rust-lang/crates.io-index" 2181checksum = "36b29691432cc9eff8b282278473b63df73bea49bc3ec5e67f31a3ae9c3ec190" 2182dependencies = [ 2183 "bitvec", 2184 "packed_struct_codegen", 2185] 2186 2187[[package]] 2188name = "packed_struct_codegen" 2189version = "0.10.1" 2190source = "registry+https://github.com/rust-lang/crates.io-index" 2191checksum = "9cd6706dfe50d53e0f6aa09e12c034c44faacd23e966ae5a209e8bdb8f179f98" 2192dependencies = [ 2193 "proc-macro2", 2194 "quote", 2195 "syn 1.0.109", 2196] 2197 2198[[package]] 2199name = "parking" 2200version = "2.0.0" 2201source = "registry+https://github.com/rust-lang/crates.io-index" 2202checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" 2203 2204[[package]] 2205name = "parking_lot" 2206version = "0.12.1" 2207source = "registry+https://github.com/rust-lang/crates.io-index" 2208checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 2209dependencies = [ 2210 "lock_api", 2211 "parking_lot_core", 2212] 2213 2214[[package]] 2215name = "parking_lot_core" 2216version = "0.9.7" 2217source = "registry+https://github.com/rust-lang/crates.io-index" 2218checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 2219dependencies = [ 2220 "cfg-if", 2221 "libc", 2222 "redox_syscall 0.2.16", 2223 "smallvec", 2224 "windows-sys 0.45.0", 2225] 2226 2227[[package]] 2228name = "password-hash" 2229version = "0.4.2" 2230source = "registry+https://github.com/rust-lang/crates.io-index" 2231checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" 2232dependencies = [ 2233 "base64ct", 2234 "rand_core", 2235 "subtle", 2236] 2237 2238[[package]] 2239name = "pathdiff" 2240version = "0.2.1" 2241source = "registry+https://github.com/rust-lang/crates.io-index" 2242checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 2243 2244[[package]] 2245name = "pbkdf2" 2246version = "0.11.0" 2247source = "registry+https://github.com/rust-lang/crates.io-index" 2248checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 2249dependencies = [ 2250 "digest", 2251 "hmac", 2252 "password-hash", 2253 "sha2", 2254] 2255 2256[[package]] 2257name = "pem" 2258version = "0.8.3" 2259source = "registry+https://github.com/rust-lang/crates.io-index" 2260checksum = "fd56cbd21fea48d0c440b41cd69c589faacade08c992d9a54e471b79d0fd13eb" 2261dependencies = [ 2262 "base64 0.13.1", 2263 "once_cell", 2264 "regex", 2265] 2266 2267[[package]] 2268name = "pem" 2269version = "1.1.1" 2270source = "registry+https://github.com/rust-lang/crates.io-index" 2271checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" 2272dependencies = [ 2273 "base64 0.13.1", 2274] 2275 2276[[package]] 2277name = "percent-encoding" 2278version = "2.2.0" 2279source = "registry+https://github.com/rust-lang/crates.io-index" 2280checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 2281 2282[[package]] 2283name = "pin-project" 2284version = "1.0.12" 2285source = "registry+https://github.com/rust-lang/crates.io-index" 2286checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 2287dependencies = [ 2288 "pin-project-internal", 2289] 2290 2291[[package]] 2292name = "pin-project-internal" 2293version = "1.0.12" 2294source = "registry+https://github.com/rust-lang/crates.io-index" 2295checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 2296dependencies = [ 2297 "proc-macro2", 2298 "quote", 2299 "syn 1.0.109", 2300] 2301 2302[[package]] 2303name = "pin-project-lite" 2304version = "0.2.9" 2305source = "registry+https://github.com/rust-lang/crates.io-index" 2306checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 2307 2308[[package]] 2309name = "pin-utils" 2310version = "0.1.0" 2311source = "registry+https://github.com/rust-lang/crates.io-index" 2312checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2313 2314[[package]] 2315name = "pkg-config" 2316version = "0.3.26" 2317source = "registry+https://github.com/rust-lang/crates.io-index" 2318checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 2319 2320[[package]] 2321name = "polling" 2322version = "2.6.0" 2323source = "registry+https://github.com/rust-lang/crates.io-index" 2324checksum = "7e1f879b2998099c2d69ab9605d145d5b661195627eccc680002c4918a7fb6fa" 2325dependencies = [ 2326 "autocfg", 2327 "bitflags 1.3.2", 2328 "cfg-if", 2329 "concurrent-queue", 2330 "libc", 2331 "log", 2332 "pin-project-lite", 2333 "windows-sys 0.45.0", 2334] 2335 2336[[package]] 2337name = "portable-atomic" 2338version = "1.3.3" 2339source = "registry+https://github.com/rust-lang/crates.io-index" 2340checksum = "767eb9f07d4a5ebcb39bbf2d452058a93c011373abf6832e24194a1c3f004794" 2341 2342[[package]] 2343name = "ppv-lite86" 2344version = "0.2.17" 2345source = "registry+https://github.com/rust-lang/crates.io-index" 2346checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2347 2348[[package]] 2349name = "predicates" 2350version = "2.1.5" 2351source = "registry+https://github.com/rust-lang/crates.io-index" 2352checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd" 2353dependencies = [ 2354 "difflib", 2355 "float-cmp", 2356 "itertools", 2357 "normalize-line-endings", 2358 "predicates-core", 2359 "regex", 2360] 2361 2362[[package]] 2363name = "predicates" 2364version = "3.0.3" 2365source = "registry+https://github.com/rust-lang/crates.io-index" 2366checksum = "09963355b9f467184c04017ced4a2ba2d75cbcb4e7462690d388233253d4b1a9" 2367dependencies = [ 2368 "anstyle", 2369 "difflib", 2370 "itertools", 2371 "predicates-core", 2372] 2373 2374[[package]] 2375name = "predicates-core" 2376version = "1.0.6" 2377source = "registry+https://github.com/rust-lang/crates.io-index" 2378checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" 2379 2380[[package]] 2381name = "predicates-tree" 2382version = "1.0.7" 2383source = "registry+https://github.com/rust-lang/crates.io-index" 2384checksum = "54ff541861505aabf6ea722d2131ee980b8276e10a1297b94e896dd8b621850d" 2385dependencies = [ 2386 "predicates-core", 2387 "termtree", 2388] 2389 2390[[package]] 2391name = "pretty_assertions" 2392version = "1.3.0" 2393source = "registry+https://github.com/rust-lang/crates.io-index" 2394checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" 2395dependencies = [ 2396 "ctor", 2397 "diff", 2398 "output_vt100", 2399 "yansi", 2400] 2401 2402[[package]] 2403name = "prettytable-rs" 2404version = "0.10.0" 2405source = "registry+https://github.com/rust-lang/crates.io-index" 2406checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a" 2407dependencies = [ 2408 "encode_unicode 1.0.0", 2409 "is-terminal", 2410 "lazy_static", 2411 "term", 2412 "unicode-width", 2413] 2414 2415[[package]] 2416name = "proc-macro-error" 2417version = "1.0.4" 2418source = "registry+https://github.com/rust-lang/crates.io-index" 2419checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2420dependencies = [ 2421 "proc-macro-error-attr", 2422 "proc-macro2", 2423 "quote", 2424 "syn 1.0.109", 2425 "version_check", 2426] 2427 2428[[package]] 2429name = "proc-macro-error-attr" 2430version = "1.0.4" 2431source = "registry+https://github.com/rust-lang/crates.io-index" 2432checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2433dependencies = [ 2434 "proc-macro2", 2435 "quote", 2436 "version_check", 2437] 2438 2439[[package]] 2440name = "proc-macro-hack" 2441version = "0.5.20+deprecated" 2442source = "registry+https://github.com/rust-lang/crates.io-index" 2443checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 2444 2445[[package]] 2446name = "proc-macro2" 2447version = "1.0.59" 2448source = "registry+https://github.com/rust-lang/crates.io-index" 2449checksum = "6aeca18b86b413c660b781aa319e4e2648a3e6f9eadc9b47e9038e6fe9f3451b" 2450dependencies = [ 2451 "unicode-ident", 2452] 2453 2454[[package]] 2455name = "quick-error" 2456version = "1.2.3" 2457source = "registry+https://github.com/rust-lang/crates.io-index" 2458checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 2459 2460[[package]] 2461name = "quote" 2462version = "1.0.28" 2463source = "registry+https://github.com/rust-lang/crates.io-index" 2464checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488" 2465dependencies = [ 2466 "proc-macro2", 2467] 2468 2469[[package]] 2470name = "radium" 2471version = "0.7.0" 2472source = "registry+https://github.com/rust-lang/crates.io-index" 2473checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 2474 2475[[package]] 2476name = "radix_trie" 2477version = "0.2.1" 2478source = "registry+https://github.com/rust-lang/crates.io-index" 2479checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd" 2480dependencies = [ 2481 "endian-type", 2482 "nibble_vec", 2483] 2484 2485[[package]] 2486name = "rand" 2487version = "0.8.5" 2488source = "registry+https://github.com/rust-lang/crates.io-index" 2489checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2490dependencies = [ 2491 "libc", 2492 "rand_chacha", 2493 "rand_core", 2494] 2495 2496[[package]] 2497name = "rand_chacha" 2498version = "0.3.1" 2499source = "registry+https://github.com/rust-lang/crates.io-index" 2500checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2501dependencies = [ 2502 "ppv-lite86", 2503 "rand_core", 2504] 2505 2506[[package]] 2507name = "rand_core" 2508version = "0.6.4" 2509source = "registry+https://github.com/rust-lang/crates.io-index" 2510checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2511dependencies = [ 2512 "getrandom", 2513] 2514 2515[[package]] 2516name = "redox_syscall" 2517version = "0.2.16" 2518source = "registry+https://github.com/rust-lang/crates.io-index" 2519checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2520dependencies = [ 2521 "bitflags 1.3.2", 2522] 2523 2524[[package]] 2525name = "redox_syscall" 2526version = "0.3.5" 2527source = "registry+https://github.com/rust-lang/crates.io-index" 2528checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 2529dependencies = [ 2530 "bitflags 1.3.2", 2531] 2532 2533[[package]] 2534name = "redox_users" 2535version = "0.4.3" 2536source = "registry+https://github.com/rust-lang/crates.io-index" 2537checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2538dependencies = [ 2539 "getrandom", 2540 "redox_syscall 0.2.16", 2541 "thiserror", 2542] 2543 2544[[package]] 2545name = "regex" 2546version = "1.8.4" 2547source = "registry+https://github.com/rust-lang/crates.io-index" 2548checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f" 2549dependencies = [ 2550 "aho-corasick", 2551 "memchr", 2552 "regex-syntax", 2553] 2554 2555[[package]] 2556name = "regex-automata" 2557version = "0.1.10" 2558source = "registry+https://github.com/rust-lang/crates.io-index" 2559checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2560 2561[[package]] 2562name = "regex-syntax" 2563version = "0.7.2" 2564source = "registry+https://github.com/rust-lang/crates.io-index" 2565checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" 2566 2567[[package]] 2568name = "reqwest" 2569version = "0.11.18" 2570source = "registry+https://github.com/rust-lang/crates.io-index" 2571checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" 2572dependencies = [ 2573 "base64 0.21.2", 2574 "bytes", 2575 "encoding_rs", 2576 "futures-core", 2577 "futures-util", 2578 "h2", 2579 "http", 2580 "http-body", 2581 "hyper", 2582 "hyper-tls", 2583 "ipnet", 2584 "js-sys", 2585 "log", 2586 "mime", 2587 "native-tls", 2588 "once_cell", 2589 "percent-encoding", 2590 "pin-project-lite", 2591 "serde", 2592 "serde_json", 2593 "serde_urlencoded", 2594 "tokio", 2595 "tokio-native-tls", 2596 "tower-service", 2597 "url", 2598 "wasm-bindgen", 2599 "wasm-bindgen-futures", 2600 "web-sys", 2601 "winreg", 2602] 2603 2604[[package]] 2605name = "rexpect" 2606version = "0.5.0" 2607source = "git+https://github.com/tailhook/rexpect?branch=default_terminal_size#7643379e581e8019b49070782e5b6df34d762178" 2608dependencies = [ 2609 "comma", 2610 "nix", 2611 "regex", 2612 "tempfile", 2613 "thiserror", 2614] 2615 2616[[package]] 2617name = "ring" 2618version = "0.16.20" 2619source = "registry+https://github.com/rust-lang/crates.io-index" 2620checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 2621dependencies = [ 2622 "cc", 2623 "libc", 2624 "once_cell", 2625 "spin", 2626 "untrusted 0.7.1", 2627 "web-sys", 2628 "winapi", 2629] 2630 2631[[package]] 2632name = "rle-decode-fast" 2633version = "1.0.3" 2634source = "registry+https://github.com/rust-lang/crates.io-index" 2635checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422" 2636 2637[[package]] 2638name = "rpassword" 2639version = "6.0.1" 2640source = "registry+https://github.com/rust-lang/crates.io-index" 2641checksum = "2bf099a1888612545b683d2661a1940089f6c2e5a8e38979b2159da876bfd956" 2642dependencies = [ 2643 "libc", 2644 "serde", 2645 "serde_json", 2646 "winapi", 2647] 2648 2649[[package]] 2650name = "rustc-demangle" 2651version = "0.1.21" 2652source = "registry+https://github.com/rust-lang/crates.io-index" 2653checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 2654 2655[[package]] 2656name = "rustix" 2657version = "0.37.7" 2658source = "registry+https://github.com/rust-lang/crates.io-index" 2659checksum = "2aae838e49b3d63e9274e1c01833cc8139d3fec468c3b84688c628f44b1ae11d" 2660dependencies = [ 2661 "bitflags 1.3.2", 2662 "errno", 2663 "io-lifetimes", 2664 "libc", 2665 "linux-raw-sys", 2666 "windows-sys 0.45.0", 2667] 2668 2669[[package]] 2670name = "rustls" 2671version = "0.20.8" 2672source = "registry+https://github.com/rust-lang/crates.io-index" 2673checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 2674dependencies = [ 2675 "log", 2676 "ring", 2677 "sct", 2678 "webpki", 2679] 2680 2681[[package]] 2682name = "rustls-native-certs" 2683version = "0.6.2" 2684source = "registry+https://github.com/rust-lang/crates.io-index" 2685checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50" 2686dependencies = [ 2687 "openssl-probe", 2688 "rustls-pemfile", 2689 "schannel", 2690 "security-framework", 2691] 2692 2693[[package]] 2694name = "rustls-pemfile" 2695version = "1.0.2" 2696source = "registry+https://github.com/rust-lang/crates.io-index" 2697checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" 2698dependencies = [ 2699 "base64 0.21.2", 2700] 2701 2702[[package]] 2703name = "rustversion" 2704version = "1.0.12" 2705source = "registry+https://github.com/rust-lang/crates.io-index" 2706checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" 2707 2708[[package]] 2709name = "rustyline" 2710version = "8.0.0" 2711source = "git+https://github.com/tailhook/rustyline?branch=edgedb_20210403#8c0afd236b4869f9fbf41a6a322149feacbe49bd" 2712dependencies = [ 2713 "bitflags 1.3.2", 2714 "cfg-if", 2715 "dirs-next", 2716 "fd-lock 2.0.0", 2717 "libc", 2718 "log", 2719 "memchr", 2720 "nix", 2721 "radix_trie", 2722 "scopeguard", 2723 "smallvec", 2724 "unicode-segmentation", 2725 "unicode-width", 2726 "utf8parse", 2727 "winapi", 2728] 2729 2730[[package]] 2731name = "ryu" 2732version = "1.0.13" 2733source = "registry+https://github.com/rust-lang/crates.io-index" 2734checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 2735 2736[[package]] 2737name = "same-file" 2738version = "1.0.6" 2739source = "registry+https://github.com/rust-lang/crates.io-index" 2740checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2741dependencies = [ 2742 "winapi-util", 2743] 2744 2745[[package]] 2746name = "schannel" 2747version = "0.1.21" 2748source = "registry+https://github.com/rust-lang/crates.io-index" 2749checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 2750dependencies = [ 2751 "windows-sys 0.42.0", 2752] 2753 2754[[package]] 2755name = "scoped-tls" 2756version = "1.0.1" 2757source = "registry+https://github.com/rust-lang/crates.io-index" 2758checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 2759 2760[[package]] 2761name = "scopeguard" 2762version = "1.1.0" 2763source = "registry+https://github.com/rust-lang/crates.io-index" 2764checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2765 2766[[package]] 2767name = "scram" 2768version = "0.6.0" 2769source = "registry+https://github.com/rust-lang/crates.io-index" 2770checksum = "7679a5e6b97bac99b2c208894ba0d34b17d9657f0b728c1cd3bf1c5f7f6ebe88" 2771dependencies = [ 2772 "base64 0.13.1", 2773 "rand", 2774 "ring", 2775] 2776 2777[[package]] 2778name = "sct" 2779version = "0.7.0" 2780source = "registry+https://github.com/rust-lang/crates.io-index" 2781checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 2782dependencies = [ 2783 "ring", 2784 "untrusted 0.7.1", 2785] 2786 2787[[package]] 2788name = "security-framework" 2789version = "2.8.2" 2790source = "registry+https://github.com/rust-lang/crates.io-index" 2791checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" 2792dependencies = [ 2793 "bitflags 1.3.2", 2794 "core-foundation", 2795 "core-foundation-sys", 2796 "libc", 2797 "security-framework-sys", 2798] 2799 2800[[package]] 2801name = "security-framework-sys" 2802version = "2.8.0" 2803source = "registry+https://github.com/rust-lang/crates.io-index" 2804checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4" 2805dependencies = [ 2806 "core-foundation-sys", 2807 "libc", 2808] 2809 2810[[package]] 2811name = "semver" 2812version = "1.0.17" 2813source = "registry+https://github.com/rust-lang/crates.io-index" 2814checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 2815dependencies = [ 2816 "serde", 2817] 2818 2819[[package]] 2820name = "serde" 2821version = "1.0.164" 2822source = "registry+https://github.com/rust-lang/crates.io-index" 2823checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d" 2824dependencies = [ 2825 "serde_derive", 2826] 2827 2828[[package]] 2829name = "serde_derive" 2830version = "1.0.164" 2831source = "registry+https://github.com/rust-lang/crates.io-index" 2832checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68" 2833dependencies = [ 2834 "proc-macro2", 2835 "quote", 2836 "syn 2.0.18", 2837] 2838 2839[[package]] 2840name = "serde_json" 2841version = "1.0.96" 2842source = "registry+https://github.com/rust-lang/crates.io-index" 2843checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 2844dependencies = [ 2845 "indexmap 1.9.3", 2846 "itoa", 2847 "ryu", 2848 "serde", 2849] 2850 2851[[package]] 2852name = "serde_millis" 2853version = "0.1.1" 2854source = "registry+https://github.com/rust-lang/crates.io-index" 2855checksum = "e6e2dc780ca5ee2c369d1d01d100270203c4ff923d2a4264812d723766434d00" 2856dependencies = [ 2857 "serde", 2858] 2859 2860[[package]] 2861name = "serde_path_to_error" 2862version = "0.1.11" 2863source = "registry+https://github.com/rust-lang/crates.io-index" 2864checksum = "f7f05c1d5476066defcdfacce1f52fc3cae3af1d3089727100c02ae92e5abbe0" 2865dependencies = [ 2866 "serde", 2867] 2868 2869[[package]] 2870name = "serde_str" 2871version = "1.0.0" 2872source = "git+https://github.com/tailhook/serde-str#d48076ec69a86e82abeca5f44c0b73ada1fda848" 2873dependencies = [ 2874 "serde", 2875] 2876 2877[[package]] 2878name = "serde_urlencoded" 2879version = "0.7.1" 2880source = "registry+https://github.com/rust-lang/crates.io-index" 2881checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2882dependencies = [ 2883 "form_urlencoded", 2884 "itoa", 2885 "ryu", 2886 "serde", 2887] 2888 2889[[package]] 2890name = "sha1" 2891version = "0.10.5" 2892source = "registry+https://github.com/rust-lang/crates.io-index" 2893checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 2894dependencies = [ 2895 "cfg-if", 2896 "cpufeatures", 2897 "digest", 2898] 2899 2900[[package]] 2901name = "sha2" 2902version = "0.10.6" 2903source = "registry+https://github.com/rust-lang/crates.io-index" 2904checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 2905dependencies = [ 2906 "cfg-if", 2907 "cpufeatures", 2908 "digest", 2909] 2910 2911[[package]] 2912name = "shell-escape" 2913version = "0.1.5" 2914source = "registry+https://github.com/rust-lang/crates.io-index" 2915checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f" 2916 2917[[package]] 2918name = "shutdown_hooks" 2919version = "0.1.0" 2920source = "registry+https://github.com/rust-lang/crates.io-index" 2921checksum = "6057adedbec913419c92996f395ba69931acbd50b7d56955394cd3f7bedbfa45" 2922 2923[[package]] 2924name = "signal-hook" 2925version = "0.3.15" 2926source = "registry+https://github.com/rust-lang/crates.io-index" 2927checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9" 2928dependencies = [ 2929 "libc", 2930 "signal-hook-registry", 2931] 2932 2933[[package]] 2934name = "signal-hook-mio" 2935version = "0.2.3" 2936source = "registry+https://github.com/rust-lang/crates.io-index" 2937checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af" 2938dependencies = [ 2939 "libc", 2940 "mio", 2941 "signal-hook", 2942] 2943 2944[[package]] 2945name = "signal-hook-registry" 2946version = "1.4.1" 2947source = "registry+https://github.com/rust-lang/crates.io-index" 2948checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 2949dependencies = [ 2950 "libc", 2951] 2952 2953[[package]] 2954name = "slab" 2955version = "0.4.8" 2956source = "registry+https://github.com/rust-lang/crates.io-index" 2957checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 2958dependencies = [ 2959 "autocfg", 2960] 2961 2962[[package]] 2963name = "smallvec" 2964version = "1.10.0" 2965source = "registry+https://github.com/rust-lang/crates.io-index" 2966checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 2967 2968[[package]] 2969name = "smawk" 2970version = "0.3.1" 2971source = "registry+https://github.com/rust-lang/crates.io-index" 2972checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043" 2973 2974[[package]] 2975name = "snafu" 2976version = "0.7.4" 2977source = "registry+https://github.com/rust-lang/crates.io-index" 2978checksum = "cb0656e7e3ffb70f6c39b3c2a86332bb74aa3c679da781642590f3c1118c5045" 2979dependencies = [ 2980 "backtrace", 2981 "doc-comment", 2982 "snafu-derive", 2983] 2984 2985[[package]] 2986name = "snafu-derive" 2987version = "0.7.4" 2988source = "registry+https://github.com/rust-lang/crates.io-index" 2989checksum = "475b3bbe5245c26f2d8a6f62d67c1f30eb9fffeccee721c45d162c3ebbdf81b2" 2990dependencies = [ 2991 "heck", 2992 "proc-macro2", 2993 "quote", 2994 "syn 1.0.109", 2995] 2996 2997[[package]] 2998name = "socket2" 2999version = "0.4.9" 3000source = "registry+https://github.com/rust-lang/crates.io-index" 3001checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 3002dependencies = [ 3003 "libc", 3004 "winapi", 3005] 3006 3007[[package]] 3008name = "spin" 3009version = "0.5.2" 3010source = "registry+https://github.com/rust-lang/crates.io-index" 3011checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 3012 3013[[package]] 3014name = "static_assertions" 3015version = "1.1.0" 3016source = "registry+https://github.com/rust-lang/crates.io-index" 3017checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 3018 3019[[package]] 3020name = "strsim" 3021version = "0.10.0" 3022source = "registry+https://github.com/rust-lang/crates.io-index" 3023checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 3024 3025[[package]] 3026name = "subtle" 3027version = "2.4.1" 3028source = "registry+https://github.com/rust-lang/crates.io-index" 3029checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 3030 3031[[package]] 3032name = "syn" 3033version = "1.0.109" 3034source = "registry+https://github.com/rust-lang/crates.io-index" 3035checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 3036dependencies = [ 3037 "proc-macro2", 3038 "quote", 3039 "unicode-ident", 3040] 3041 3042[[package]] 3043name = "syn" 3044version = "2.0.18" 3045source = "registry+https://github.com/rust-lang/crates.io-index" 3046checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e" 3047dependencies = [ 3048 "proc-macro2", 3049 "quote", 3050 "unicode-ident", 3051] 3052 3053[[package]] 3054name = "tap" 3055version = "1.0.1" 3056source = "registry+https://github.com/rust-lang/crates.io-index" 3057checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 3058 3059[[package]] 3060name = "tar" 3061version = "0.4.38" 3062source = "registry+https://github.com/rust-lang/crates.io-index" 3063checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 3064dependencies = [ 3065 "filetime", 3066 "libc", 3067 "xattr", 3068] 3069 3070[[package]] 3071name = "tempfile" 3072version = "3.5.0" 3073source = "registry+https://github.com/rust-lang/crates.io-index" 3074checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 3075dependencies = [ 3076 "cfg-if", 3077 "fastrand", 3078 "redox_syscall 0.3.5", 3079 "rustix", 3080 "windows-sys 0.45.0", 3081] 3082 3083[[package]] 3084name = "term" 3085version = "0.7.0" 3086source = "registry+https://github.com/rust-lang/crates.io-index" 3087checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" 3088dependencies = [ 3089 "dirs-next", 3090 "rustversion", 3091 "winapi", 3092] 3093 3094[[package]] 3095name = "termcolor" 3096version = "1.2.0" 3097source = "registry+https://github.com/rust-lang/crates.io-index" 3098checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 3099dependencies = [ 3100 "winapi-util", 3101] 3102 3103[[package]] 3104name = "termimad" 3105version = "0.20.6" 3106source = "registry+https://github.com/rust-lang/crates.io-index" 3107checksum = "cfab44b4bc17601cf226cce31c87462a4a5bd5d325948c8ebbc9e715660a1287" 3108dependencies = [ 3109 "coolor", 3110 "crossbeam", 3111 "crossterm", 3112 "minimad", 3113 "thiserror", 3114 "unicode-width", 3115] 3116 3117[[package]] 3118name = "terminal_size" 3119version = "0.2.6" 3120source = "registry+https://github.com/rust-lang/crates.io-index" 3121checksum = "8e6bf6f19e9f8ed8d4048dc22981458ebcf406d67e94cd422e5ecd73d63b3237" 3122dependencies = [ 3123 "rustix", 3124 "windows-sys 0.48.0", 3125] 3126 3127[[package]] 3128name = "termtree" 3129version = "0.4.0" 3130source = "registry+https://github.com/rust-lang/crates.io-index" 3131checksum = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8" 3132 3133[[package]] 3134name = "test-case" 3135version = "2.2.2" 3136source = "registry+https://github.com/rust-lang/crates.io-index" 3137checksum = "21d6cf5a7dffb3f9dceec8e6b8ca528d9bd71d36c9f074defb548ce161f598c0" 3138dependencies = [ 3139 "test-case-macros", 3140] 3141 3142[[package]] 3143name = "test-case-macros" 3144version = "2.2.2" 3145source = "registry+https://github.com/rust-lang/crates.io-index" 3146checksum = "e45b7bf6e19353ddd832745c8fcf77a17a93171df7151187f26623f2b75b5b26" 3147dependencies = [ 3148 "cfg-if", 3149 "proc-macro-error", 3150 "proc-macro2", 3151 "quote", 3152 "syn 1.0.109", 3153] 3154 3155[[package]] 3156name = "test-cert-gen" 3157version = "0.9.0" 3158source = "registry+https://github.com/rust-lang/crates.io-index" 3159checksum = "345f92b7cac59507cdaba298c5493f7c40e2063d31f6fc621105183344d5d50a" 3160dependencies = [ 3161 "once_cell", 3162 "pem 0.8.3", 3163 "tempfile", 3164] 3165 3166[[package]] 3167name = "textwrap" 3168version = "0.16.0" 3169source = "registry+https://github.com/rust-lang/crates.io-index" 3170checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 3171dependencies = [ 3172 "smawk", 3173 "terminal_size", 3174 "unicode-linebreak", 3175 "unicode-width", 3176] 3177 3178[[package]] 3179name = "thiserror" 3180version = "1.0.40" 3181source = "registry+https://github.com/rust-lang/crates.io-index" 3182checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 3183dependencies = [ 3184 "thiserror-impl", 3185] 3186 3187[[package]] 3188name = "thiserror-impl" 3189version = "1.0.40" 3190source = "registry+https://github.com/rust-lang/crates.io-index" 3191checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 3192dependencies = [ 3193 "proc-macro2", 3194 "quote", 3195 "syn 2.0.18", 3196] 3197 3198[[package]] 3199name = "time" 3200version = "0.3.20" 3201source = "registry+https://github.com/rust-lang/crates.io-index" 3202checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" 3203dependencies = [ 3204 "serde", 3205 "time-core", 3206] 3207 3208[[package]] 3209name = "time-core" 3210version = "0.1.0" 3211source = "registry+https://github.com/rust-lang/crates.io-index" 3212checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 3213 3214[[package]] 3215name = "tinyvec" 3216version = "1.6.0" 3217source = "registry+https://github.com/rust-lang/crates.io-index" 3218checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 3219dependencies = [ 3220 "tinyvec_macros", 3221] 3222 3223[[package]] 3224name = "tinyvec_macros" 3225version = "0.1.1" 3226source = "registry+https://github.com/rust-lang/crates.io-index" 3227checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3228 3229[[package]] 3230name = "tls-api" 3231version = "0.9.0" 3232source = "registry+https://github.com/rust-lang/crates.io-index" 3233checksum = "66d1b3dfb0a60da3e8a130c9f2432063d9979928a05c2b2cdcfc9fd05e4f53a3" 3234dependencies = [ 3235 "anyhow", 3236 "log", 3237 "pem 0.8.3", 3238 "tempfile", 3239 "thiserror", 3240 "tokio", 3241 "void", 3242 "webpki", 3243] 3244 3245[[package]] 3246name = "tls-api-not-tls" 3247version = "0.9.0" 3248source = "registry+https://github.com/rust-lang/crates.io-index" 3249checksum = "529dda0254aa61462ebe3937ecf877b6b1d7e745d25b74c18ba98593aefd7086" 3250dependencies = [ 3251 "anyhow", 3252 "thiserror", 3253 "tls-api", 3254 "tls-api-test", 3255 "tokio", 3256] 3257 3258[[package]] 3259name = "tls-api-rustls" 3260version = "0.9.0" 3261source = "registry+https://github.com/rust-lang/crates.io-index" 3262checksum = "afcd7905a7d9603bc4c1bcf4710141d463cde70f027ab7900bc1d0012712444d" 3263dependencies = [ 3264 "anyhow", 3265 "rustls", 3266 "thiserror", 3267 "tls-api", 3268 "tls-api-test", 3269 "tokio", 3270 "webpki", 3271 "webpki-roots", 3272] 3273 3274[[package]] 3275name = "tls-api-test" 3276version = "0.9.0" 3277source = "registry+https://github.com/rust-lang/crates.io-index" 3278checksum = "9df107843d725428d76bb159040fbae6d1524dcf25d5b24c56daa6b37ce9dbb5" 3279dependencies = [ 3280 "anyhow", 3281 "env_logger 0.5.13", 3282 "log", 3283 "pem 0.8.3", 3284 "test-cert-gen", 3285 "tls-api", 3286 "tokio", 3287 "untrusted 0.6.2", 3288 "webpki", 3289] 3290 3291[[package]] 3292name = "tokio" 3293version = "1.28.2" 3294source = "registry+https://github.com/rust-lang/crates.io-index" 3295checksum = "94d7b1cfd2aa4011f2de74c2c4c63665e27a71006b0a192dcd2710272e73dfa2" 3296dependencies = [ 3297 "autocfg", 3298 "bytes", 3299 "libc", 3300 "mio", 3301 "num_cpus", 3302 "pin-project-lite", 3303 "signal-hook-registry", 3304 "socket2", 3305 "tokio-macros", 3306 "windows-sys 0.48.0", 3307] 3308 3309[[package]] 3310name = "tokio-macros" 3311version = "2.1.0" 3312source = "registry+https://github.com/rust-lang/crates.io-index" 3313checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 3314dependencies = [ 3315 "proc-macro2", 3316 "quote", 3317 "syn 2.0.18", 3318] 3319 3320[[package]] 3321name = "tokio-native-tls" 3322version = "0.3.1" 3323source = "registry+https://github.com/rust-lang/crates.io-index" 3324checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 3325dependencies = [ 3326 "native-tls", 3327 "tokio", 3328] 3329 3330[[package]] 3331name = "tokio-rustls" 3332version = "0.23.4" 3333source = "registry+https://github.com/rust-lang/crates.io-index" 3334checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 3335dependencies = [ 3336 "rustls", 3337 "tokio", 3338 "webpki", 3339] 3340 3341[[package]] 3342name = "tokio-stream" 3343version = "0.1.14" 3344source = "registry+https://github.com/rust-lang/crates.io-index" 3345checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 3346dependencies = [ 3347 "futures-core", 3348 "pin-project-lite", 3349 "tokio", 3350] 3351 3352[[package]] 3353name = "tokio-util" 3354version = "0.7.7" 3355source = "registry+https://github.com/rust-lang/crates.io-index" 3356checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2" 3357dependencies = [ 3358 "bytes", 3359 "futures-core", 3360 "futures-sink", 3361 "pin-project-lite", 3362 "tokio", 3363 "tracing", 3364] 3365 3366[[package]] 3367name = "toml" 3368version = "0.5.11" 3369source = "registry+https://github.com/rust-lang/crates.io-index" 3370checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 3371dependencies = [ 3372 "serde", 3373] 3374 3375[[package]] 3376name = "tower-service" 3377version = "0.3.2" 3378source = "registry+https://github.com/rust-lang/crates.io-index" 3379checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 3380 3381[[package]] 3382name = "tracing" 3383version = "0.1.37" 3384source = "registry+https://github.com/rust-lang/crates.io-index" 3385checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 3386dependencies = [ 3387 "cfg-if", 3388 "log", 3389 "pin-project-lite", 3390 "tracing-core", 3391] 3392 3393[[package]] 3394name = "tracing-core" 3395version = "0.1.30" 3396source = "registry+https://github.com/rust-lang/crates.io-index" 3397checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 3398dependencies = [ 3399 "once_cell", 3400] 3401 3402[[package]] 3403name = "try-lock" 3404version = "0.2.4" 3405source = "registry+https://github.com/rust-lang/crates.io-index" 3406checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 3407 3408[[package]] 3409name = "trybuild" 3410version = "1.0.79" 3411source = "registry+https://github.com/rust-lang/crates.io-index" 3412checksum = "db3115bddce1b5f52dd4b5e0ec8298a66ce733e4cc6759247dc2d1c11508ec38" 3413dependencies = [ 3414 "basic-toml", 3415 "glob", 3416 "once_cell", 3417 "serde", 3418 "serde_derive", 3419 "serde_json", 3420 "termcolor", 3421] 3422 3423[[package]] 3424name = "typenum" 3425version = "1.16.0" 3426source = "registry+https://github.com/rust-lang/crates.io-index" 3427checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 3428 3429[[package]] 3430name = "unicase" 3431version = "2.6.0" 3432source = "registry+https://github.com/rust-lang/crates.io-index" 3433checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 3434dependencies = [ 3435 "version_check", 3436] 3437 3438[[package]] 3439name = "unicode-bidi" 3440version = "0.3.11" 3441source = "registry+https://github.com/rust-lang/crates.io-index" 3442checksum = "524b68aca1d05e03fdf03fcdce2c6c94b6daf6d16861ddaa7e4f2b6638a9052c" 3443 3444[[package]] 3445name = "unicode-ident" 3446version = "1.0.8" 3447source = "registry+https://github.com/rust-lang/crates.io-index" 3448checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 3449 3450[[package]] 3451name = "unicode-linebreak" 3452version = "0.1.4" 3453source = "registry+https://github.com/rust-lang/crates.io-index" 3454checksum = "c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137" 3455dependencies = [ 3456 "hashbrown 0.12.3", 3457 "regex", 3458] 3459 3460[[package]] 3461name = "unicode-normalization" 3462version = "0.1.22" 3463source = "registry+https://github.com/rust-lang/crates.io-index" 3464checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 3465dependencies = [ 3466 "tinyvec", 3467] 3468 3469[[package]] 3470name = "unicode-segmentation" 3471version = "1.10.1" 3472source = "registry+https://github.com/rust-lang/crates.io-index" 3473checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 3474 3475[[package]] 3476name = "unicode-width" 3477version = "0.1.10" 3478source = "registry+https://github.com/rust-lang/crates.io-index" 3479checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 3480 3481[[package]] 3482name = "untrusted" 3483version = "0.6.2" 3484source = "registry+https://github.com/rust-lang/crates.io-index" 3485checksum = "55cd1f4b4e96b46aeb8d4855db4a7a9bd96eeeb5c6a1ab54593328761642ce2f" 3486 3487[[package]] 3488name = "untrusted" 3489version = "0.7.1" 3490source = "registry+https://github.com/rust-lang/crates.io-index" 3491checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 3492 3493[[package]] 3494name = "url" 3495version = "2.3.1" 3496source = "registry+https://github.com/rust-lang/crates.io-index" 3497checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 3498dependencies = [ 3499 "form_urlencoded", 3500 "idna", 3501 "percent-encoding", 3502 "serde", 3503] 3504 3505[[package]] 3506name = "urlencoding" 3507version = "2.1.2" 3508source = "registry+https://github.com/rust-lang/crates.io-index" 3509checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9" 3510 3511[[package]] 3512name = "utf8parse" 3513version = "0.2.1" 3514source = "registry+https://github.com/rust-lang/crates.io-index" 3515checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 3516 3517[[package]] 3518name = "uuid" 3519version = "1.3.4" 3520source = "registry+https://github.com/rust-lang/crates.io-index" 3521checksum = "0fa2982af2eec27de306107c027578ff7f423d65f7250e40ce0fea8f45248b81" 3522dependencies = [ 3523 "serde", 3524] 3525 3526[[package]] 3527name = "value-bag" 3528version = "1.4.0" 3529source = "registry+https://github.com/rust-lang/crates.io-index" 3530checksum = "a4d330786735ea358f3bc09eea4caa098569c1c93f342d9aca0514915022fe7e" 3531 3532[[package]] 3533name = "vcpkg" 3534version = "0.2.15" 3535source = "registry+https://github.com/rust-lang/crates.io-index" 3536checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3537 3538[[package]] 3539name = "version_check" 3540version = "0.9.4" 3541source = "registry+https://github.com/rust-lang/crates.io-index" 3542checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3543 3544[[package]] 3545name = "void" 3546version = "1.0.2" 3547source = "registry+https://github.com/rust-lang/crates.io-index" 3548checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" 3549 3550[[package]] 3551name = "wait-timeout" 3552version = "0.2.0" 3553source = "registry+https://github.com/rust-lang/crates.io-index" 3554checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" 3555dependencies = [ 3556 "libc", 3557] 3558 3559[[package]] 3560name = "waker-fn" 3561version = "1.1.0" 3562source = "registry+https://github.com/rust-lang/crates.io-index" 3563checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 3564 3565[[package]] 3566name = "walkdir" 3567version = "2.3.2" 3568source = "registry+https://github.com/rust-lang/crates.io-index" 3569checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 3570dependencies = [ 3571 "same-file", 3572 "winapi", 3573 "winapi-util", 3574] 3575 3576[[package]] 3577name = "want" 3578version = "0.3.0" 3579source = "registry+https://github.com/rust-lang/crates.io-index" 3580checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 3581dependencies = [ 3582 "log", 3583 "try-lock", 3584] 3585 3586[[package]] 3587name = "warp" 3588version = "0.3.5" 3589source = "registry+https://github.com/rust-lang/crates.io-index" 3590checksum = "ba431ef570df1287f7f8b07e376491ad54f84d26ac473489427231e1718e1f69" 3591dependencies = [ 3592 "bytes", 3593 "futures-channel", 3594 "futures-util", 3595 "headers", 3596 "http", 3597 "hyper", 3598 "log", 3599 "mime", 3600 "mime_guess", 3601 "percent-encoding", 3602 "pin-project", 3603 "rustls-pemfile", 3604 "scoped-tls", 3605 "serde", 3606 "serde_json", 3607 "serde_urlencoded", 3608 "tokio", 3609 "tokio-rustls", 3610 "tokio-stream", 3611 "tokio-util", 3612 "tower-service", 3613 "tracing", 3614] 3615 3616[[package]] 3617name = "wasi" 3618version = "0.11.0+wasi-snapshot-preview1" 3619source = "registry+https://github.com/rust-lang/crates.io-index" 3620checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3621 3622[[package]] 3623name = "wasm-bindgen" 3624version = "0.2.84" 3625source = "registry+https://github.com/rust-lang/crates.io-index" 3626checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" 3627dependencies = [ 3628 "cfg-if", 3629 "wasm-bindgen-macro", 3630] 3631 3632[[package]] 3633name = "wasm-bindgen-backend" 3634version = "0.2.84" 3635source = "registry+https://github.com/rust-lang/crates.io-index" 3636checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" 3637dependencies = [ 3638 "bumpalo", 3639 "log", 3640 "once_cell", 3641 "proc-macro2", 3642 "quote", 3643 "syn 1.0.109", 3644 "wasm-bindgen-shared", 3645] 3646 3647[[package]] 3648name = "wasm-bindgen-futures" 3649version = "0.4.34" 3650source = "registry+https://github.com/rust-lang/crates.io-index" 3651checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454" 3652dependencies = [ 3653 "cfg-if", 3654 "js-sys", 3655 "wasm-bindgen", 3656 "web-sys", 3657] 3658 3659[[package]] 3660name = "wasm-bindgen-macro" 3661version = "0.2.84" 3662source = "registry+https://github.com/rust-lang/crates.io-index" 3663checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" 3664dependencies = [ 3665 "quote", 3666 "wasm-bindgen-macro-support", 3667] 3668 3669[[package]] 3670name = "wasm-bindgen-macro-support" 3671version = "0.2.84" 3672source = "registry+https://github.com/rust-lang/crates.io-index" 3673checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" 3674dependencies = [ 3675 "proc-macro2", 3676 "quote", 3677 "syn 1.0.109", 3678 "wasm-bindgen-backend", 3679 "wasm-bindgen-shared", 3680] 3681 3682[[package]] 3683name = "wasm-bindgen-shared" 3684version = "0.2.84" 3685source = "registry+https://github.com/rust-lang/crates.io-index" 3686checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" 3687 3688[[package]] 3689name = "wchar" 3690version = "0.6.1" 3691source = "registry+https://github.com/rust-lang/crates.io-index" 3692checksum = "c74d010bf16569f942b0b7d3c777dd674f8ee539b48d809dc548b3453039c2df" 3693dependencies = [ 3694 "proc-macro-hack", 3695 "wchar-impl", 3696] 3697 3698[[package]] 3699name = "wchar-impl" 3700version = "0.6.0" 3701source = "registry+https://github.com/rust-lang/crates.io-index" 3702checksum = "f135922b9303f899bfa446fce1eb149f43462f1e9ac7f50e24ea6b913416dd84" 3703dependencies = [ 3704 "proc-macro-hack", 3705 "proc-macro2", 3706 "quote", 3707 "syn 1.0.109", 3708] 3709 3710[[package]] 3711name = "web-sys" 3712version = "0.3.61" 3713source = "registry+https://github.com/rust-lang/crates.io-index" 3714checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97" 3715dependencies = [ 3716 "js-sys", 3717 "wasm-bindgen", 3718] 3719 3720[[package]] 3721name = "webpki" 3722version = "0.22.0" 3723source = "registry+https://github.com/rust-lang/crates.io-index" 3724checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 3725dependencies = [ 3726 "ring", 3727 "untrusted 0.7.1", 3728] 3729 3730[[package]] 3731name = "webpki-roots" 3732version = "0.22.6" 3733source = "registry+https://github.com/rust-lang/crates.io-index" 3734checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 3735dependencies = [ 3736 "webpki", 3737] 3738 3739[[package]] 3740name = "which" 3741version = "4.4.0" 3742source = "registry+https://github.com/rust-lang/crates.io-index" 3743checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" 3744dependencies = [ 3745 "either", 3746 "libc", 3747 "once_cell", 3748] 3749 3750[[package]] 3751name = "whoami" 3752version = "1.4.0" 3753source = "registry+https://github.com/rust-lang/crates.io-index" 3754checksum = "2c70234412ca409cc04e864e89523cb0fc37f5e1344ebed5a3ebf4192b6b9f68" 3755dependencies = [ 3756 "wasm-bindgen", 3757 "web-sys", 3758] 3759 3760[[package]] 3761name = "winapi" 3762version = "0.3.9" 3763source = "registry+https://github.com/rust-lang/crates.io-index" 3764checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3765dependencies = [ 3766 "winapi-i686-pc-windows-gnu", 3767 "winapi-x86_64-pc-windows-gnu", 3768] 3769 3770[[package]] 3771name = "winapi-i686-pc-windows-gnu" 3772version = "0.4.0" 3773source = "registry+https://github.com/rust-lang/crates.io-index" 3774checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3775 3776[[package]] 3777name = "winapi-util" 3778version = "0.1.5" 3779source = "registry+https://github.com/rust-lang/crates.io-index" 3780checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 3781dependencies = [ 3782 "winapi", 3783] 3784 3785[[package]] 3786name = "winapi-x86_64-pc-windows-gnu" 3787version = "0.4.0" 3788source = "registry+https://github.com/rust-lang/crates.io-index" 3789checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3790 3791[[package]] 3792name = "windows-sys" 3793version = "0.42.0" 3794source = "registry+https://github.com/rust-lang/crates.io-index" 3795checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 3796dependencies = [ 3797 "windows_aarch64_gnullvm 0.42.1", 3798 "windows_aarch64_msvc 0.42.1", 3799 "windows_i686_gnu 0.42.1", 3800 "windows_i686_msvc 0.42.1", 3801 "windows_x86_64_gnu 0.42.1", 3802 "windows_x86_64_gnullvm 0.42.1", 3803 "windows_x86_64_msvc 0.42.1", 3804] 3805 3806[[package]] 3807name = "windows-sys" 3808version = "0.45.0" 3809source = "registry+https://github.com/rust-lang/crates.io-index" 3810checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 3811dependencies = [ 3812 "windows-targets 0.42.1", 3813] 3814 3815[[package]] 3816name = "windows-sys" 3817version = "0.48.0" 3818source = "registry+https://github.com/rust-lang/crates.io-index" 3819checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3820dependencies = [ 3821 "windows-targets 0.48.0", 3822] 3823 3824[[package]] 3825name = "windows-targets" 3826version = "0.42.1" 3827source = "registry+https://github.com/rust-lang/crates.io-index" 3828checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 3829dependencies = [ 3830 "windows_aarch64_gnullvm 0.42.1", 3831 "windows_aarch64_msvc 0.42.1", 3832 "windows_i686_gnu 0.42.1", 3833 "windows_i686_msvc 0.42.1", 3834 "windows_x86_64_gnu 0.42.1", 3835 "windows_x86_64_gnullvm 0.42.1", 3836 "windows_x86_64_msvc 0.42.1", 3837] 3838 3839[[package]] 3840name = "windows-targets" 3841version = "0.48.0" 3842source = "registry+https://github.com/rust-lang/crates.io-index" 3843checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 3844dependencies = [ 3845 "windows_aarch64_gnullvm 0.48.0", 3846 "windows_aarch64_msvc 0.48.0", 3847 "windows_i686_gnu 0.48.0", 3848 "windows_i686_msvc 0.48.0", 3849 "windows_x86_64_gnu 0.48.0", 3850 "windows_x86_64_gnullvm 0.48.0", 3851 "windows_x86_64_msvc 0.48.0", 3852] 3853 3854[[package]] 3855name = "windows_aarch64_gnullvm" 3856version = "0.42.1" 3857source = "registry+https://github.com/rust-lang/crates.io-index" 3858checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 3859 3860[[package]] 3861name = "windows_aarch64_gnullvm" 3862version = "0.48.0" 3863source = "registry+https://github.com/rust-lang/crates.io-index" 3864checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 3865 3866[[package]] 3867name = "windows_aarch64_msvc" 3868version = "0.42.1" 3869source = "registry+https://github.com/rust-lang/crates.io-index" 3870checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 3871 3872[[package]] 3873name = "windows_aarch64_msvc" 3874version = "0.48.0" 3875source = "registry+https://github.com/rust-lang/crates.io-index" 3876checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 3877 3878[[package]] 3879name = "windows_i686_gnu" 3880version = "0.42.1" 3881source = "registry+https://github.com/rust-lang/crates.io-index" 3882checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 3883 3884[[package]] 3885name = "windows_i686_gnu" 3886version = "0.48.0" 3887source = "registry+https://github.com/rust-lang/crates.io-index" 3888checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 3889 3890[[package]] 3891name = "windows_i686_msvc" 3892version = "0.42.1" 3893source = "registry+https://github.com/rust-lang/crates.io-index" 3894checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 3895 3896[[package]] 3897name = "windows_i686_msvc" 3898version = "0.48.0" 3899source = "registry+https://github.com/rust-lang/crates.io-index" 3900checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 3901 3902[[package]] 3903name = "windows_x86_64_gnu" 3904version = "0.42.1" 3905source = "registry+https://github.com/rust-lang/crates.io-index" 3906checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 3907 3908[[package]] 3909name = "windows_x86_64_gnu" 3910version = "0.48.0" 3911source = "registry+https://github.com/rust-lang/crates.io-index" 3912checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 3913 3914[[package]] 3915name = "windows_x86_64_gnullvm" 3916version = "0.42.1" 3917source = "registry+https://github.com/rust-lang/crates.io-index" 3918checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 3919 3920[[package]] 3921name = "windows_x86_64_gnullvm" 3922version = "0.48.0" 3923source = "registry+https://github.com/rust-lang/crates.io-index" 3924checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 3925 3926[[package]] 3927name = "windows_x86_64_msvc" 3928version = "0.42.1" 3929source = "registry+https://github.com/rust-lang/crates.io-index" 3930checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 3931 3932[[package]] 3933name = "windows_x86_64_msvc" 3934version = "0.48.0" 3935source = "registry+https://github.com/rust-lang/crates.io-index" 3936checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 3937 3938[[package]] 3939name = "winreg" 3940version = "0.10.1" 3941source = "registry+https://github.com/rust-lang/crates.io-index" 3942checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 3943dependencies = [ 3944 "winapi", 3945] 3946 3947[[package]] 3948name = "wslapi" 3949version = "0.1.3" 3950source = "registry+https://github.com/rust-lang/crates.io-index" 3951checksum = "afc9c51137636a37c388bb01765a0eae1362915d82a5e238e1a356c400f9f619" 3952dependencies = [ 3953 "minidl", 3954 "wchar", 3955 "winapi", 3956] 3957 3958[[package]] 3959name = "wyz" 3960version = "0.5.1" 3961source = "registry+https://github.com/rust-lang/crates.io-index" 3962checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 3963dependencies = [ 3964 "tap", 3965] 3966 3967[[package]] 3968name = "xattr" 3969version = "0.2.3" 3970source = "registry+https://github.com/rust-lang/crates.io-index" 3971checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" 3972dependencies = [ 3973 "libc", 3974] 3975 3976[[package]] 3977name = "yansi" 3978version = "0.5.1" 3979source = "registry+https://github.com/rust-lang/crates.io-index" 3980checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" 3981 3982[[package]] 3983name = "zip" 3984version = "0.6.6" 3985source = "registry+https://github.com/rust-lang/crates.io-index" 3986checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 3987dependencies = [ 3988 "aes", 3989 "byteorder", 3990 "bzip2", 3991 "constant_time_eq 0.1.5", 3992 "crc32fast", 3993 "crossbeam-utils", 3994 "flate2", 3995 "hmac", 3996 "pbkdf2", 3997 "sha1", 3998 "time", 3999 "zstd 0.11.2+zstd.1.5.2", 4000] 4001 4002[[package]] 4003name = "zstd" 4004version = "0.11.2+zstd.1.5.2" 4005source = "registry+https://github.com/rust-lang/crates.io-index" 4006checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 4007dependencies = [ 4008 "zstd-safe 5.0.2+zstd.1.5.2", 4009] 4010 4011[[package]] 4012name = "zstd" 4013version = "0.12.3+zstd.1.5.2" 4014source = "registry+https://github.com/rust-lang/crates.io-index" 4015checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806" 4016dependencies = [ 4017 "zstd-safe 6.0.5+zstd.1.5.4", 4018] 4019 4020[[package]] 4021name = "zstd-safe" 4022version = "5.0.2+zstd.1.5.2" 4023source = "registry+https://github.com/rust-lang/crates.io-index" 4024checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 4025dependencies = [ 4026 "libc", 4027 "zstd-sys", 4028] 4029 4030[[package]] 4031name = "zstd-safe" 4032version = "6.0.5+zstd.1.5.4" 4033source = "registry+https://github.com/rust-lang/crates.io-index" 4034checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b" 4035dependencies = [ 4036 "libc", 4037 "zstd-sys", 4038] 4039 4040[[package]] 4041name = "zstd-sys" 4042version = "2.0.8+zstd.1.5.5" 4043source = "registry+https://github.com/rust-lang/crates.io-index" 4044checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c" 4045dependencies = [ 4046 "cc", 4047 "libc", 4048 "pkg-config", 4049]