Cargo.lock (75653B)
1 # This file is automatically @generated by Cargo. 2 # It is not intended for manual editing. 3 version = 3 4 5 [[package]] 6 name = "addr2line" 7 version = "0.17.0" 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" 10 dependencies = [ 11 "gimli", 12 ] 13 14 [[package]] 15 name = "adler" 16 version = "1.0.2" 17 source = "registry+https://github.com/rust-lang/crates.io-index" 18 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 20 [[package]] 21 name = "aead" 22 version = "0.5.1" 23 source = "registry+https://github.com/rust-lang/crates.io-index" 24 checksum = "5c192eb8f11fc081b0fe4259ba5af04217d4e0faddd02417310a927911abd7c8" 25 dependencies = [ 26 "crypto-common", 27 "generic-array 0.14.6", 28 ] 29 30 [[package]] 31 name = "aes" 32 version = "0.8.2" 33 source = "registry+https://github.com/rust-lang/crates.io-index" 34 checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241" 35 dependencies = [ 36 "cfg-if 1.0.0", 37 "cipher", 38 "cpufeatures", 39 ] 40 41 [[package]] 42 name = "aes-gcm" 43 version = "0.10.1" 44 source = "registry+https://github.com/rust-lang/crates.io-index" 45 checksum = "82e1366e0c69c9f927b1fa5ce2c7bf9eafc8f9268c0b9800729e8b267612447c" 46 dependencies = [ 47 "aead", 48 "aes", 49 "cipher", 50 "ctr", 51 "ghash", 52 "subtle", 53 ] 54 55 [[package]] 56 name = "aho-corasick" 57 version = "0.7.19" 58 source = "registry+https://github.com/rust-lang/crates.io-index" 59 checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e" 60 dependencies = [ 61 "memchr", 62 ] 63 64 [[package]] 65 name = "android_system_properties" 66 version = "0.1.5" 67 source = "registry+https://github.com/rust-lang/crates.io-index" 68 checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 69 dependencies = [ 70 "libc", 71 ] 72 73 [[package]] 74 name = "anyhow" 75 version = "1.0.66" 76 source = "registry+https://github.com/rust-lang/crates.io-index" 77 checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6" 78 79 [[package]] 80 name = "async-trait" 81 version = "0.1.58" 82 source = "registry+https://github.com/rust-lang/crates.io-index" 83 checksum = "1e805d94e6b5001b651426cf4cd446b1ab5f319d27bab5c644f61de0a804360c" 84 dependencies = [ 85 "proc-macro2", 86 "quote", 87 "syn", 88 ] 89 90 [[package]] 91 name = "atty" 92 version = "0.2.14" 93 source = "registry+https://github.com/rust-lang/crates.io-index" 94 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 95 dependencies = [ 96 "hermit-abi", 97 "libc", 98 "winapi 0.3.9", 99 ] 100 101 [[package]] 102 name = "autocfg" 103 version = "0.1.8" 104 source = "registry+https://github.com/rust-lang/crates.io-index" 105 checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78" 106 dependencies = [ 107 "autocfg 1.1.0", 108 ] 109 110 [[package]] 111 name = "autocfg" 112 version = "1.1.0" 113 source = "registry+https://github.com/rust-lang/crates.io-index" 114 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 115 116 [[package]] 117 name = "backtrace" 118 version = "0.3.66" 119 source = "registry+https://github.com/rust-lang/crates.io-index" 120 checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7" 121 dependencies = [ 122 "addr2line", 123 "cc", 124 "cfg-if 1.0.0", 125 "libc", 126 "miniz_oxide", 127 "object", 128 "rustc-demangle", 129 ] 130 131 [[package]] 132 name = "base64" 133 version = "0.9.3" 134 source = "registry+https://github.com/rust-lang/crates.io-index" 135 checksum = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" 136 dependencies = [ 137 "byteorder", 138 "safemem", 139 ] 140 141 [[package]] 142 name = "base64" 143 version = "0.10.1" 144 source = "registry+https://github.com/rust-lang/crates.io-index" 145 checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" 146 dependencies = [ 147 "byteorder", 148 ] 149 150 [[package]] 151 name = "base64" 152 version = "0.13.1" 153 source = "registry+https://github.com/rust-lang/crates.io-index" 154 checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 155 156 [[package]] 157 name = "bitflags" 158 version = "1.3.2" 159 source = "registry+https://github.com/rust-lang/crates.io-index" 160 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 161 162 [[package]] 163 name = "block-buffer" 164 version = "0.7.3" 165 source = "registry+https://github.com/rust-lang/crates.io-index" 166 checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" 167 dependencies = [ 168 "block-padding", 169 "byte-tools", 170 "byteorder", 171 "generic-array 0.12.4", 172 ] 173 174 [[package]] 175 name = "block-buffer" 176 version = "0.10.3" 177 source = "registry+https://github.com/rust-lang/crates.io-index" 178 checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 179 dependencies = [ 180 "generic-array 0.14.6", 181 ] 182 183 [[package]] 184 name = "block-padding" 185 version = "0.1.5" 186 source = "registry+https://github.com/rust-lang/crates.io-index" 187 checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" 188 dependencies = [ 189 "byte-tools", 190 ] 191 192 [[package]] 193 name = "bumpalo" 194 version = "3.11.1" 195 source = "registry+https://github.com/rust-lang/crates.io-index" 196 checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" 197 198 [[package]] 199 name = "byte-tools" 200 version = "0.3.1" 201 source = "registry+https://github.com/rust-lang/crates.io-index" 202 checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" 203 204 [[package]] 205 name = "byteorder" 206 version = "1.4.3" 207 source = "registry+https://github.com/rust-lang/crates.io-index" 208 checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 209 210 [[package]] 211 name = "bytes" 212 version = "0.4.12" 213 source = "registry+https://github.com/rust-lang/crates.io-index" 214 checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" 215 dependencies = [ 216 "byteorder", 217 "iovec", 218 ] 219 220 [[package]] 221 name = "bytes" 222 version = "0.5.6" 223 source = "registry+https://github.com/rust-lang/crates.io-index" 224 checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38" 225 226 [[package]] 227 name = "bytes" 228 version = "1.2.1" 229 source = "registry+https://github.com/rust-lang/crates.io-index" 230 checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" 231 232 [[package]] 233 name = "cassandra-cpp" 234 version = "1.1.0" 235 source = "registry+https://github.com/rust-lang/crates.io-index" 236 checksum = "cfa5d9e96a365aa8c025dd5a0c90179de277b76f9494d8dea956bcd6241bae6c" 237 dependencies = [ 238 "cassandra-cpp-sys", 239 "error-chain", 240 "parking_lot 0.12.1", 241 "slog", 242 "uuid", 243 ] 244 245 [[package]] 246 name = "cassandra-cpp-sys" 247 version = "1.1.0" 248 source = "registry+https://github.com/rust-lang/crates.io-index" 249 checksum = "8234d29d30873ab5a41e3557b8515d3ecbaefb1ea5be579425b3b0074b6d0e40" 250 251 [[package]] 252 name = "cc" 253 version = "1.0.76" 254 source = "registry+https://github.com/rust-lang/crates.io-index" 255 checksum = "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f" 256 257 [[package]] 258 name = "cfg-if" 259 version = "0.1.10" 260 source = "registry+https://github.com/rust-lang/crates.io-index" 261 checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 262 263 [[package]] 264 name = "cfg-if" 265 version = "1.0.0" 266 source = "registry+https://github.com/rust-lang/crates.io-index" 267 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 268 269 [[package]] 270 name = "chatterbox" 271 version = "0.1.0" 272 dependencies = [ 273 "anyhow", 274 "cassandra-cpp", 275 "chrono", 276 "futures 0.3.25", 277 "futures-util", 278 "hex", 279 "poem", 280 "rustflake", 281 "serde", 282 "serde_json", 283 "tokio", 284 "tracing-subscriber", 285 "websocket", 286 ] 287 288 [[package]] 289 name = "chrono" 290 version = "0.4.22" 291 source = "registry+https://github.com/rust-lang/crates.io-index" 292 checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1" 293 dependencies = [ 294 "iana-time-zone", 295 "js-sys", 296 "num-integer", 297 "num-traits", 298 "serde", 299 "time 0.1.44", 300 "wasm-bindgen", 301 "winapi 0.3.9", 302 ] 303 304 [[package]] 305 name = "cipher" 306 version = "0.4.3" 307 source = "registry+https://github.com/rust-lang/crates.io-index" 308 checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e" 309 dependencies = [ 310 "crypto-common", 311 "inout", 312 ] 313 314 [[package]] 315 name = "cloudabi" 316 version = "0.0.3" 317 source = "registry+https://github.com/rust-lang/crates.io-index" 318 checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" 319 dependencies = [ 320 "bitflags", 321 ] 322 323 [[package]] 324 name = "codespan-reporting" 325 version = "0.11.1" 326 source = "registry+https://github.com/rust-lang/crates.io-index" 327 checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 328 dependencies = [ 329 "termcolor", 330 "unicode-width", 331 ] 332 333 [[package]] 334 name = "convert_case" 335 version = "0.4.0" 336 source = "registry+https://github.com/rust-lang/crates.io-index" 337 checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 338 339 [[package]] 340 name = "cookie" 341 version = "0.16.1" 342 source = "registry+https://github.com/rust-lang/crates.io-index" 343 checksum = "344adc371239ef32293cb1c4fe519592fcf21206c79c02854320afcdf3ab4917" 344 dependencies = [ 345 "aes-gcm", 346 "base64 0.13.1", 347 "hkdf", 348 "hmac", 349 "percent-encoding 2.2.0", 350 "rand 0.8.5", 351 "sha2", 352 "subtle", 353 "time 0.3.17", 354 "version_check 0.9.4", 355 ] 356 357 [[package]] 358 name = "core-foundation" 359 version = "0.9.3" 360 source = "registry+https://github.com/rust-lang/crates.io-index" 361 checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 362 dependencies = [ 363 "core-foundation-sys", 364 "libc", 365 ] 366 367 [[package]] 368 name = "core-foundation-sys" 369 version = "0.8.3" 370 source = "registry+https://github.com/rust-lang/crates.io-index" 371 checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 372 373 [[package]] 374 name = "cpufeatures" 375 version = "0.2.5" 376 source = "registry+https://github.com/rust-lang/crates.io-index" 377 checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 378 dependencies = [ 379 "libc", 380 ] 381 382 [[package]] 383 name = "crossbeam-utils" 384 version = "0.7.2" 385 source = "registry+https://github.com/rust-lang/crates.io-index" 386 checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8" 387 dependencies = [ 388 "autocfg 1.1.0", 389 "cfg-if 0.1.10", 390 "lazy_static", 391 ] 392 393 [[package]] 394 name = "crypto-common" 395 version = "0.1.6" 396 source = "registry+https://github.com/rust-lang/crates.io-index" 397 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 398 dependencies = [ 399 "generic-array 0.14.6", 400 "rand_core 0.6.4", 401 "typenum", 402 ] 403 404 [[package]] 405 name = "ctor" 406 version = "0.1.26" 407 source = "registry+https://github.com/rust-lang/crates.io-index" 408 checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 409 dependencies = [ 410 "quote", 411 "syn", 412 ] 413 414 [[package]] 415 name = "ctr" 416 version = "0.9.2" 417 source = "registry+https://github.com/rust-lang/crates.io-index" 418 checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 419 dependencies = [ 420 "cipher", 421 ] 422 423 [[package]] 424 name = "cxx" 425 version = "1.0.81" 426 source = "registry+https://github.com/rust-lang/crates.io-index" 427 checksum = "97abf9f0eca9e52b7f81b945524e76710e6cb2366aead23b7d4fbf72e281f888" 428 dependencies = [ 429 "cc", 430 "cxxbridge-flags", 431 "cxxbridge-macro", 432 "link-cplusplus", 433 ] 434 435 [[package]] 436 name = "cxx-build" 437 version = "1.0.81" 438 source = "registry+https://github.com/rust-lang/crates.io-index" 439 checksum = "7cc32cc5fea1d894b77d269ddb9f192110069a8a9c1f1d441195fba90553dea3" 440 dependencies = [ 441 "cc", 442 "codespan-reporting", 443 "once_cell", 444 "proc-macro2", 445 "quote", 446 "scratch", 447 "syn", 448 ] 449 450 [[package]] 451 name = "cxxbridge-flags" 452 version = "1.0.81" 453 source = "registry+https://github.com/rust-lang/crates.io-index" 454 checksum = "8ca220e4794c934dc6b1207c3b42856ad4c302f2df1712e9f8d2eec5afaacf1f" 455 456 [[package]] 457 name = "cxxbridge-macro" 458 version = "1.0.81" 459 source = "registry+https://github.com/rust-lang/crates.io-index" 460 checksum = "b846f081361125bfc8dc9d3940c84e1fd83ba54bbca7b17cd29483c828be0704" 461 dependencies = [ 462 "proc-macro2", 463 "quote", 464 "syn", 465 ] 466 467 [[package]] 468 name = "darling" 469 version = "0.14.2" 470 source = "registry+https://github.com/rust-lang/crates.io-index" 471 checksum = "b0dd3cd20dc6b5a876612a6e5accfe7f3dd883db6d07acfbf14c128f61550dfa" 472 dependencies = [ 473 "darling_core", 474 "darling_macro", 475 ] 476 477 [[package]] 478 name = "darling_core" 479 version = "0.14.2" 480 source = "registry+https://github.com/rust-lang/crates.io-index" 481 checksum = "a784d2ccaf7c98501746bf0be29b2022ba41fd62a2e622af997a03e9f972859f" 482 dependencies = [ 483 "fnv", 484 "ident_case", 485 "proc-macro2", 486 "quote", 487 "strsim", 488 "syn", 489 ] 490 491 [[package]] 492 name = "darling_macro" 493 version = "0.14.2" 494 source = "registry+https://github.com/rust-lang/crates.io-index" 495 checksum = "7618812407e9402654622dd402b0a89dff9ba93badd6540781526117b92aab7e" 496 dependencies = [ 497 "darling_core", 498 "quote", 499 "syn", 500 ] 501 502 [[package]] 503 name = "derive_more" 504 version = "0.99.17" 505 source = "registry+https://github.com/rust-lang/crates.io-index" 506 checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 507 dependencies = [ 508 "convert_case", 509 "proc-macro2", 510 "quote", 511 "rustc_version 0.4.0", 512 "syn", 513 ] 514 515 [[package]] 516 name = "diff" 517 version = "0.1.13" 518 source = "registry+https://github.com/rust-lang/crates.io-index" 519 checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" 520 521 [[package]] 522 name = "digest" 523 version = "0.8.1" 524 source = "registry+https://github.com/rust-lang/crates.io-index" 525 checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" 526 dependencies = [ 527 "generic-array 0.12.4", 528 ] 529 530 [[package]] 531 name = "digest" 532 version = "0.10.5" 533 source = "registry+https://github.com/rust-lang/crates.io-index" 534 checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c" 535 dependencies = [ 536 "block-buffer 0.10.3", 537 "crypto-common", 538 "subtle", 539 ] 540 541 [[package]] 542 name = "encoding_rs" 543 version = "0.8.31" 544 source = "registry+https://github.com/rust-lang/crates.io-index" 545 checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 546 dependencies = [ 547 "cfg-if 1.0.0", 548 ] 549 550 [[package]] 551 name = "error-chain" 552 version = "0.12.4" 553 source = "registry+https://github.com/rust-lang/crates.io-index" 554 checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc" 555 dependencies = [ 556 "backtrace", 557 "version_check 0.9.4", 558 ] 559 560 [[package]] 561 name = "error-stack" 562 version = "0.2.4" 563 source = "registry+https://github.com/rust-lang/crates.io-index" 564 checksum = "859d224e04b2d93d974c08e375dac9b8d1a513846e44c6666450a57b1ed963f9" 565 dependencies = [ 566 "anyhow", 567 "owo-colors", 568 "rustc_version 0.4.0", 569 ] 570 571 [[package]] 572 name = "fake-simd" 573 version = "0.1.2" 574 source = "registry+https://github.com/rust-lang/crates.io-index" 575 checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" 576 577 [[package]] 578 name = "fastrand" 579 version = "1.8.0" 580 source = "registry+https://github.com/rust-lang/crates.io-index" 581 checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 582 dependencies = [ 583 "instant", 584 ] 585 586 [[package]] 587 name = "fnv" 588 version = "1.0.7" 589 source = "registry+https://github.com/rust-lang/crates.io-index" 590 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 591 592 [[package]] 593 name = "foreign-types" 594 version = "0.3.2" 595 source = "registry+https://github.com/rust-lang/crates.io-index" 596 checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 597 dependencies = [ 598 "foreign-types-shared", 599 ] 600 601 [[package]] 602 name = "foreign-types-shared" 603 version = "0.1.1" 604 source = "registry+https://github.com/rust-lang/crates.io-index" 605 checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 606 607 [[package]] 608 name = "form_urlencoded" 609 version = "1.1.0" 610 source = "registry+https://github.com/rust-lang/crates.io-index" 611 checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 612 dependencies = [ 613 "percent-encoding 2.2.0", 614 ] 615 616 [[package]] 617 name = "fuchsia-cprng" 618 version = "0.1.1" 619 source = "registry+https://github.com/rust-lang/crates.io-index" 620 checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" 621 622 [[package]] 623 name = "fuchsia-zircon" 624 version = "0.3.3" 625 source = "registry+https://github.com/rust-lang/crates.io-index" 626 checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" 627 dependencies = [ 628 "bitflags", 629 "fuchsia-zircon-sys", 630 ] 631 632 [[package]] 633 name = "fuchsia-zircon-sys" 634 version = "0.3.3" 635 source = "registry+https://github.com/rust-lang/crates.io-index" 636 checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" 637 638 [[package]] 639 name = "futures" 640 version = "0.1.31" 641 source = "registry+https://github.com/rust-lang/crates.io-index" 642 checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678" 643 644 [[package]] 645 name = "futures" 646 version = "0.3.25" 647 source = "registry+https://github.com/rust-lang/crates.io-index" 648 checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0" 649 dependencies = [ 650 "futures-channel", 651 "futures-core", 652 "futures-executor", 653 "futures-io", 654 "futures-sink", 655 "futures-task", 656 "futures-util", 657 ] 658 659 [[package]] 660 name = "futures-channel" 661 version = "0.3.25" 662 source = "registry+https://github.com/rust-lang/crates.io-index" 663 checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed" 664 dependencies = [ 665 "futures-core", 666 "futures-sink", 667 ] 668 669 [[package]] 670 name = "futures-core" 671 version = "0.3.25" 672 source = "registry+https://github.com/rust-lang/crates.io-index" 673 checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" 674 675 [[package]] 676 name = "futures-executor" 677 version = "0.3.25" 678 source = "registry+https://github.com/rust-lang/crates.io-index" 679 checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" 680 dependencies = [ 681 "futures-core", 682 "futures-task", 683 "futures-util", 684 ] 685 686 [[package]] 687 name = "futures-io" 688 version = "0.3.25" 689 source = "registry+https://github.com/rust-lang/crates.io-index" 690 checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" 691 692 [[package]] 693 name = "futures-macro" 694 version = "0.3.25" 695 source = "registry+https://github.com/rust-lang/crates.io-index" 696 checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" 697 dependencies = [ 698 "proc-macro2", 699 "quote", 700 "syn", 701 ] 702 703 [[package]] 704 name = "futures-sink" 705 version = "0.3.25" 706 source = "registry+https://github.com/rust-lang/crates.io-index" 707 checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9" 708 709 [[package]] 710 name = "futures-task" 711 version = "0.3.25" 712 source = "registry+https://github.com/rust-lang/crates.io-index" 713 checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea" 714 715 [[package]] 716 name = "futures-util" 717 version = "0.3.25" 718 source = "registry+https://github.com/rust-lang/crates.io-index" 719 checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6" 720 dependencies = [ 721 "futures-channel", 722 "futures-core", 723 "futures-io", 724 "futures-macro", 725 "futures-sink", 726 "futures-task", 727 "memchr", 728 "pin-project-lite", 729 "pin-utils", 730 "slab", 731 ] 732 733 [[package]] 734 name = "futures_codec" 735 version = "0.4.1" 736 source = "registry+https://github.com/rust-lang/crates.io-index" 737 checksum = "ce54d63f8b0c75023ed920d46fd71d0cbbb830b0ee012726b5b4f506fb6dea5b" 738 dependencies = [ 739 "bytes 0.5.6", 740 "futures 0.3.25", 741 "memchr", 742 "pin-project", 743 ] 744 745 [[package]] 746 name = "generic-array" 747 version = "0.12.4" 748 source = "registry+https://github.com/rust-lang/crates.io-index" 749 checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd" 750 dependencies = [ 751 "typenum", 752 ] 753 754 [[package]] 755 name = "generic-array" 756 version = "0.14.6" 757 source = "registry+https://github.com/rust-lang/crates.io-index" 758 checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 759 dependencies = [ 760 "typenum", 761 "version_check 0.9.4", 762 ] 763 764 [[package]] 765 name = "getrandom" 766 version = "0.2.8" 767 source = "registry+https://github.com/rust-lang/crates.io-index" 768 checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 769 dependencies = [ 770 "cfg-if 1.0.0", 771 "libc", 772 "wasi 0.11.0+wasi-snapshot-preview1", 773 ] 774 775 [[package]] 776 name = "ghash" 777 version = "0.5.0" 778 source = "registry+https://github.com/rust-lang/crates.io-index" 779 checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40" 780 dependencies = [ 781 "opaque-debug 0.3.0", 782 "polyval", 783 ] 784 785 [[package]] 786 name = "gimli" 787 version = "0.26.2" 788 source = "registry+https://github.com/rust-lang/crates.io-index" 789 checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" 790 791 [[package]] 792 name = "h2" 793 version = "0.3.15" 794 source = "registry+https://github.com/rust-lang/crates.io-index" 795 checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4" 796 dependencies = [ 797 "bytes 1.2.1", 798 "fnv", 799 "futures-core", 800 "futures-sink", 801 "futures-util", 802 "http", 803 "indexmap", 804 "slab", 805 "tokio", 806 "tokio-util", 807 "tracing", 808 ] 809 810 [[package]] 811 name = "hashbrown" 812 version = "0.12.3" 813 source = "registry+https://github.com/rust-lang/crates.io-index" 814 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 815 816 [[package]] 817 name = "headers" 818 version = "0.3.8" 819 source = "registry+https://github.com/rust-lang/crates.io-index" 820 checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" 821 dependencies = [ 822 "base64 0.13.1", 823 "bitflags", 824 "bytes 1.2.1", 825 "headers-core", 826 "http", 827 "httpdate", 828 "mime 0.3.16", 829 "sha1", 830 ] 831 832 [[package]] 833 name = "headers-core" 834 version = "0.2.0" 835 source = "registry+https://github.com/rust-lang/crates.io-index" 836 checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" 837 dependencies = [ 838 "http", 839 ] 840 841 [[package]] 842 name = "hermit-abi" 843 version = "0.1.19" 844 source = "registry+https://github.com/rust-lang/crates.io-index" 845 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 846 dependencies = [ 847 "libc", 848 ] 849 850 [[package]] 851 name = "hex" 852 version = "0.4.3" 853 source = "registry+https://github.com/rust-lang/crates.io-index" 854 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 855 856 [[package]] 857 name = "hkdf" 858 version = "0.12.3" 859 source = "registry+https://github.com/rust-lang/crates.io-index" 860 checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" 861 dependencies = [ 862 "hmac", 863 ] 864 865 [[package]] 866 name = "hmac" 867 version = "0.12.1" 868 source = "registry+https://github.com/rust-lang/crates.io-index" 869 checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 870 dependencies = [ 871 "digest 0.10.5", 872 ] 873 874 [[package]] 875 name = "http" 876 version = "0.2.8" 877 source = "registry+https://github.com/rust-lang/crates.io-index" 878 checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 879 dependencies = [ 880 "bytes 1.2.1", 881 "fnv", 882 "itoa", 883 ] 884 885 [[package]] 886 name = "http-body" 887 version = "0.4.5" 888 source = "registry+https://github.com/rust-lang/crates.io-index" 889 checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 890 dependencies = [ 891 "bytes 1.2.1", 892 "http", 893 "pin-project-lite", 894 ] 895 896 [[package]] 897 name = "httparse" 898 version = "1.8.0" 899 source = "registry+https://github.com/rust-lang/crates.io-index" 900 checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 901 902 [[package]] 903 name = "httpdate" 904 version = "1.0.2" 905 source = "registry+https://github.com/rust-lang/crates.io-index" 906 checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 907 908 [[package]] 909 name = "hyper" 910 version = "0.10.16" 911 source = "registry+https://github.com/rust-lang/crates.io-index" 912 checksum = "0a0652d9a2609a968c14be1a9ea00bf4b1d64e2e1f53a1b51b6fff3a6e829273" 913 dependencies = [ 914 "base64 0.9.3", 915 "httparse", 916 "language-tags", 917 "log 0.3.9", 918 "mime 0.2.6", 919 "num_cpus", 920 "time 0.1.44", 921 "traitobject", 922 "typeable", 923 "unicase", 924 "url 1.7.2", 925 ] 926 927 [[package]] 928 name = "hyper" 929 version = "0.14.23" 930 source = "registry+https://github.com/rust-lang/crates.io-index" 931 checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c" 932 dependencies = [ 933 "bytes 1.2.1", 934 "futures-channel", 935 "futures-core", 936 "futures-util", 937 "h2", 938 "http", 939 "http-body", 940 "httparse", 941 "httpdate", 942 "itoa", 943 "pin-project-lite", 944 "socket2", 945 "tokio", 946 "tower-service", 947 "tracing", 948 "want", 949 ] 950 951 [[package]] 952 name = "iana-time-zone" 953 version = "0.1.53" 954 source = "registry+https://github.com/rust-lang/crates.io-index" 955 checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" 956 dependencies = [ 957 "android_system_properties", 958 "core-foundation-sys", 959 "iana-time-zone-haiku", 960 "js-sys", 961 "wasm-bindgen", 962 "winapi 0.3.9", 963 ] 964 965 [[package]] 966 name = "iana-time-zone-haiku" 967 version = "0.1.1" 968 source = "registry+https://github.com/rust-lang/crates.io-index" 969 checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 970 dependencies = [ 971 "cxx", 972 "cxx-build", 973 ] 974 975 [[package]] 976 name = "ident_case" 977 version = "1.0.1" 978 source = "registry+https://github.com/rust-lang/crates.io-index" 979 checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 980 981 [[package]] 982 name = "idna" 983 version = "0.1.5" 984 source = "registry+https://github.com/rust-lang/crates.io-index" 985 checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" 986 dependencies = [ 987 "matches", 988 "unicode-bidi", 989 "unicode-normalization", 990 ] 991 992 [[package]] 993 name = "idna" 994 version = "0.3.0" 995 source = "registry+https://github.com/rust-lang/crates.io-index" 996 checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 997 dependencies = [ 998 "unicode-bidi", 999 "unicode-normalization", 1000 ] 1001 1002 [[package]] 1003 name = "indexmap" 1004 version = "1.9.1" 1005 source = "registry+https://github.com/rust-lang/crates.io-index" 1006 checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 1007 dependencies = [ 1008 "autocfg 1.1.0", 1009 "hashbrown", 1010 ] 1011 1012 [[package]] 1013 name = "inout" 1014 version = "0.1.3" 1015 source = "registry+https://github.com/rust-lang/crates.io-index" 1016 checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" 1017 dependencies = [ 1018 "generic-array 0.14.6", 1019 ] 1020 1021 [[package]] 1022 name = "instant" 1023 version = "0.1.12" 1024 source = "registry+https://github.com/rust-lang/crates.io-index" 1025 checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1026 dependencies = [ 1027 "cfg-if 1.0.0", 1028 ] 1029 1030 [[package]] 1031 name = "iovec" 1032 version = "0.1.4" 1033 source = "registry+https://github.com/rust-lang/crates.io-index" 1034 checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" 1035 dependencies = [ 1036 "libc", 1037 ] 1038 1039 [[package]] 1040 name = "is_ci" 1041 version = "1.1.1" 1042 source = "registry+https://github.com/rust-lang/crates.io-index" 1043 checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb" 1044 1045 [[package]] 1046 name = "itoa" 1047 version = "1.0.4" 1048 source = "registry+https://github.com/rust-lang/crates.io-index" 1049 checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc" 1050 1051 [[package]] 1052 name = "js-sys" 1053 version = "0.3.60" 1054 source = "registry+https://github.com/rust-lang/crates.io-index" 1055 checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" 1056 dependencies = [ 1057 "wasm-bindgen", 1058 ] 1059 1060 [[package]] 1061 name = "jwt" 1062 version = "0.16.0" 1063 source = "registry+https://github.com/rust-lang/crates.io-index" 1064 checksum = "6204285f77fe7d9784db3fdc449ecce1a0114927a51d5a41c4c7a292011c015f" 1065 dependencies = [ 1066 "base64 0.13.1", 1067 "crypto-common", 1068 "digest 0.10.5", 1069 "hmac", 1070 "serde", 1071 "serde_json", 1072 "sha2", 1073 ] 1074 1075 [[package]] 1076 name = "kernel32-sys" 1077 version = "0.2.2" 1078 source = "registry+https://github.com/rust-lang/crates.io-index" 1079 checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 1080 dependencies = [ 1081 "winapi 0.2.8", 1082 "winapi-build", 1083 ] 1084 1085 [[package]] 1086 name = "language-tags" 1087 version = "0.2.2" 1088 source = "registry+https://github.com/rust-lang/crates.io-index" 1089 checksum = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a" 1090 1091 [[package]] 1092 name = "lazy_static" 1093 version = "1.4.0" 1094 source = "registry+https://github.com/rust-lang/crates.io-index" 1095 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1096 1097 [[package]] 1098 name = "libc" 1099 version = "0.2.137" 1100 source = "registry+https://github.com/rust-lang/crates.io-index" 1101 checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" 1102 1103 [[package]] 1104 name = "link-cplusplus" 1105 version = "1.0.7" 1106 source = "registry+https://github.com/rust-lang/crates.io-index" 1107 checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369" 1108 dependencies = [ 1109 "cc", 1110 ] 1111 1112 [[package]] 1113 name = "lock_api" 1114 version = "0.3.4" 1115 source = "registry+https://github.com/rust-lang/crates.io-index" 1116 checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75" 1117 dependencies = [ 1118 "scopeguard", 1119 ] 1120 1121 [[package]] 1122 name = "lock_api" 1123 version = "0.4.9" 1124 source = "registry+https://github.com/rust-lang/crates.io-index" 1125 checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1126 dependencies = [ 1127 "autocfg 1.1.0", 1128 "scopeguard", 1129 ] 1130 1131 [[package]] 1132 name = "log" 1133 version = "0.3.9" 1134 source = "registry+https://github.com/rust-lang/crates.io-index" 1135 checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" 1136 dependencies = [ 1137 "log 0.4.17", 1138 ] 1139 1140 [[package]] 1141 name = "log" 1142 version = "0.4.17" 1143 source = "registry+https://github.com/rust-lang/crates.io-index" 1144 checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1145 dependencies = [ 1146 "cfg-if 1.0.0", 1147 ] 1148 1149 [[package]] 1150 name = "matches" 1151 version = "0.1.9" 1152 source = "registry+https://github.com/rust-lang/crates.io-index" 1153 checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 1154 1155 [[package]] 1156 name = "maybe-uninit" 1157 version = "2.0.0" 1158 source = "registry+https://github.com/rust-lang/crates.io-index" 1159 checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" 1160 1161 [[package]] 1162 name = "memchr" 1163 version = "2.5.0" 1164 source = "registry+https://github.com/rust-lang/crates.io-index" 1165 checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1166 1167 [[package]] 1168 name = "mime" 1169 version = "0.2.6" 1170 source = "registry+https://github.com/rust-lang/crates.io-index" 1171 checksum = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0" 1172 dependencies = [ 1173 "log 0.3.9", 1174 ] 1175 1176 [[package]] 1177 name = "mime" 1178 version = "0.3.16" 1179 source = "registry+https://github.com/rust-lang/crates.io-index" 1180 checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 1181 1182 [[package]] 1183 name = "miniz_oxide" 1184 version = "0.5.4" 1185 source = "registry+https://github.com/rust-lang/crates.io-index" 1186 checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34" 1187 dependencies = [ 1188 "adler", 1189 ] 1190 1191 [[package]] 1192 name = "mio" 1193 version = "0.6.23" 1194 source = "registry+https://github.com/rust-lang/crates.io-index" 1195 checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" 1196 dependencies = [ 1197 "cfg-if 0.1.10", 1198 "fuchsia-zircon", 1199 "fuchsia-zircon-sys", 1200 "iovec", 1201 "kernel32-sys", 1202 "libc", 1203 "log 0.4.17", 1204 "miow", 1205 "net2", 1206 "slab", 1207 "winapi 0.2.8", 1208 ] 1209 1210 [[package]] 1211 name = "mio" 1212 version = "0.8.5" 1213 source = "registry+https://github.com/rust-lang/crates.io-index" 1214 checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de" 1215 dependencies = [ 1216 "libc", 1217 "log 0.4.17", 1218 "wasi 0.11.0+wasi-snapshot-preview1", 1219 "windows-sys 0.42.0", 1220 ] 1221 1222 [[package]] 1223 name = "miow" 1224 version = "0.2.2" 1225 source = "registry+https://github.com/rust-lang/crates.io-index" 1226 checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" 1227 dependencies = [ 1228 "kernel32-sys", 1229 "net2", 1230 "winapi 0.2.8", 1231 "ws2_32-sys", 1232 ] 1233 1234 [[package]] 1235 name = "more-asserts" 1236 version = "0.3.1" 1237 source = "registry+https://github.com/rust-lang/crates.io-index" 1238 checksum = "1fafa6961cabd9c63bcd77a45d7e3b7f3b552b70417831fb0f56db717e72407e" 1239 1240 [[package]] 1241 name = "multer" 1242 version = "2.0.4" 1243 source = "registry+https://github.com/rust-lang/crates.io-index" 1244 checksum = "6ed4198ce7a4cbd2a57af78d28c6fbb57d81ac5f1d6ad79ac6c5587419cbdf22" 1245 dependencies = [ 1246 "bytes 1.2.1", 1247 "encoding_rs", 1248 "futures-util", 1249 "http", 1250 "httparse", 1251 "log 0.4.17", 1252 "memchr", 1253 "mime 0.3.16", 1254 "spin", 1255 "tokio", 1256 "version_check 0.9.4", 1257 ] 1258 1259 [[package]] 1260 name = "native-tls" 1261 version = "0.2.11" 1262 source = "registry+https://github.com/rust-lang/crates.io-index" 1263 checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 1264 dependencies = [ 1265 "lazy_static", 1266 "libc", 1267 "log 0.4.17", 1268 "openssl", 1269 "openssl-probe", 1270 "openssl-sys", 1271 "schannel", 1272 "security-framework", 1273 "security-framework-sys", 1274 "tempfile", 1275 ] 1276 1277 [[package]] 1278 name = "net2" 1279 version = "0.2.38" 1280 source = "registry+https://github.com/rust-lang/crates.io-index" 1281 checksum = "74d0df99cfcd2530b2e694f6e17e7f37b8e26bb23983ac530c0c97408837c631" 1282 dependencies = [ 1283 "cfg-if 0.1.10", 1284 "libc", 1285 "winapi 0.3.9", 1286 ] 1287 1288 [[package]] 1289 name = "nu-ansi-term" 1290 version = "0.46.0" 1291 source = "registry+https://github.com/rust-lang/crates.io-index" 1292 checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1293 dependencies = [ 1294 "overload", 1295 "winapi 0.3.9", 1296 ] 1297 1298 [[package]] 1299 name = "num-integer" 1300 version = "0.1.45" 1301 source = "registry+https://github.com/rust-lang/crates.io-index" 1302 checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1303 dependencies = [ 1304 "autocfg 1.1.0", 1305 "num-traits", 1306 ] 1307 1308 [[package]] 1309 name = "num-traits" 1310 version = "0.2.15" 1311 source = "registry+https://github.com/rust-lang/crates.io-index" 1312 checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1313 dependencies = [ 1314 "autocfg 1.1.0", 1315 ] 1316 1317 [[package]] 1318 name = "num_cpus" 1319 version = "1.14.0" 1320 source = "registry+https://github.com/rust-lang/crates.io-index" 1321 checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5" 1322 dependencies = [ 1323 "hermit-abi", 1324 "libc", 1325 ] 1326 1327 [[package]] 1328 name = "object" 1329 version = "0.29.0" 1330 source = "registry+https://github.com/rust-lang/crates.io-index" 1331 checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" 1332 dependencies = [ 1333 "memchr", 1334 ] 1335 1336 [[package]] 1337 name = "once_cell" 1338 version = "1.16.0" 1339 source = "registry+https://github.com/rust-lang/crates.io-index" 1340 checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" 1341 1342 [[package]] 1343 name = "opaque-debug" 1344 version = "0.2.3" 1345 source = "registry+https://github.com/rust-lang/crates.io-index" 1346 checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" 1347 1348 [[package]] 1349 name = "opaque-debug" 1350 version = "0.3.0" 1351 source = "registry+https://github.com/rust-lang/crates.io-index" 1352 checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 1353 1354 [[package]] 1355 name = "openssl" 1356 version = "0.10.42" 1357 source = "registry+https://github.com/rust-lang/crates.io-index" 1358 checksum = "12fc0523e3bd51a692c8850d075d74dc062ccf251c0110668cbd921917118a13" 1359 dependencies = [ 1360 "bitflags", 1361 "cfg-if 1.0.0", 1362 "foreign-types", 1363 "libc", 1364 "once_cell", 1365 "openssl-macros", 1366 "openssl-sys", 1367 ] 1368 1369 [[package]] 1370 name = "openssl-macros" 1371 version = "0.1.0" 1372 source = "registry+https://github.com/rust-lang/crates.io-index" 1373 checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 1374 dependencies = [ 1375 "proc-macro2", 1376 "quote", 1377 "syn", 1378 ] 1379 1380 [[package]] 1381 name = "openssl-probe" 1382 version = "0.1.5" 1383 source = "registry+https://github.com/rust-lang/crates.io-index" 1384 checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1385 1386 [[package]] 1387 name = "openssl-sys" 1388 version = "0.9.77" 1389 source = "registry+https://github.com/rust-lang/crates.io-index" 1390 checksum = "b03b84c3b2d099b81f0953422b4d4ad58761589d0229b5506356afca05a3670a" 1391 dependencies = [ 1392 "autocfg 1.1.0", 1393 "cc", 1394 "libc", 1395 "pkg-config", 1396 "vcpkg", 1397 ] 1398 1399 [[package]] 1400 name = "output_vt100" 1401 version = "0.1.3" 1402 source = "registry+https://github.com/rust-lang/crates.io-index" 1403 checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66" 1404 dependencies = [ 1405 "winapi 0.3.9", 1406 ] 1407 1408 [[package]] 1409 name = "overload" 1410 version = "0.1.1" 1411 source = "registry+https://github.com/rust-lang/crates.io-index" 1412 checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1413 1414 [[package]] 1415 name = "owo-colors" 1416 version = "3.5.0" 1417 source = "registry+https://github.com/rust-lang/crates.io-index" 1418 checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" 1419 dependencies = [ 1420 "supports-color", 1421 ] 1422 1423 [[package]] 1424 name = "parking_lot" 1425 version = "0.9.0" 1426 source = "registry+https://github.com/rust-lang/crates.io-index" 1427 checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252" 1428 dependencies = [ 1429 "lock_api 0.3.4", 1430 "parking_lot_core 0.6.2", 1431 "rustc_version 0.2.3", 1432 ] 1433 1434 [[package]] 1435 name = "parking_lot" 1436 version = "0.12.1" 1437 source = "registry+https://github.com/rust-lang/crates.io-index" 1438 checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1439 dependencies = [ 1440 "lock_api 0.4.9", 1441 "parking_lot_core 0.9.4", 1442 ] 1443 1444 [[package]] 1445 name = "parking_lot_core" 1446 version = "0.6.2" 1447 source = "registry+https://github.com/rust-lang/crates.io-index" 1448 checksum = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b" 1449 dependencies = [ 1450 "cfg-if 0.1.10", 1451 "cloudabi", 1452 "libc", 1453 "redox_syscall 0.1.57", 1454 "rustc_version 0.2.3", 1455 "smallvec 0.6.14", 1456 "winapi 0.3.9", 1457 ] 1458 1459 [[package]] 1460 name = "parking_lot_core" 1461 version = "0.9.4" 1462 source = "registry+https://github.com/rust-lang/crates.io-index" 1463 checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0" 1464 dependencies = [ 1465 "cfg-if 1.0.0", 1466 "libc", 1467 "redox_syscall 0.2.16", 1468 "smallvec 1.10.0", 1469 "windows-sys 0.42.0", 1470 ] 1471 1472 [[package]] 1473 name = "percent-encoding" 1474 version = "1.0.1" 1475 source = "registry+https://github.com/rust-lang/crates.io-index" 1476 checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" 1477 1478 [[package]] 1479 name = "percent-encoding" 1480 version = "2.2.0" 1481 source = "registry+https://github.com/rust-lang/crates.io-index" 1482 checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1483 1484 [[package]] 1485 name = "pin-project" 1486 version = "0.4.30" 1487 source = "registry+https://github.com/rust-lang/crates.io-index" 1488 checksum = "3ef0f924a5ee7ea9cbcea77529dba45f8a9ba9f622419fe3386ca581a3ae9d5a" 1489 dependencies = [ 1490 "pin-project-internal", 1491 ] 1492 1493 [[package]] 1494 name = "pin-project-internal" 1495 version = "0.4.30" 1496 source = "registry+https://github.com/rust-lang/crates.io-index" 1497 checksum = "851c8d0ce9bebe43790dedfc86614c23494ac9f423dd618d3a61fc693eafe61e" 1498 dependencies = [ 1499 "proc-macro2", 1500 "quote", 1501 "syn", 1502 ] 1503 1504 [[package]] 1505 name = "pin-project-lite" 1506 version = "0.2.9" 1507 source = "registry+https://github.com/rust-lang/crates.io-index" 1508 checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1509 1510 [[package]] 1511 name = "pin-utils" 1512 version = "0.1.0" 1513 source = "registry+https://github.com/rust-lang/crates.io-index" 1514 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1515 1516 [[package]] 1517 name = "pkg-config" 1518 version = "0.3.26" 1519 source = "registry+https://github.com/rust-lang/crates.io-index" 1520 checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 1521 1522 [[package]] 1523 name = "poem" 1524 version = "1.3.48" 1525 source = "registry+https://github.com/rust-lang/crates.io-index" 1526 checksum = "260f16c6c484d4a3920efc81df282a529381fd3e4f35b19e6a9e7181a5990478" 1527 dependencies = [ 1528 "async-trait", 1529 "base64 0.13.1", 1530 "bytes 1.2.1", 1531 "chrono", 1532 "cookie", 1533 "futures-util", 1534 "headers", 1535 "http", 1536 "hyper 0.14.23", 1537 "mime 0.3.16", 1538 "multer", 1539 "parking_lot 0.12.1", 1540 "percent-encoding 2.2.0", 1541 "pin-project-lite", 1542 "poem-derive", 1543 "quick-xml 0.25.0", 1544 "regex", 1545 "rfc7239", 1546 "serde", 1547 "serde_json", 1548 "serde_urlencoded", 1549 "smallvec 1.10.0", 1550 "sse-codec", 1551 "tempfile", 1552 "thiserror", 1553 "time 0.3.17", 1554 "tokio", 1555 "tokio-stream", 1556 "tokio-tungstenite", 1557 "tokio-util", 1558 "tracing", 1559 ] 1560 1561 [[package]] 1562 name = "poem-derive" 1563 version = "1.3.48" 1564 source = "registry+https://github.com/rust-lang/crates.io-index" 1565 checksum = "d372ab8ac89eec1c2551f04bf15b021c41fbb66d0920bd42772da802cf891413" 1566 dependencies = [ 1567 "proc-macro-crate", 1568 "proc-macro2", 1569 "quote", 1570 "syn", 1571 ] 1572 1573 [[package]] 1574 name = "poem-openapi" 1575 version = "2.0.19" 1576 source = "registry+https://github.com/rust-lang/crates.io-index" 1577 checksum = "e68158d48bdd60ac602f0c208d883968c649f129490db8aa53d8c1b6d23a2413" 1578 dependencies = [ 1579 "base64 0.13.1", 1580 "bytes 1.2.1", 1581 "derive_more", 1582 "futures-util", 1583 "mime 0.3.16", 1584 "num-traits", 1585 "poem", 1586 "poem-openapi-derive", 1587 "quick-xml 0.23.1", 1588 "regex", 1589 "serde", 1590 "serde_json", 1591 "serde_urlencoded", 1592 "serde_yaml", 1593 "thiserror", 1594 "tokio", 1595 ] 1596 1597 [[package]] 1598 name = "poem-openapi-derive" 1599 version = "2.0.19" 1600 source = "registry+https://github.com/rust-lang/crates.io-index" 1601 checksum = "e0609f742c168bf91759a1558d4c2d2d279cfa856e39f2b24d12e1f95f998d2f" 1602 dependencies = [ 1603 "darling", 1604 "http", 1605 "indexmap", 1606 "mime 0.3.16", 1607 "proc-macro-crate", 1608 "proc-macro2", 1609 "quote", 1610 "regex", 1611 "syn", 1612 "thiserror", 1613 ] 1614 1615 [[package]] 1616 name = "polyval" 1617 version = "0.6.0" 1618 source = "registry+https://github.com/rust-lang/crates.io-index" 1619 checksum = "7ef234e08c11dfcb2e56f79fd70f6f2eb7f025c0ce2333e82f4f0518ecad30c6" 1620 dependencies = [ 1621 "cfg-if 1.0.0", 1622 "cpufeatures", 1623 "opaque-debug 0.3.0", 1624 "universal-hash", 1625 ] 1626 1627 [[package]] 1628 name = "ppv-lite86" 1629 version = "0.2.17" 1630 source = "registry+https://github.com/rust-lang/crates.io-index" 1631 checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1632 1633 [[package]] 1634 name = "pretty_assertions" 1635 version = "1.3.0" 1636 source = "registry+https://github.com/rust-lang/crates.io-index" 1637 checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" 1638 dependencies = [ 1639 "ctor", 1640 "diff", 1641 "output_vt100", 1642 "yansi", 1643 ] 1644 1645 [[package]] 1646 name = "proc-macro-crate" 1647 version = "1.2.1" 1648 source = "registry+https://github.com/rust-lang/crates.io-index" 1649 checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9" 1650 dependencies = [ 1651 "once_cell", 1652 "thiserror", 1653 "toml", 1654 ] 1655 1656 [[package]] 1657 name = "proc-macro2" 1658 version = "1.0.47" 1659 source = "registry+https://github.com/rust-lang/crates.io-index" 1660 checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725" 1661 dependencies = [ 1662 "unicode-ident", 1663 ] 1664 1665 [[package]] 1666 name = "quick-xml" 1667 version = "0.23.1" 1668 source = "registry+https://github.com/rust-lang/crates.io-index" 1669 checksum = "11bafc859c6815fbaffbbbf4229ecb767ac913fecb27f9ad4343662e9ef099ea" 1670 dependencies = [ 1671 "memchr", 1672 "serde", 1673 ] 1674 1675 [[package]] 1676 name = "quick-xml" 1677 version = "0.25.0" 1678 source = "registry+https://github.com/rust-lang/crates.io-index" 1679 checksum = "58e21a144a0ffb5fad7b464babcdab934a325ad69b7c0373bcfef5cbd9799ca9" 1680 dependencies = [ 1681 "memchr", 1682 "serde", 1683 ] 1684 1685 [[package]] 1686 name = "quote" 1687 version = "1.0.21" 1688 source = "registry+https://github.com/rust-lang/crates.io-index" 1689 checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" 1690 dependencies = [ 1691 "proc-macro2", 1692 ] 1693 1694 [[package]] 1695 name = "rand" 1696 version = "0.6.5" 1697 source = "registry+https://github.com/rust-lang/crates.io-index" 1698 checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" 1699 dependencies = [ 1700 "autocfg 0.1.8", 1701 "libc", 1702 "rand_chacha 0.1.1", 1703 "rand_core 0.4.2", 1704 "rand_hc", 1705 "rand_isaac", 1706 "rand_jitter", 1707 "rand_os", 1708 "rand_pcg", 1709 "rand_xorshift", 1710 "winapi 0.3.9", 1711 ] 1712 1713 [[package]] 1714 name = "rand" 1715 version = "0.8.5" 1716 source = "registry+https://github.com/rust-lang/crates.io-index" 1717 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1718 dependencies = [ 1719 "libc", 1720 "rand_chacha 0.3.1", 1721 "rand_core 0.6.4", 1722 ] 1723 1724 [[package]] 1725 name = "rand_chacha" 1726 version = "0.1.1" 1727 source = "registry+https://github.com/rust-lang/crates.io-index" 1728 checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" 1729 dependencies = [ 1730 "autocfg 0.1.8", 1731 "rand_core 0.3.1", 1732 ] 1733 1734 [[package]] 1735 name = "rand_chacha" 1736 version = "0.3.1" 1737 source = "registry+https://github.com/rust-lang/crates.io-index" 1738 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1739 dependencies = [ 1740 "ppv-lite86", 1741 "rand_core 0.6.4", 1742 ] 1743 1744 [[package]] 1745 name = "rand_core" 1746 version = "0.3.1" 1747 source = "registry+https://github.com/rust-lang/crates.io-index" 1748 checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" 1749 dependencies = [ 1750 "rand_core 0.4.2", 1751 ] 1752 1753 [[package]] 1754 name = "rand_core" 1755 version = "0.4.2" 1756 source = "registry+https://github.com/rust-lang/crates.io-index" 1757 checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" 1758 1759 [[package]] 1760 name = "rand_core" 1761 version = "0.6.4" 1762 source = "registry+https://github.com/rust-lang/crates.io-index" 1763 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1764 dependencies = [ 1765 "getrandom", 1766 ] 1767 1768 [[package]] 1769 name = "rand_hc" 1770 version = "0.1.0" 1771 source = "registry+https://github.com/rust-lang/crates.io-index" 1772 checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" 1773 dependencies = [ 1774 "rand_core 0.3.1", 1775 ] 1776 1777 [[package]] 1778 name = "rand_isaac" 1779 version = "0.1.1" 1780 source = "registry+https://github.com/rust-lang/crates.io-index" 1781 checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" 1782 dependencies = [ 1783 "rand_core 0.3.1", 1784 ] 1785 1786 [[package]] 1787 name = "rand_jitter" 1788 version = "0.1.4" 1789 source = "registry+https://github.com/rust-lang/crates.io-index" 1790 checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" 1791 dependencies = [ 1792 "libc", 1793 "rand_core 0.4.2", 1794 "winapi 0.3.9", 1795 ] 1796 1797 [[package]] 1798 name = "rand_os" 1799 version = "0.1.3" 1800 source = "registry+https://github.com/rust-lang/crates.io-index" 1801 checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" 1802 dependencies = [ 1803 "cloudabi", 1804 "fuchsia-cprng", 1805 "libc", 1806 "rand_core 0.4.2", 1807 "rdrand", 1808 "winapi 0.3.9", 1809 ] 1810 1811 [[package]] 1812 name = "rand_pcg" 1813 version = "0.1.2" 1814 source = "registry+https://github.com/rust-lang/crates.io-index" 1815 checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" 1816 dependencies = [ 1817 "autocfg 0.1.8", 1818 "rand_core 0.4.2", 1819 ] 1820 1821 [[package]] 1822 name = "rand_xorshift" 1823 version = "0.1.1" 1824 source = "registry+https://github.com/rust-lang/crates.io-index" 1825 checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" 1826 dependencies = [ 1827 "rand_core 0.3.1", 1828 ] 1829 1830 [[package]] 1831 name = "rdrand" 1832 version = "0.4.0" 1833 source = "registry+https://github.com/rust-lang/crates.io-index" 1834 checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 1835 dependencies = [ 1836 "rand_core 0.3.1", 1837 ] 1838 1839 [[package]] 1840 name = "redox_syscall" 1841 version = "0.1.57" 1842 source = "registry+https://github.com/rust-lang/crates.io-index" 1843 checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" 1844 1845 [[package]] 1846 name = "redox_syscall" 1847 version = "0.2.16" 1848 source = "registry+https://github.com/rust-lang/crates.io-index" 1849 checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1850 dependencies = [ 1851 "bitflags", 1852 ] 1853 1854 [[package]] 1855 name = "regex" 1856 version = "1.7.0" 1857 source = "registry+https://github.com/rust-lang/crates.io-index" 1858 checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" 1859 dependencies = [ 1860 "aho-corasick", 1861 "memchr", 1862 "regex-syntax", 1863 ] 1864 1865 [[package]] 1866 name = "regex-syntax" 1867 version = "0.6.28" 1868 source = "registry+https://github.com/rust-lang/crates.io-index" 1869 checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 1870 1871 [[package]] 1872 name = "remove_dir_all" 1873 version = "0.5.3" 1874 source = "registry+https://github.com/rust-lang/crates.io-index" 1875 checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 1876 dependencies = [ 1877 "winapi 0.3.9", 1878 ] 1879 1880 [[package]] 1881 name = "rfc7239" 1882 version = "0.1.0" 1883 source = "registry+https://github.com/rust-lang/crates.io-index" 1884 checksum = "087317b3cf7eb481f13bd9025d729324b7cd068d6f470e2d76d049e191f5ba47" 1885 dependencies = [ 1886 "uncased", 1887 ] 1888 1889 [[package]] 1890 name = "rustc-demangle" 1891 version = "0.1.21" 1892 source = "registry+https://github.com/rust-lang/crates.io-index" 1893 checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 1894 1895 [[package]] 1896 name = "rustc_version" 1897 version = "0.2.3" 1898 source = "registry+https://github.com/rust-lang/crates.io-index" 1899 checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" 1900 dependencies = [ 1901 "semver 0.9.0", 1902 ] 1903 1904 [[package]] 1905 name = "rustc_version" 1906 version = "0.4.0" 1907 source = "registry+https://github.com/rust-lang/crates.io-index" 1908 checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1909 dependencies = [ 1910 "semver 1.0.14", 1911 ] 1912 1913 [[package]] 1914 name = "rustflake" 1915 version = "0.1.1" 1916 source = "registry+https://github.com/rust-lang/crates.io-index" 1917 checksum = "3fd2a23c7b59744081b34eadc799cda78e9471f333fe265c1dae05ab70d5ac94" 1918 dependencies = [ 1919 "chrono", 1920 "parking_lot 0.9.0", 1921 ] 1922 1923 [[package]] 1924 name = "ryu" 1925 version = "1.0.11" 1926 source = "registry+https://github.com/rust-lang/crates.io-index" 1927 checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" 1928 1929 [[package]] 1930 name = "safemem" 1931 version = "0.3.3" 1932 source = "registry+https://github.com/rust-lang/crates.io-index" 1933 checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 1934 1935 [[package]] 1936 name = "schannel" 1937 version = "0.1.20" 1938 source = "registry+https://github.com/rust-lang/crates.io-index" 1939 checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" 1940 dependencies = [ 1941 "lazy_static", 1942 "windows-sys 0.36.1", 1943 ] 1944 1945 [[package]] 1946 name = "scopeguard" 1947 version = "1.1.0" 1948 source = "registry+https://github.com/rust-lang/crates.io-index" 1949 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1950 1951 [[package]] 1952 name = "scratch" 1953 version = "1.0.2" 1954 source = "registry+https://github.com/rust-lang/crates.io-index" 1955 checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898" 1956 1957 [[package]] 1958 name = "scuttlebutt" 1959 version = "0.1.0" 1960 dependencies = [ 1961 "anyhow", 1962 "base64 0.13.1", 1963 "cassandra-cpp", 1964 "chrono", 1965 "ctor", 1966 "error-stack", 1967 "hex", 1968 "hmac", 1969 "jwt", 1970 "log 0.4.17", 1971 "more-asserts", 1972 "poem", 1973 "poem-openapi", 1974 "pretty_assertions", 1975 "rand 0.8.5", 1976 "rustflake", 1977 "serde", 1978 "serde_json", 1979 "sha2", 1980 "thiserror", 1981 "tokio", 1982 "tracing-subscriber", 1983 ] 1984 1985 [[package]] 1986 name = "security-framework" 1987 version = "2.7.0" 1988 source = "registry+https://github.com/rust-lang/crates.io-index" 1989 checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c" 1990 dependencies = [ 1991 "bitflags", 1992 "core-foundation", 1993 "core-foundation-sys", 1994 "libc", 1995 "security-framework-sys", 1996 ] 1997 1998 [[package]] 1999 name = "security-framework-sys" 2000 version = "2.6.1" 2001 source = "registry+https://github.com/rust-lang/crates.io-index" 2002 checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 2003 dependencies = [ 2004 "core-foundation-sys", 2005 "libc", 2006 ] 2007 2008 [[package]] 2009 name = "semver" 2010 version = "0.9.0" 2011 source = "registry+https://github.com/rust-lang/crates.io-index" 2012 checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 2013 dependencies = [ 2014 "semver-parser", 2015 ] 2016 2017 [[package]] 2018 name = "semver" 2019 version = "1.0.14" 2020 source = "registry+https://github.com/rust-lang/crates.io-index" 2021 checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4" 2022 2023 [[package]] 2024 name = "semver-parser" 2025 version = "0.7.0" 2026 source = "registry+https://github.com/rust-lang/crates.io-index" 2027 checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 2028 2029 [[package]] 2030 name = "serde" 2031 version = "1.0.147" 2032 source = "registry+https://github.com/rust-lang/crates.io-index" 2033 checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965" 2034 dependencies = [ 2035 "serde_derive", 2036 ] 2037 2038 [[package]] 2039 name = "serde_derive" 2040 version = "1.0.147" 2041 source = "registry+https://github.com/rust-lang/crates.io-index" 2042 checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852" 2043 dependencies = [ 2044 "proc-macro2", 2045 "quote", 2046 "syn", 2047 ] 2048 2049 [[package]] 2050 name = "serde_json" 2051 version = "1.0.87" 2052 source = "registry+https://github.com/rust-lang/crates.io-index" 2053 checksum = "6ce777b7b150d76b9cf60d28b55f5847135a003f7d7350c6be7a773508ce7d45" 2054 dependencies = [ 2055 "itoa", 2056 "ryu", 2057 "serde", 2058 ] 2059 2060 [[package]] 2061 name = "serde_urlencoded" 2062 version = "0.7.1" 2063 source = "registry+https://github.com/rust-lang/crates.io-index" 2064 checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2065 dependencies = [ 2066 "form_urlencoded", 2067 "itoa", 2068 "ryu", 2069 "serde", 2070 ] 2071 2072 [[package]] 2073 name = "serde_yaml" 2074 version = "0.9.14" 2075 source = "registry+https://github.com/rust-lang/crates.io-index" 2076 checksum = "6d232d893b10de3eb7258ff01974d6ee20663d8e833263c99409d4b13a0209da" 2077 dependencies = [ 2078 "indexmap", 2079 "itoa", 2080 "ryu", 2081 "serde", 2082 "unsafe-libyaml", 2083 ] 2084 2085 [[package]] 2086 name = "sha-1" 2087 version = "0.8.2" 2088 source = "registry+https://github.com/rust-lang/crates.io-index" 2089 checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df" 2090 dependencies = [ 2091 "block-buffer 0.7.3", 2092 "digest 0.8.1", 2093 "fake-simd", 2094 "opaque-debug 0.2.3", 2095 ] 2096 2097 [[package]] 2098 name = "sha-1" 2099 version = "0.10.0" 2100 source = "registry+https://github.com/rust-lang/crates.io-index" 2101 checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f" 2102 dependencies = [ 2103 "cfg-if 1.0.0", 2104 "cpufeatures", 2105 "digest 0.10.5", 2106 ] 2107 2108 [[package]] 2109 name = "sha1" 2110 version = "0.10.5" 2111 source = "registry+https://github.com/rust-lang/crates.io-index" 2112 checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 2113 dependencies = [ 2114 "cfg-if 1.0.0", 2115 "cpufeatures", 2116 "digest 0.10.5", 2117 ] 2118 2119 [[package]] 2120 name = "sha2" 2121 version = "0.10.6" 2122 source = "registry+https://github.com/rust-lang/crates.io-index" 2123 checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 2124 dependencies = [ 2125 "cfg-if 1.0.0", 2126 "cpufeatures", 2127 "digest 0.10.5", 2128 ] 2129 2130 [[package]] 2131 name = "sharded-slab" 2132 version = "0.1.4" 2133 source = "registry+https://github.com/rust-lang/crates.io-index" 2134 checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 2135 dependencies = [ 2136 "lazy_static", 2137 ] 2138 2139 [[package]] 2140 name = "signal-hook-registry" 2141 version = "1.4.0" 2142 source = "registry+https://github.com/rust-lang/crates.io-index" 2143 checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 2144 dependencies = [ 2145 "libc", 2146 ] 2147 2148 [[package]] 2149 name = "slab" 2150 version = "0.4.7" 2151 source = "registry+https://github.com/rust-lang/crates.io-index" 2152 checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 2153 dependencies = [ 2154 "autocfg 1.1.0", 2155 ] 2156 2157 [[package]] 2158 name = "slog" 2159 version = "2.7.0" 2160 source = "registry+https://github.com/rust-lang/crates.io-index" 2161 checksum = "8347046d4ebd943127157b94d63abb990fcf729dc4e9978927fdf4ac3c998d06" 2162 2163 [[package]] 2164 name = "smallvec" 2165 version = "0.6.14" 2166 source = "registry+https://github.com/rust-lang/crates.io-index" 2167 checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0" 2168 dependencies = [ 2169 "maybe-uninit", 2170 ] 2171 2172 [[package]] 2173 name = "smallvec" 2174 version = "1.10.0" 2175 source = "registry+https://github.com/rust-lang/crates.io-index" 2176 checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 2177 2178 [[package]] 2179 name = "socket2" 2180 version = "0.4.7" 2181 source = "registry+https://github.com/rust-lang/crates.io-index" 2182 checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" 2183 dependencies = [ 2184 "libc", 2185 "winapi 0.3.9", 2186 ] 2187 2188 [[package]] 2189 name = "spin" 2190 version = "0.9.4" 2191 source = "registry+https://github.com/rust-lang/crates.io-index" 2192 checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09" 2193 2194 [[package]] 2195 name = "sse-codec" 2196 version = "0.3.2" 2197 source = "registry+https://github.com/rust-lang/crates.io-index" 2198 checksum = "84a59f811350c44b4a037aabeb72dc6a9591fc22aa95a036db9a96297c58085a" 2199 dependencies = [ 2200 "bytes 0.5.6", 2201 "futures-io", 2202 "futures_codec", 2203 "memchr", 2204 ] 2205 2206 [[package]] 2207 name = "strsim" 2208 version = "0.10.0" 2209 source = "registry+https://github.com/rust-lang/crates.io-index" 2210 checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2211 2212 [[package]] 2213 name = "subtle" 2214 version = "2.4.1" 2215 source = "registry+https://github.com/rust-lang/crates.io-index" 2216 checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 2217 2218 [[package]] 2219 name = "supports-color" 2220 version = "1.3.1" 2221 source = "registry+https://github.com/rust-lang/crates.io-index" 2222 checksum = "8ba6faf2ca7ee42fdd458f4347ae0a9bd6bcc445ad7cb57ad82b383f18870d6f" 2223 dependencies = [ 2224 "atty", 2225 "is_ci", 2226 ] 2227 2228 [[package]] 2229 name = "syn" 2230 version = "1.0.103" 2231 source = "registry+https://github.com/rust-lang/crates.io-index" 2232 checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d" 2233 dependencies = [ 2234 "proc-macro2", 2235 "quote", 2236 "unicode-ident", 2237 ] 2238 2239 [[package]] 2240 name = "tempfile" 2241 version = "3.3.0" 2242 source = "registry+https://github.com/rust-lang/crates.io-index" 2243 checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 2244 dependencies = [ 2245 "cfg-if 1.0.0", 2246 "fastrand", 2247 "libc", 2248 "redox_syscall 0.2.16", 2249 "remove_dir_all", 2250 "winapi 0.3.9", 2251 ] 2252 2253 [[package]] 2254 name = "termcolor" 2255 version = "1.1.3" 2256 source = "registry+https://github.com/rust-lang/crates.io-index" 2257 checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 2258 dependencies = [ 2259 "winapi-util", 2260 ] 2261 2262 [[package]] 2263 name = "thiserror" 2264 version = "1.0.37" 2265 source = "registry+https://github.com/rust-lang/crates.io-index" 2266 checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e" 2267 dependencies = [ 2268 "thiserror-impl", 2269 ] 2270 2271 [[package]] 2272 name = "thiserror-impl" 2273 version = "1.0.37" 2274 source = "registry+https://github.com/rust-lang/crates.io-index" 2275 checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb" 2276 dependencies = [ 2277 "proc-macro2", 2278 "quote", 2279 "syn", 2280 ] 2281 2282 [[package]] 2283 name = "thread_local" 2284 version = "1.1.4" 2285 source = "registry+https://github.com/rust-lang/crates.io-index" 2286 checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 2287 dependencies = [ 2288 "once_cell", 2289 ] 2290 2291 [[package]] 2292 name = "time" 2293 version = "0.1.44" 2294 source = "registry+https://github.com/rust-lang/crates.io-index" 2295 checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" 2296 dependencies = [ 2297 "libc", 2298 "wasi 0.10.0+wasi-snapshot-preview1", 2299 "winapi 0.3.9", 2300 ] 2301 2302 [[package]] 2303 name = "time" 2304 version = "0.3.17" 2305 source = "registry+https://github.com/rust-lang/crates.io-index" 2306 checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" 2307 dependencies = [ 2308 "itoa", 2309 "serde", 2310 "time-core", 2311 "time-macros", 2312 ] 2313 2314 [[package]] 2315 name = "time-core" 2316 version = "0.1.0" 2317 source = "registry+https://github.com/rust-lang/crates.io-index" 2318 checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 2319 2320 [[package]] 2321 name = "time-macros" 2322 version = "0.2.6" 2323 source = "registry+https://github.com/rust-lang/crates.io-index" 2324 checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" 2325 dependencies = [ 2326 "time-core", 2327 ] 2328 2329 [[package]] 2330 name = "tinyvec" 2331 version = "1.6.0" 2332 source = "registry+https://github.com/rust-lang/crates.io-index" 2333 checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2334 dependencies = [ 2335 "tinyvec_macros", 2336 ] 2337 2338 [[package]] 2339 name = "tinyvec_macros" 2340 version = "0.1.0" 2341 source = "registry+https://github.com/rust-lang/crates.io-index" 2342 checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 2343 2344 [[package]] 2345 name = "tokio" 2346 version = "1.21.2" 2347 source = "registry+https://github.com/rust-lang/crates.io-index" 2348 checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099" 2349 dependencies = [ 2350 "autocfg 1.1.0", 2351 "bytes 1.2.1", 2352 "libc", 2353 "memchr", 2354 "mio 0.8.5", 2355 "num_cpus", 2356 "parking_lot 0.12.1", 2357 "pin-project-lite", 2358 "signal-hook-registry", 2359 "socket2", 2360 "tokio-macros", 2361 "winapi 0.3.9", 2362 ] 2363 2364 [[package]] 2365 name = "tokio-codec" 2366 version = "0.1.2" 2367 source = "registry+https://github.com/rust-lang/crates.io-index" 2368 checksum = "25b2998660ba0e70d18684de5d06b70b70a3a747469af9dea7618cc59e75976b" 2369 dependencies = [ 2370 "bytes 0.4.12", 2371 "futures 0.1.31", 2372 "tokio-io", 2373 ] 2374 2375 [[package]] 2376 name = "tokio-executor" 2377 version = "0.1.10" 2378 source = "registry+https://github.com/rust-lang/crates.io-index" 2379 checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671" 2380 dependencies = [ 2381 "crossbeam-utils", 2382 "futures 0.1.31", 2383 ] 2384 2385 [[package]] 2386 name = "tokio-io" 2387 version = "0.1.13" 2388 source = "registry+https://github.com/rust-lang/crates.io-index" 2389 checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674" 2390 dependencies = [ 2391 "bytes 0.4.12", 2392 "futures 0.1.31", 2393 "log 0.4.17", 2394 ] 2395 2396 [[package]] 2397 name = "tokio-macros" 2398 version = "1.8.0" 2399 source = "registry+https://github.com/rust-lang/crates.io-index" 2400 checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484" 2401 dependencies = [ 2402 "proc-macro2", 2403 "quote", 2404 "syn", 2405 ] 2406 2407 [[package]] 2408 name = "tokio-reactor" 2409 version = "0.1.12" 2410 source = "registry+https://github.com/rust-lang/crates.io-index" 2411 checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351" 2412 dependencies = [ 2413 "crossbeam-utils", 2414 "futures 0.1.31", 2415 "lazy_static", 2416 "log 0.4.17", 2417 "mio 0.6.23", 2418 "num_cpus", 2419 "parking_lot 0.9.0", 2420 "slab", 2421 "tokio-executor", 2422 "tokio-io", 2423 "tokio-sync", 2424 ] 2425 2426 [[package]] 2427 name = "tokio-stream" 2428 version = "0.1.11" 2429 source = "registry+https://github.com/rust-lang/crates.io-index" 2430 checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce" 2431 dependencies = [ 2432 "futures-core", 2433 "pin-project-lite", 2434 "tokio", 2435 ] 2436 2437 [[package]] 2438 name = "tokio-sync" 2439 version = "0.1.8" 2440 source = "registry+https://github.com/rust-lang/crates.io-index" 2441 checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee" 2442 dependencies = [ 2443 "fnv", 2444 "futures 0.1.31", 2445 ] 2446 2447 [[package]] 2448 name = "tokio-tcp" 2449 version = "0.1.4" 2450 source = "registry+https://github.com/rust-lang/crates.io-index" 2451 checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72" 2452 dependencies = [ 2453 "bytes 0.4.12", 2454 "futures 0.1.31", 2455 "iovec", 2456 "mio 0.6.23", 2457 "tokio-io", 2458 "tokio-reactor", 2459 ] 2460 2461 [[package]] 2462 name = "tokio-tls" 2463 version = "0.2.1" 2464 source = "registry+https://github.com/rust-lang/crates.io-index" 2465 checksum = "354b8cd83825b3c20217a9dc174d6a0c67441a2fae5c41bcb1ea6679f6ae0f7c" 2466 dependencies = [ 2467 "futures 0.1.31", 2468 "native-tls", 2469 "tokio-io", 2470 ] 2471 2472 [[package]] 2473 name = "tokio-tungstenite" 2474 version = "0.17.2" 2475 source = "registry+https://github.com/rust-lang/crates.io-index" 2476 checksum = "f714dd15bead90401d77e04243611caec13726c2408afd5b31901dfcdcb3b181" 2477 dependencies = [ 2478 "futures-util", 2479 "log 0.4.17", 2480 "tokio", 2481 "tungstenite", 2482 ] 2483 2484 [[package]] 2485 name = "tokio-util" 2486 version = "0.7.4" 2487 source = "registry+https://github.com/rust-lang/crates.io-index" 2488 checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740" 2489 dependencies = [ 2490 "bytes 1.2.1", 2491 "futures-core", 2492 "futures-io", 2493 "futures-sink", 2494 "pin-project-lite", 2495 "tokio", 2496 "tracing", 2497 ] 2498 2499 [[package]] 2500 name = "toml" 2501 version = "0.5.9" 2502 source = "registry+https://github.com/rust-lang/crates.io-index" 2503 checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 2504 dependencies = [ 2505 "serde", 2506 ] 2507 2508 [[package]] 2509 name = "tower-service" 2510 version = "0.3.2" 2511 source = "registry+https://github.com/rust-lang/crates.io-index" 2512 checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 2513 2514 [[package]] 2515 name = "tracing" 2516 version = "0.1.37" 2517 source = "registry+https://github.com/rust-lang/crates.io-index" 2518 checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 2519 dependencies = [ 2520 "cfg-if 1.0.0", 2521 "pin-project-lite", 2522 "tracing-attributes", 2523 "tracing-core", 2524 ] 2525 2526 [[package]] 2527 name = "tracing-attributes" 2528 version = "0.1.23" 2529 source = "registry+https://github.com/rust-lang/crates.io-index" 2530 checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 2531 dependencies = [ 2532 "proc-macro2", 2533 "quote", 2534 "syn", 2535 ] 2536 2537 [[package]] 2538 name = "tracing-core" 2539 version = "0.1.30" 2540 source = "registry+https://github.com/rust-lang/crates.io-index" 2541 checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 2542 dependencies = [ 2543 "once_cell", 2544 "valuable", 2545 ] 2546 2547 [[package]] 2548 name = "tracing-log" 2549 version = "0.1.3" 2550 source = "registry+https://github.com/rust-lang/crates.io-index" 2551 checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 2552 dependencies = [ 2553 "lazy_static", 2554 "log 0.4.17", 2555 "tracing-core", 2556 ] 2557 2558 [[package]] 2559 name = "tracing-subscriber" 2560 version = "0.3.16" 2561 source = "registry+https://github.com/rust-lang/crates.io-index" 2562 checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" 2563 dependencies = [ 2564 "nu-ansi-term", 2565 "sharded-slab", 2566 "smallvec 1.10.0", 2567 "thread_local", 2568 "tracing-core", 2569 "tracing-log", 2570 ] 2571 2572 [[package]] 2573 name = "traitobject" 2574 version = "0.1.0" 2575 source = "registry+https://github.com/rust-lang/crates.io-index" 2576 checksum = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079" 2577 2578 [[package]] 2579 name = "try-lock" 2580 version = "0.2.3" 2581 source = "registry+https://github.com/rust-lang/crates.io-index" 2582 checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" 2583 2584 [[package]] 2585 name = "tungstenite" 2586 version = "0.17.3" 2587 source = "registry+https://github.com/rust-lang/crates.io-index" 2588 checksum = "e27992fd6a8c29ee7eef28fc78349aa244134e10ad447ce3b9f0ac0ed0fa4ce0" 2589 dependencies = [ 2590 "base64 0.13.1", 2591 "byteorder", 2592 "bytes 1.2.1", 2593 "http", 2594 "httparse", 2595 "log 0.4.17", 2596 "rand 0.8.5", 2597 "sha-1 0.10.0", 2598 "thiserror", 2599 "url 2.3.1", 2600 "utf-8", 2601 ] 2602 2603 [[package]] 2604 name = "typeable" 2605 version = "0.1.2" 2606 source = "registry+https://github.com/rust-lang/crates.io-index" 2607 checksum = "1410f6f91f21d1612654e7cc69193b0334f909dcf2c790c4826254fbb86f8887" 2608 2609 [[package]] 2610 name = "typenum" 2611 version = "1.15.0" 2612 source = "registry+https://github.com/rust-lang/crates.io-index" 2613 checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 2614 2615 [[package]] 2616 name = "uncased" 2617 version = "0.9.7" 2618 source = "registry+https://github.com/rust-lang/crates.io-index" 2619 checksum = "09b01702b0fd0b3fadcf98e098780badda8742d4f4a7676615cad90e8ac73622" 2620 dependencies = [ 2621 "version_check 0.9.4", 2622 ] 2623 2624 [[package]] 2625 name = "unicase" 2626 version = "1.4.2" 2627 source = "registry+https://github.com/rust-lang/crates.io-index" 2628 checksum = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33" 2629 dependencies = [ 2630 "version_check 0.1.5", 2631 ] 2632 2633 [[package]] 2634 name = "unicode-bidi" 2635 version = "0.3.8" 2636 source = "registry+https://github.com/rust-lang/crates.io-index" 2637 checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 2638 2639 [[package]] 2640 name = "unicode-ident" 2641 version = "1.0.5" 2642 source = "registry+https://github.com/rust-lang/crates.io-index" 2643 checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3" 2644 2645 [[package]] 2646 name = "unicode-normalization" 2647 version = "0.1.22" 2648 source = "registry+https://github.com/rust-lang/crates.io-index" 2649 checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 2650 dependencies = [ 2651 "tinyvec", 2652 ] 2653 2654 [[package]] 2655 name = "unicode-width" 2656 version = "0.1.10" 2657 source = "registry+https://github.com/rust-lang/crates.io-index" 2658 checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 2659 2660 [[package]] 2661 name = "universal-hash" 2662 version = "0.5.0" 2663 source = "registry+https://github.com/rust-lang/crates.io-index" 2664 checksum = "7d3160b73c9a19f7e2939a2fdad446c57c1bbbbf4d919d3213ff1267a580d8b5" 2665 dependencies = [ 2666 "crypto-common", 2667 "subtle", 2668 ] 2669 2670 [[package]] 2671 name = "unsafe-libyaml" 2672 version = "0.2.4" 2673 source = "registry+https://github.com/rust-lang/crates.io-index" 2674 checksum = "c1e5fa573d8ac5f1a856f8d7be41d390ee973daf97c806b2c1a465e4e1406e68" 2675 2676 [[package]] 2677 name = "url" 2678 version = "1.7.2" 2679 source = "registry+https://github.com/rust-lang/crates.io-index" 2680 checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" 2681 dependencies = [ 2682 "idna 0.1.5", 2683 "matches", 2684 "percent-encoding 1.0.1", 2685 ] 2686 2687 [[package]] 2688 name = "url" 2689 version = "2.3.1" 2690 source = "registry+https://github.com/rust-lang/crates.io-index" 2691 checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 2692 dependencies = [ 2693 "form_urlencoded", 2694 "idna 0.3.0", 2695 "percent-encoding 2.2.0", 2696 ] 2697 2698 [[package]] 2699 name = "utf-8" 2700 version = "0.7.6" 2701 source = "registry+https://github.com/rust-lang/crates.io-index" 2702 checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 2703 2704 [[package]] 2705 name = "uuid" 2706 version = "0.8.2" 2707 source = "registry+https://github.com/rust-lang/crates.io-index" 2708 checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 2709 2710 [[package]] 2711 name = "valuable" 2712 version = "0.1.0" 2713 source = "registry+https://github.com/rust-lang/crates.io-index" 2714 checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 2715 2716 [[package]] 2717 name = "vcpkg" 2718 version = "0.2.15" 2719 source = "registry+https://github.com/rust-lang/crates.io-index" 2720 checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2721 2722 [[package]] 2723 name = "version_check" 2724 version = "0.1.5" 2725 source = "registry+https://github.com/rust-lang/crates.io-index" 2726 checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" 2727 2728 [[package]] 2729 name = "version_check" 2730 version = "0.9.4" 2731 source = "registry+https://github.com/rust-lang/crates.io-index" 2732 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2733 2734 [[package]] 2735 name = "want" 2736 version = "0.3.0" 2737 source = "registry+https://github.com/rust-lang/crates.io-index" 2738 checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 2739 dependencies = [ 2740 "log 0.4.17", 2741 "try-lock", 2742 ] 2743 2744 [[package]] 2745 name = "wasi" 2746 version = "0.10.0+wasi-snapshot-preview1" 2747 source = "registry+https://github.com/rust-lang/crates.io-index" 2748 checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 2749 2750 [[package]] 2751 name = "wasi" 2752 version = "0.11.0+wasi-snapshot-preview1" 2753 source = "registry+https://github.com/rust-lang/crates.io-index" 2754 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2755 2756 [[package]] 2757 name = "wasm-bindgen" 2758 version = "0.2.83" 2759 source = "registry+https://github.com/rust-lang/crates.io-index" 2760 checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" 2761 dependencies = [ 2762 "cfg-if 1.0.0", 2763 "wasm-bindgen-macro", 2764 ] 2765 2766 [[package]] 2767 name = "wasm-bindgen-backend" 2768 version = "0.2.83" 2769 source = "registry+https://github.com/rust-lang/crates.io-index" 2770 checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" 2771 dependencies = [ 2772 "bumpalo", 2773 "log 0.4.17", 2774 "once_cell", 2775 "proc-macro2", 2776 "quote", 2777 "syn", 2778 "wasm-bindgen-shared", 2779 ] 2780 2781 [[package]] 2782 name = "wasm-bindgen-macro" 2783 version = "0.2.83" 2784 source = "registry+https://github.com/rust-lang/crates.io-index" 2785 checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" 2786 dependencies = [ 2787 "quote", 2788 "wasm-bindgen-macro-support", 2789 ] 2790 2791 [[package]] 2792 name = "wasm-bindgen-macro-support" 2793 version = "0.2.83" 2794 source = "registry+https://github.com/rust-lang/crates.io-index" 2795 checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" 2796 dependencies = [ 2797 "proc-macro2", 2798 "quote", 2799 "syn", 2800 "wasm-bindgen-backend", 2801 "wasm-bindgen-shared", 2802 ] 2803 2804 [[package]] 2805 name = "wasm-bindgen-shared" 2806 version = "0.2.83" 2807 source = "registry+https://github.com/rust-lang/crates.io-index" 2808 checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" 2809 2810 [[package]] 2811 name = "websocket" 2812 version = "0.26.5" 2813 source = "registry+https://github.com/rust-lang/crates.io-index" 2814 checksum = "92aacab060eea423e4036820ddd28f3f9003b2c4d8048cbda985e5a14e18038d" 2815 dependencies = [ 2816 "bytes 0.4.12", 2817 "futures 0.1.31", 2818 "hyper 0.10.16", 2819 "native-tls", 2820 "rand 0.6.5", 2821 "tokio-codec", 2822 "tokio-io", 2823 "tokio-reactor", 2824 "tokio-tcp", 2825 "tokio-tls", 2826 "unicase", 2827 "url 1.7.2", 2828 "websocket-base", 2829 ] 2830 2831 [[package]] 2832 name = "websocket-base" 2833 version = "0.26.5" 2834 source = "registry+https://github.com/rust-lang/crates.io-index" 2835 checksum = "49aec794b07318993d1db16156d5a9c750120597a5ee40c6b928d416186cb138" 2836 dependencies = [ 2837 "base64 0.10.1", 2838 "bitflags", 2839 "byteorder", 2840 "bytes 0.4.12", 2841 "futures 0.1.31", 2842 "native-tls", 2843 "rand 0.6.5", 2844 "sha-1 0.8.2", 2845 "tokio-codec", 2846 "tokio-io", 2847 "tokio-tcp", 2848 "tokio-tls", 2849 ] 2850 2851 [[package]] 2852 name = "winapi" 2853 version = "0.2.8" 2854 source = "registry+https://github.com/rust-lang/crates.io-index" 2855 checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 2856 2857 [[package]] 2858 name = "winapi" 2859 version = "0.3.9" 2860 source = "registry+https://github.com/rust-lang/crates.io-index" 2861 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2862 dependencies = [ 2863 "winapi-i686-pc-windows-gnu", 2864 "winapi-x86_64-pc-windows-gnu", 2865 ] 2866 2867 [[package]] 2868 name = "winapi-build" 2869 version = "0.1.1" 2870 source = "registry+https://github.com/rust-lang/crates.io-index" 2871 checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 2872 2873 [[package]] 2874 name = "winapi-i686-pc-windows-gnu" 2875 version = "0.4.0" 2876 source = "registry+https://github.com/rust-lang/crates.io-index" 2877 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2878 2879 [[package]] 2880 name = "winapi-util" 2881 version = "0.1.5" 2882 source = "registry+https://github.com/rust-lang/crates.io-index" 2883 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 2884 dependencies = [ 2885 "winapi 0.3.9", 2886 ] 2887 2888 [[package]] 2889 name = "winapi-x86_64-pc-windows-gnu" 2890 version = "0.4.0" 2891 source = "registry+https://github.com/rust-lang/crates.io-index" 2892 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2893 2894 [[package]] 2895 name = "windows-sys" 2896 version = "0.36.1" 2897 source = "registry+https://github.com/rust-lang/crates.io-index" 2898 checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" 2899 dependencies = [ 2900 "windows_aarch64_msvc 0.36.1", 2901 "windows_i686_gnu 0.36.1", 2902 "windows_i686_msvc 0.36.1", 2903 "windows_x86_64_gnu 0.36.1", 2904 "windows_x86_64_msvc 0.36.1", 2905 ] 2906 2907 [[package]] 2908 name = "windows-sys" 2909 version = "0.42.0" 2910 source = "registry+https://github.com/rust-lang/crates.io-index" 2911 checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 2912 dependencies = [ 2913 "windows_aarch64_gnullvm", 2914 "windows_aarch64_msvc 0.42.0", 2915 "windows_i686_gnu 0.42.0", 2916 "windows_i686_msvc 0.42.0", 2917 "windows_x86_64_gnu 0.42.0", 2918 "windows_x86_64_gnullvm", 2919 "windows_x86_64_msvc 0.42.0", 2920 ] 2921 2922 [[package]] 2923 name = "windows_aarch64_gnullvm" 2924 version = "0.42.0" 2925 source = "registry+https://github.com/rust-lang/crates.io-index" 2926 checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e" 2927 2928 [[package]] 2929 name = "windows_aarch64_msvc" 2930 version = "0.36.1" 2931 source = "registry+https://github.com/rust-lang/crates.io-index" 2932 checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" 2933 2934 [[package]] 2935 name = "windows_aarch64_msvc" 2936 version = "0.42.0" 2937 source = "registry+https://github.com/rust-lang/crates.io-index" 2938 checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4" 2939 2940 [[package]] 2941 name = "windows_i686_gnu" 2942 version = "0.36.1" 2943 source = "registry+https://github.com/rust-lang/crates.io-index" 2944 checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" 2945 2946 [[package]] 2947 name = "windows_i686_gnu" 2948 version = "0.42.0" 2949 source = "registry+https://github.com/rust-lang/crates.io-index" 2950 checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7" 2951 2952 [[package]] 2953 name = "windows_i686_msvc" 2954 version = "0.36.1" 2955 source = "registry+https://github.com/rust-lang/crates.io-index" 2956 checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" 2957 2958 [[package]] 2959 name = "windows_i686_msvc" 2960 version = "0.42.0" 2961 source = "registry+https://github.com/rust-lang/crates.io-index" 2962 checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246" 2963 2964 [[package]] 2965 name = "windows_x86_64_gnu" 2966 version = "0.36.1" 2967 source = "registry+https://github.com/rust-lang/crates.io-index" 2968 checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" 2969 2970 [[package]] 2971 name = "windows_x86_64_gnu" 2972 version = "0.42.0" 2973 source = "registry+https://github.com/rust-lang/crates.io-index" 2974 checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed" 2975 2976 [[package]] 2977 name = "windows_x86_64_gnullvm" 2978 version = "0.42.0" 2979 source = "registry+https://github.com/rust-lang/crates.io-index" 2980 checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028" 2981 2982 [[package]] 2983 name = "windows_x86_64_msvc" 2984 version = "0.36.1" 2985 source = "registry+https://github.com/rust-lang/crates.io-index" 2986 checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" 2987 2988 [[package]] 2989 name = "windows_x86_64_msvc" 2990 version = "0.42.0" 2991 source = "registry+https://github.com/rust-lang/crates.io-index" 2992 checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5" 2993 2994 [[package]] 2995 name = "ws2_32-sys" 2996 version = "0.2.1" 2997 source = "registry+https://github.com/rust-lang/crates.io-index" 2998 checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" 2999 dependencies = [ 3000 "winapi 0.2.8", 3001 "winapi-build", 3002 ] 3003 3004 [[package]] 3005 name = "yansi" 3006 version = "0.5.1" 3007 source = "registry+https://github.com/rust-lang/crates.io-index" 3008 checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"