github.com/pyroscope-io/pyroscope@v0.37.3-0.20230725203016-5f6947968bd0/examples/rust/rideshare/server/Cargo.lock (about) 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 = "aho-corasick" 22 version = "0.7.18" 23 source = "registry+https://github.com/rust-lang/crates.io-index" 24 checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 25 dependencies = [ 26 "memchr", 27 ] 28 29 [[package]] 30 name = "atty" 31 version = "0.2.14" 32 source = "registry+https://github.com/rust-lang/crates.io-index" 33 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 34 dependencies = [ 35 "hermit-abi", 36 "libc", 37 "winapi", 38 ] 39 40 [[package]] 41 name = "autocfg" 42 version = "1.1.0" 43 source = "registry+https://github.com/rust-lang/crates.io-index" 44 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 45 46 [[package]] 47 name = "backtrace" 48 version = "0.3.65" 49 source = "registry+https://github.com/rust-lang/crates.io-index" 50 checksum = "11a17d453482a265fd5f8479f2a3f405566e6ca627837aaddb85af8b1ab8ef61" 51 dependencies = [ 52 "addr2line", 53 "cc", 54 "cfg-if", 55 "libc", 56 "miniz_oxide", 57 "object", 58 "rustc-demangle", 59 ] 60 61 [[package]] 62 name = "base64" 63 version = "0.13.0" 64 source = "registry+https://github.com/rust-lang/crates.io-index" 65 checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" 66 67 [[package]] 68 name = "bitflags" 69 version = "1.3.2" 70 source = "registry+https://github.com/rust-lang/crates.io-index" 71 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 72 73 [[package]] 74 name = "block-buffer" 75 version = "0.9.0" 76 source = "registry+https://github.com/rust-lang/crates.io-index" 77 checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 78 dependencies = [ 79 "generic-array", 80 ] 81 82 [[package]] 83 name = "block-buffer" 84 version = "0.10.2" 85 source = "registry+https://github.com/rust-lang/crates.io-index" 86 checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324" 87 dependencies = [ 88 "generic-array", 89 ] 90 91 [[package]] 92 name = "buf_redux" 93 version = "0.8.4" 94 source = "registry+https://github.com/rust-lang/crates.io-index" 95 checksum = "b953a6887648bb07a535631f2bc00fbdb2a2216f135552cb3f534ed136b9c07f" 96 dependencies = [ 97 "memchr", 98 "safemem", 99 ] 100 101 [[package]] 102 name = "bumpalo" 103 version = "3.9.1" 104 source = "registry+https://github.com/rust-lang/crates.io-index" 105 checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899" 106 107 [[package]] 108 name = "byteorder" 109 version = "1.4.3" 110 source = "registry+https://github.com/rust-lang/crates.io-index" 111 checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 112 113 [[package]] 114 name = "bytes" 115 version = "1.1.0" 116 source = "registry+https://github.com/rust-lang/crates.io-index" 117 checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8" 118 119 [[package]] 120 name = "cc" 121 version = "1.0.73" 122 source = "registry+https://github.com/rust-lang/crates.io-index" 123 checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" 124 125 [[package]] 126 name = "cfg-if" 127 version = "1.0.0" 128 source = "registry+https://github.com/rust-lang/crates.io-index" 129 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 130 131 [[package]] 132 name = "chrono" 133 version = "0.4.19" 134 source = "registry+https://github.com/rust-lang/crates.io-index" 135 checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" 136 dependencies = [ 137 "libc", 138 "num-integer", 139 "num-traits", 140 "time", 141 "winapi", 142 ] 143 144 [[package]] 145 name = "core-foundation" 146 version = "0.9.3" 147 source = "registry+https://github.com/rust-lang/crates.io-index" 148 checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 149 dependencies = [ 150 "core-foundation-sys", 151 "libc", 152 ] 153 154 [[package]] 155 name = "core-foundation-sys" 156 version = "0.8.3" 157 source = "registry+https://github.com/rust-lang/crates.io-index" 158 checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 159 160 [[package]] 161 name = "cpp_demangle" 162 version = "0.3.5" 163 source = "registry+https://github.com/rust-lang/crates.io-index" 164 checksum = "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f" 165 dependencies = [ 166 "cfg-if", 167 ] 168 169 [[package]] 170 name = "cpufeatures" 171 version = "0.2.2" 172 source = "registry+https://github.com/rust-lang/crates.io-index" 173 checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b" 174 dependencies = [ 175 "libc", 176 ] 177 178 [[package]] 179 name = "crypto-common" 180 version = "0.1.3" 181 source = "registry+https://github.com/rust-lang/crates.io-index" 182 checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8" 183 dependencies = [ 184 "generic-array", 185 "typenum", 186 ] 187 188 [[package]] 189 name = "debugid" 190 version = "0.7.3" 191 source = "registry+https://github.com/rust-lang/crates.io-index" 192 checksum = "d6ee87af31d84ef885378aebca32be3d682b0e0dc119d5b4860a2c5bb5046730" 193 dependencies = [ 194 "uuid", 195 ] 196 197 [[package]] 198 name = "digest" 199 version = "0.9.0" 200 source = "registry+https://github.com/rust-lang/crates.io-index" 201 checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 202 dependencies = [ 203 "generic-array", 204 ] 205 206 [[package]] 207 name = "digest" 208 version = "0.10.3" 209 source = "registry+https://github.com/rust-lang/crates.io-index" 210 checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506" 211 dependencies = [ 212 "block-buffer 0.10.2", 213 "crypto-common", 214 ] 215 216 [[package]] 217 name = "encoding_rs" 218 version = "0.8.31" 219 source = "registry+https://github.com/rust-lang/crates.io-index" 220 checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 221 dependencies = [ 222 "cfg-if", 223 ] 224 225 [[package]] 226 name = "env_logger" 227 version = "0.7.1" 228 source = "registry+https://github.com/rust-lang/crates.io-index" 229 checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" 230 dependencies = [ 231 "atty", 232 "humantime", 233 "log", 234 "regex", 235 "termcolor", 236 ] 237 238 [[package]] 239 name = "fastrand" 240 version = "1.7.0" 241 source = "registry+https://github.com/rust-lang/crates.io-index" 242 checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf" 243 dependencies = [ 244 "instant", 245 ] 246 247 [[package]] 248 name = "findshlibs" 249 version = "0.10.2" 250 source = "registry+https://github.com/rust-lang/crates.io-index" 251 checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64" 252 dependencies = [ 253 "cc", 254 "lazy_static", 255 "libc", 256 "winapi", 257 ] 258 259 [[package]] 260 name = "fnv" 261 version = "1.0.7" 262 source = "registry+https://github.com/rust-lang/crates.io-index" 263 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 264 265 [[package]] 266 name = "foreign-types" 267 version = "0.3.2" 268 source = "registry+https://github.com/rust-lang/crates.io-index" 269 checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 270 dependencies = [ 271 "foreign-types-shared", 272 ] 273 274 [[package]] 275 name = "foreign-types-shared" 276 version = "0.1.1" 277 source = "registry+https://github.com/rust-lang/crates.io-index" 278 checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 279 280 [[package]] 281 name = "form_urlencoded" 282 version = "1.0.1" 283 source = "registry+https://github.com/rust-lang/crates.io-index" 284 checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" 285 dependencies = [ 286 "matches", 287 "percent-encoding", 288 ] 289 290 [[package]] 291 name = "futures-channel" 292 version = "0.3.21" 293 source = "registry+https://github.com/rust-lang/crates.io-index" 294 checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010" 295 dependencies = [ 296 "futures-core", 297 "futures-sink", 298 ] 299 300 [[package]] 301 name = "futures-core" 302 version = "0.3.21" 303 source = "registry+https://github.com/rust-lang/crates.io-index" 304 checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3" 305 306 [[package]] 307 name = "futures-io" 308 version = "0.3.21" 309 source = "registry+https://github.com/rust-lang/crates.io-index" 310 checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b" 311 312 [[package]] 313 name = "futures-sink" 314 version = "0.3.21" 315 source = "registry+https://github.com/rust-lang/crates.io-index" 316 checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868" 317 318 [[package]] 319 name = "futures-task" 320 version = "0.3.21" 321 source = "registry+https://github.com/rust-lang/crates.io-index" 322 checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a" 323 324 [[package]] 325 name = "futures-util" 326 version = "0.3.21" 327 source = "registry+https://github.com/rust-lang/crates.io-index" 328 checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a" 329 dependencies = [ 330 "futures-core", 331 "futures-io", 332 "futures-sink", 333 "futures-task", 334 "memchr", 335 "pin-project-lite", 336 "pin-utils", 337 "slab", 338 ] 339 340 [[package]] 341 name = "generic-array" 342 version = "0.14.5" 343 source = "registry+https://github.com/rust-lang/crates.io-index" 344 checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803" 345 dependencies = [ 346 "typenum", 347 "version_check", 348 ] 349 350 [[package]] 351 name = "getrandom" 352 version = "0.2.6" 353 source = "registry+https://github.com/rust-lang/crates.io-index" 354 checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad" 355 dependencies = [ 356 "cfg-if", 357 "libc", 358 "wasi 0.10.2+wasi-snapshot-preview1", 359 ] 360 361 [[package]] 362 name = "gimli" 363 version = "0.26.1" 364 source = "registry+https://github.com/rust-lang/crates.io-index" 365 checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4" 366 367 [[package]] 368 name = "h2" 369 version = "0.3.13" 370 source = "registry+https://github.com/rust-lang/crates.io-index" 371 checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57" 372 dependencies = [ 373 "bytes", 374 "fnv", 375 "futures-core", 376 "futures-sink", 377 "futures-util", 378 "http", 379 "indexmap", 380 "slab", 381 "tokio", 382 "tokio-util 0.7.1", 383 "tracing", 384 ] 385 386 [[package]] 387 name = "hashbrown" 388 version = "0.11.2" 389 source = "registry+https://github.com/rust-lang/crates.io-index" 390 checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" 391 392 [[package]] 393 name = "headers" 394 version = "0.3.7" 395 source = "registry+https://github.com/rust-lang/crates.io-index" 396 checksum = "4cff78e5788be1e0ab65b04d306b2ed5092c815ec97ec70f4ebd5aee158aa55d" 397 dependencies = [ 398 "base64", 399 "bitflags", 400 "bytes", 401 "headers-core", 402 "http", 403 "httpdate", 404 "mime", 405 "sha-1 0.10.0", 406 ] 407 408 [[package]] 409 name = "headers-core" 410 version = "0.2.0" 411 source = "registry+https://github.com/rust-lang/crates.io-index" 412 checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" 413 dependencies = [ 414 "http", 415 ] 416 417 [[package]] 418 name = "hermit-abi" 419 version = "0.1.19" 420 source = "registry+https://github.com/rust-lang/crates.io-index" 421 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 422 dependencies = [ 423 "libc", 424 ] 425 426 [[package]] 427 name = "http" 428 version = "0.2.6" 429 source = "registry+https://github.com/rust-lang/crates.io-index" 430 checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03" 431 dependencies = [ 432 "bytes", 433 "fnv", 434 "itoa", 435 ] 436 437 [[package]] 438 name = "http-body" 439 version = "0.4.4" 440 source = "registry+https://github.com/rust-lang/crates.io-index" 441 checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6" 442 dependencies = [ 443 "bytes", 444 "http", 445 "pin-project-lite", 446 ] 447 448 [[package]] 449 name = "httparse" 450 version = "1.7.1" 451 source = "registry+https://github.com/rust-lang/crates.io-index" 452 checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c" 453 454 [[package]] 455 name = "httpdate" 456 version = "1.0.2" 457 source = "registry+https://github.com/rust-lang/crates.io-index" 458 checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 459 460 [[package]] 461 name = "humantime" 462 version = "1.3.0" 463 source = "registry+https://github.com/rust-lang/crates.io-index" 464 checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" 465 dependencies = [ 466 "quick-error", 467 ] 468 469 [[package]] 470 name = "hyper" 471 version = "0.14.18" 472 source = "registry+https://github.com/rust-lang/crates.io-index" 473 checksum = "b26ae0a80afebe130861d90abf98e3814a4f28a4c6ffeb5ab8ebb2be311e0ef2" 474 dependencies = [ 475 "bytes", 476 "futures-channel", 477 "futures-core", 478 "futures-util", 479 "h2", 480 "http", 481 "http-body", 482 "httparse", 483 "httpdate", 484 "itoa", 485 "pin-project-lite", 486 "socket2", 487 "tokio", 488 "tower-service", 489 "tracing", 490 "want", 491 ] 492 493 [[package]] 494 name = "hyper-tls" 495 version = "0.5.0" 496 source = "registry+https://github.com/rust-lang/crates.io-index" 497 checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 498 dependencies = [ 499 "bytes", 500 "hyper", 501 "native-tls", 502 "tokio", 503 "tokio-native-tls", 504 ] 505 506 [[package]] 507 name = "idna" 508 version = "0.2.3" 509 source = "registry+https://github.com/rust-lang/crates.io-index" 510 checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 511 dependencies = [ 512 "matches", 513 "unicode-bidi", 514 "unicode-normalization", 515 ] 516 517 [[package]] 518 name = "indexmap" 519 version = "1.8.1" 520 source = "registry+https://github.com/rust-lang/crates.io-index" 521 checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee" 522 dependencies = [ 523 "autocfg", 524 "hashbrown", 525 ] 526 527 [[package]] 528 name = "instant" 529 version = "0.1.12" 530 source = "registry+https://github.com/rust-lang/crates.io-index" 531 checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 532 dependencies = [ 533 "cfg-if", 534 ] 535 536 [[package]] 537 name = "ipnet" 538 version = "2.5.0" 539 source = "registry+https://github.com/rust-lang/crates.io-index" 540 checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b" 541 542 [[package]] 543 name = "itoa" 544 version = "1.0.1" 545 source = "registry+https://github.com/rust-lang/crates.io-index" 546 checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35" 547 548 [[package]] 549 name = "js-sys" 550 version = "0.3.57" 551 source = "registry+https://github.com/rust-lang/crates.io-index" 552 checksum = "671a26f820db17c2a2750743f1dd03bafd15b98c9f30c7c2628c024c05d73397" 553 dependencies = [ 554 "wasm-bindgen", 555 ] 556 557 [[package]] 558 name = "lazy_static" 559 version = "1.4.0" 560 source = "registry+https://github.com/rust-lang/crates.io-index" 561 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 562 563 [[package]] 564 name = "libc" 565 version = "0.2.124" 566 source = "registry+https://github.com/rust-lang/crates.io-index" 567 checksum = "21a41fed9d98f27ab1c6d161da622a4fa35e8a54a8adc24bbf3ddd0ef70b0e50" 568 569 [[package]] 570 name = "lock_api" 571 version = "0.4.7" 572 source = "registry+https://github.com/rust-lang/crates.io-index" 573 checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53" 574 dependencies = [ 575 "autocfg", 576 "scopeguard", 577 ] 578 579 [[package]] 580 name = "log" 581 version = "0.4.16" 582 source = "registry+https://github.com/rust-lang/crates.io-index" 583 checksum = "6389c490849ff5bc16be905ae24bc913a9c8892e19b2341dbc175e14c341c2b8" 584 dependencies = [ 585 "cfg-if", 586 ] 587 588 [[package]] 589 name = "matches" 590 version = "0.1.9" 591 source = "registry+https://github.com/rust-lang/crates.io-index" 592 checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 593 594 [[package]] 595 name = "memchr" 596 version = "2.4.1" 597 source = "registry+https://github.com/rust-lang/crates.io-index" 598 checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" 599 600 [[package]] 601 name = "memmap2" 602 version = "0.5.3" 603 source = "registry+https://github.com/rust-lang/crates.io-index" 604 checksum = "057a3db23999c867821a7a59feb06a578fcb03685e983dff90daf9e7d24ac08f" 605 dependencies = [ 606 "libc", 607 ] 608 609 [[package]] 610 name = "memoffset" 611 version = "0.6.5" 612 source = "registry+https://github.com/rust-lang/crates.io-index" 613 checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 614 dependencies = [ 615 "autocfg", 616 ] 617 618 [[package]] 619 name = "mime" 620 version = "0.3.16" 621 source = "registry+https://github.com/rust-lang/crates.io-index" 622 checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 623 624 [[package]] 625 name = "mime_guess" 626 version = "2.0.4" 627 source = "registry+https://github.com/rust-lang/crates.io-index" 628 checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 629 dependencies = [ 630 "mime", 631 "unicase", 632 ] 633 634 [[package]] 635 name = "miniz_oxide" 636 version = "0.5.1" 637 source = "registry+https://github.com/rust-lang/crates.io-index" 638 checksum = "d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082" 639 dependencies = [ 640 "adler", 641 ] 642 643 [[package]] 644 name = "mio" 645 version = "0.8.2" 646 source = "registry+https://github.com/rust-lang/crates.io-index" 647 checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9" 648 dependencies = [ 649 "libc", 650 "log", 651 "miow", 652 "ntapi", 653 "wasi 0.11.0+wasi-snapshot-preview1", 654 "winapi", 655 ] 656 657 [[package]] 658 name = "miow" 659 version = "0.3.7" 660 source = "registry+https://github.com/rust-lang/crates.io-index" 661 checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" 662 dependencies = [ 663 "winapi", 664 ] 665 666 [[package]] 667 name = "multipart" 668 version = "0.18.0" 669 source = "registry+https://github.com/rust-lang/crates.io-index" 670 checksum = "00dec633863867f29cb39df64a397cdf4a6354708ddd7759f70c7fb51c5f9182" 671 dependencies = [ 672 "buf_redux", 673 "httparse", 674 "log", 675 "mime", 676 "mime_guess", 677 "quick-error", 678 "rand", 679 "safemem", 680 "tempfile", 681 "twoway", 682 ] 683 684 [[package]] 685 name = "native-tls" 686 version = "0.2.10" 687 source = "registry+https://github.com/rust-lang/crates.io-index" 688 checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9" 689 dependencies = [ 690 "lazy_static", 691 "libc", 692 "log", 693 "openssl", 694 "openssl-probe", 695 "openssl-sys", 696 "schannel", 697 "security-framework", 698 "security-framework-sys", 699 "tempfile", 700 ] 701 702 [[package]] 703 name = "nix" 704 version = "0.23.1" 705 source = "registry+https://github.com/rust-lang/crates.io-index" 706 checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6" 707 dependencies = [ 708 "bitflags", 709 "cc", 710 "cfg-if", 711 "libc", 712 "memoffset", 713 ] 714 715 [[package]] 716 name = "ntapi" 717 version = "0.3.7" 718 source = "registry+https://github.com/rust-lang/crates.io-index" 719 checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f" 720 dependencies = [ 721 "winapi", 722 ] 723 724 [[package]] 725 name = "num-integer" 726 version = "0.1.44" 727 source = "registry+https://github.com/rust-lang/crates.io-index" 728 checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" 729 dependencies = [ 730 "autocfg", 731 "num-traits", 732 ] 733 734 [[package]] 735 name = "num-traits" 736 version = "0.2.14" 737 source = "registry+https://github.com/rust-lang/crates.io-index" 738 checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" 739 dependencies = [ 740 "autocfg", 741 ] 742 743 [[package]] 744 name = "num_cpus" 745 version = "1.13.1" 746 source = "registry+https://github.com/rust-lang/crates.io-index" 747 checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 748 dependencies = [ 749 "hermit-abi", 750 "libc", 751 ] 752 753 [[package]] 754 name = "object" 755 version = "0.28.3" 756 source = "registry+https://github.com/rust-lang/crates.io-index" 757 checksum = "40bec70ba014595f99f7aa110b84331ffe1ee9aece7fe6f387cc7e3ecda4d456" 758 dependencies = [ 759 "memchr", 760 ] 761 762 [[package]] 763 name = "once_cell" 764 version = "1.10.0" 765 source = "registry+https://github.com/rust-lang/crates.io-index" 766 checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9" 767 768 [[package]] 769 name = "opaque-debug" 770 version = "0.3.0" 771 source = "registry+https://github.com/rust-lang/crates.io-index" 772 checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 773 774 [[package]] 775 name = "openssl" 776 version = "0.10.38" 777 source = "registry+https://github.com/rust-lang/crates.io-index" 778 checksum = "0c7ae222234c30df141154f159066c5093ff73b63204dcda7121eb082fc56a95" 779 dependencies = [ 780 "bitflags", 781 "cfg-if", 782 "foreign-types", 783 "libc", 784 "once_cell", 785 "openssl-sys", 786 ] 787 788 [[package]] 789 name = "openssl-probe" 790 version = "0.1.5" 791 source = "registry+https://github.com/rust-lang/crates.io-index" 792 checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 793 794 [[package]] 795 name = "openssl-sys" 796 version = "0.9.72" 797 source = "registry+https://github.com/rust-lang/crates.io-index" 798 checksum = "7e46109c383602735fa0a2e48dd2b7c892b048e1bf69e5c3b1d804b7d9c203cb" 799 dependencies = [ 800 "autocfg", 801 "cc", 802 "libc", 803 "pkg-config", 804 "vcpkg", 805 ] 806 807 [[package]] 808 name = "parking_lot" 809 version = "0.12.0" 810 source = "registry+https://github.com/rust-lang/crates.io-index" 811 checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58" 812 dependencies = [ 813 "lock_api", 814 "parking_lot_core", 815 ] 816 817 [[package]] 818 name = "parking_lot_core" 819 version = "0.9.2" 820 source = "registry+https://github.com/rust-lang/crates.io-index" 821 checksum = "995f667a6c822200b0433ac218e05582f0e2efa1b922a3fd2fbaadc5f87bab37" 822 dependencies = [ 823 "cfg-if", 824 "libc", 825 "redox_syscall", 826 "smallvec", 827 "windows-sys", 828 ] 829 830 [[package]] 831 name = "percent-encoding" 832 version = "2.1.0" 833 source = "registry+https://github.com/rust-lang/crates.io-index" 834 checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 835 836 [[package]] 837 name = "pin-project" 838 version = "1.0.10" 839 source = "registry+https://github.com/rust-lang/crates.io-index" 840 checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e" 841 dependencies = [ 842 "pin-project-internal", 843 ] 844 845 [[package]] 846 name = "pin-project-internal" 847 version = "1.0.10" 848 source = "registry+https://github.com/rust-lang/crates.io-index" 849 checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb" 850 dependencies = [ 851 "proc-macro2", 852 "quote", 853 "syn", 854 ] 855 856 [[package]] 857 name = "pin-project-lite" 858 version = "0.2.9" 859 source = "registry+https://github.com/rust-lang/crates.io-index" 860 checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 861 862 [[package]] 863 name = "pin-utils" 864 version = "0.1.0" 865 source = "registry+https://github.com/rust-lang/crates.io-index" 866 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 867 868 [[package]] 869 name = "pkg-config" 870 version = "0.3.25" 871 source = "registry+https://github.com/rust-lang/crates.io-index" 872 checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae" 873 874 [[package]] 875 name = "pprof" 876 version = "0.8.0" 877 source = "registry+https://github.com/rust-lang/crates.io-index" 878 checksum = "f2324292407eab69d4ace0eed1524fe612ac37c98aa22b0d868355b17fada530" 879 dependencies = [ 880 "backtrace", 881 "cfg-if", 882 "findshlibs", 883 "libc", 884 "log", 885 "nix", 886 "once_cell", 887 "parking_lot", 888 "smallvec", 889 "symbolic-demangle", 890 "tempfile", 891 "thiserror", 892 ] 893 894 [[package]] 895 name = "ppv-lite86" 896 version = "0.2.16" 897 source = "registry+https://github.com/rust-lang/crates.io-index" 898 checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" 899 900 [[package]] 901 name = "pretty_env_logger" 902 version = "0.4.0" 903 source = "registry+https://github.com/rust-lang/crates.io-index" 904 checksum = "926d36b9553851b8b0005f1275891b392ee4d2d833852c417ed025477350fb9d" 905 dependencies = [ 906 "env_logger", 907 "log", 908 ] 909 910 [[package]] 911 name = "proc-macro2" 912 version = "1.0.37" 913 source = "registry+https://github.com/rust-lang/crates.io-index" 914 checksum = "ec757218438d5fda206afc041538b2f6d889286160d649a86a24d37e1235afd1" 915 dependencies = [ 916 "unicode-xid", 917 ] 918 919 [[package]] 920 name = "pyroscope" 921 version = "0.5.0" 922 source = "registry+https://github.com/rust-lang/crates.io-index" 923 checksum = "3cb6be348ffb74013dcfa7a35503dc36cd1558980b8ce3324615985c2df668cb" 924 dependencies = [ 925 "libc", 926 "log", 927 "reqwest", 928 "thiserror", 929 ] 930 931 [[package]] 932 name = "pyroscope_pprofrs" 933 version = "0.2.0" 934 source = "registry+https://github.com/rust-lang/crates.io-index" 935 checksum = "a917a45576ca93d5516eee7920bfc2437e23e3cbffe70d6973b18c801f59003d" 936 dependencies = [ 937 "pprof", 938 "pyroscope", 939 "thiserror", 940 ] 941 942 [[package]] 943 name = "quick-error" 944 version = "1.2.3" 945 source = "registry+https://github.com/rust-lang/crates.io-index" 946 checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 947 948 [[package]] 949 name = "quote" 950 version = "1.0.18" 951 source = "registry+https://github.com/rust-lang/crates.io-index" 952 checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1" 953 dependencies = [ 954 "proc-macro2", 955 ] 956 957 [[package]] 958 name = "rand" 959 version = "0.8.5" 960 source = "registry+https://github.com/rust-lang/crates.io-index" 961 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 962 dependencies = [ 963 "libc", 964 "rand_chacha", 965 "rand_core", 966 ] 967 968 [[package]] 969 name = "rand_chacha" 970 version = "0.3.1" 971 source = "registry+https://github.com/rust-lang/crates.io-index" 972 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 973 dependencies = [ 974 "ppv-lite86", 975 "rand_core", 976 ] 977 978 [[package]] 979 name = "rand_core" 980 version = "0.6.3" 981 source = "registry+https://github.com/rust-lang/crates.io-index" 982 checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" 983 dependencies = [ 984 "getrandom", 985 ] 986 987 [[package]] 988 name = "redox_syscall" 989 version = "0.2.13" 990 source = "registry+https://github.com/rust-lang/crates.io-index" 991 checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42" 992 dependencies = [ 993 "bitflags", 994 ] 995 996 [[package]] 997 name = "regex" 998 version = "1.5.5" 999 source = "registry+https://github.com/rust-lang/crates.io-index" 1000 checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286" 1001 dependencies = [ 1002 "aho-corasick", 1003 "memchr", 1004 "regex-syntax", 1005 ] 1006 1007 [[package]] 1008 name = "regex-syntax" 1009 version = "0.6.25" 1010 source = "registry+https://github.com/rust-lang/crates.io-index" 1011 checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" 1012 1013 [[package]] 1014 name = "remove_dir_all" 1015 version = "0.5.3" 1016 source = "registry+https://github.com/rust-lang/crates.io-index" 1017 checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 1018 dependencies = [ 1019 "winapi", 1020 ] 1021 1022 [[package]] 1023 name = "reqwest" 1024 version = "0.11.10" 1025 source = "registry+https://github.com/rust-lang/crates.io-index" 1026 checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb" 1027 dependencies = [ 1028 "base64", 1029 "bytes", 1030 "encoding_rs", 1031 "futures-core", 1032 "futures-util", 1033 "h2", 1034 "http", 1035 "http-body", 1036 "hyper", 1037 "hyper-tls", 1038 "ipnet", 1039 "js-sys", 1040 "lazy_static", 1041 "log", 1042 "mime", 1043 "native-tls", 1044 "percent-encoding", 1045 "pin-project-lite", 1046 "serde", 1047 "serde_json", 1048 "serde_urlencoded", 1049 "tokio", 1050 "tokio-native-tls", 1051 "url", 1052 "wasm-bindgen", 1053 "wasm-bindgen-futures", 1054 "web-sys", 1055 "winreg", 1056 ] 1057 1058 [[package]] 1059 name = "rustc-demangle" 1060 version = "0.1.21" 1061 source = "registry+https://github.com/rust-lang/crates.io-index" 1062 checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 1063 1064 [[package]] 1065 name = "ryu" 1066 version = "1.0.9" 1067 source = "registry+https://github.com/rust-lang/crates.io-index" 1068 checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f" 1069 1070 [[package]] 1071 name = "safemem" 1072 version = "0.3.3" 1073 source = "registry+https://github.com/rust-lang/crates.io-index" 1074 checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 1075 1076 [[package]] 1077 name = "schannel" 1078 version = "0.1.19" 1079 source = "registry+https://github.com/rust-lang/crates.io-index" 1080 checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75" 1081 dependencies = [ 1082 "lazy_static", 1083 "winapi", 1084 ] 1085 1086 [[package]] 1087 name = "scoped-tls" 1088 version = "1.0.0" 1089 source = "registry+https://github.com/rust-lang/crates.io-index" 1090 checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2" 1091 1092 [[package]] 1093 name = "scopeguard" 1094 version = "1.1.0" 1095 source = "registry+https://github.com/rust-lang/crates.io-index" 1096 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1097 1098 [[package]] 1099 name = "security-framework" 1100 version = "2.6.1" 1101 source = "registry+https://github.com/rust-lang/crates.io-index" 1102 checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc" 1103 dependencies = [ 1104 "bitflags", 1105 "core-foundation", 1106 "core-foundation-sys", 1107 "libc", 1108 "security-framework-sys", 1109 ] 1110 1111 [[package]] 1112 name = "security-framework-sys" 1113 version = "2.6.1" 1114 source = "registry+https://github.com/rust-lang/crates.io-index" 1115 checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" 1116 dependencies = [ 1117 "core-foundation-sys", 1118 "libc", 1119 ] 1120 1121 [[package]] 1122 name = "serde" 1123 version = "1.0.136" 1124 source = "registry+https://github.com/rust-lang/crates.io-index" 1125 checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789" 1126 1127 [[package]] 1128 name = "serde_json" 1129 version = "1.0.79" 1130 source = "registry+https://github.com/rust-lang/crates.io-index" 1131 checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95" 1132 dependencies = [ 1133 "itoa", 1134 "ryu", 1135 "serde", 1136 ] 1137 1138 [[package]] 1139 name = "serde_urlencoded" 1140 version = "0.7.1" 1141 source = "registry+https://github.com/rust-lang/crates.io-index" 1142 checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1143 dependencies = [ 1144 "form_urlencoded", 1145 "itoa", 1146 "ryu", 1147 "serde", 1148 ] 1149 1150 [[package]] 1151 name = "server" 1152 version = "0.1.0" 1153 dependencies = [ 1154 "chrono", 1155 "log", 1156 "pretty_env_logger", 1157 "pyroscope", 1158 "pyroscope_pprofrs", 1159 "tokio", 1160 "warp", 1161 ] 1162 1163 [[package]] 1164 name = "sha-1" 1165 version = "0.9.8" 1166 source = "registry+https://github.com/rust-lang/crates.io-index" 1167 checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6" 1168 dependencies = [ 1169 "block-buffer 0.9.0", 1170 "cfg-if", 1171 "cpufeatures", 1172 "digest 0.9.0", 1173 "opaque-debug", 1174 ] 1175 1176 [[package]] 1177 name = "sha-1" 1178 version = "0.10.0" 1179 source = "registry+https://github.com/rust-lang/crates.io-index" 1180 checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f" 1181 dependencies = [ 1182 "cfg-if", 1183 "cpufeatures", 1184 "digest 0.10.3", 1185 ] 1186 1187 [[package]] 1188 name = "signal-hook-registry" 1189 version = "1.4.0" 1190 source = "registry+https://github.com/rust-lang/crates.io-index" 1191 checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 1192 dependencies = [ 1193 "libc", 1194 ] 1195 1196 [[package]] 1197 name = "slab" 1198 version = "0.4.6" 1199 source = "registry+https://github.com/rust-lang/crates.io-index" 1200 checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32" 1201 1202 [[package]] 1203 name = "smallvec" 1204 version = "1.8.0" 1205 source = "registry+https://github.com/rust-lang/crates.io-index" 1206 checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83" 1207 1208 [[package]] 1209 name = "socket2" 1210 version = "0.4.4" 1211 source = "registry+https://github.com/rust-lang/crates.io-index" 1212 checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" 1213 dependencies = [ 1214 "libc", 1215 "winapi", 1216 ] 1217 1218 [[package]] 1219 name = "stable_deref_trait" 1220 version = "1.2.0" 1221 source = "registry+https://github.com/rust-lang/crates.io-index" 1222 checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 1223 1224 [[package]] 1225 name = "symbolic-common" 1226 version = "8.7.0" 1227 source = "registry+https://github.com/rust-lang/crates.io-index" 1228 checksum = "ac6aac7b803adc9ee75344af7681969f76d4b38e4723c6eaacf3b28f5f1d87ff" 1229 dependencies = [ 1230 "debugid", 1231 "memmap2", 1232 "stable_deref_trait", 1233 "uuid", 1234 ] 1235 1236 [[package]] 1237 name = "symbolic-demangle" 1238 version = "8.7.0" 1239 source = "registry+https://github.com/rust-lang/crates.io-index" 1240 checksum = "8143ea5aa546f86c64f9b9aafdd14223ffad4ecd2d58575c63c21335909c99a7" 1241 dependencies = [ 1242 "cpp_demangle", 1243 "rustc-demangle", 1244 "symbolic-common", 1245 ] 1246 1247 [[package]] 1248 name = "syn" 1249 version = "1.0.91" 1250 source = "registry+https://github.com/rust-lang/crates.io-index" 1251 checksum = "b683b2b825c8eef438b77c36a06dc262294da3d5a5813fac20da149241dcd44d" 1252 dependencies = [ 1253 "proc-macro2", 1254 "quote", 1255 "unicode-xid", 1256 ] 1257 1258 [[package]] 1259 name = "tempfile" 1260 version = "3.3.0" 1261 source = "registry+https://github.com/rust-lang/crates.io-index" 1262 checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 1263 dependencies = [ 1264 "cfg-if", 1265 "fastrand", 1266 "libc", 1267 "redox_syscall", 1268 "remove_dir_all", 1269 "winapi", 1270 ] 1271 1272 [[package]] 1273 name = "termcolor" 1274 version = "1.1.3" 1275 source = "registry+https://github.com/rust-lang/crates.io-index" 1276 checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 1277 dependencies = [ 1278 "winapi-util", 1279 ] 1280 1281 [[package]] 1282 name = "thiserror" 1283 version = "1.0.30" 1284 source = "registry+https://github.com/rust-lang/crates.io-index" 1285 checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" 1286 dependencies = [ 1287 "thiserror-impl", 1288 ] 1289 1290 [[package]] 1291 name = "thiserror-impl" 1292 version = "1.0.30" 1293 source = "registry+https://github.com/rust-lang/crates.io-index" 1294 checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" 1295 dependencies = [ 1296 "proc-macro2", 1297 "quote", 1298 "syn", 1299 ] 1300 1301 [[package]] 1302 name = "time" 1303 version = "0.1.43" 1304 source = "registry+https://github.com/rust-lang/crates.io-index" 1305 checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438" 1306 dependencies = [ 1307 "libc", 1308 "winapi", 1309 ] 1310 1311 [[package]] 1312 name = "tinyvec" 1313 version = "1.6.0" 1314 source = "registry+https://github.com/rust-lang/crates.io-index" 1315 checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 1316 dependencies = [ 1317 "tinyvec_macros", 1318 ] 1319 1320 [[package]] 1321 name = "tinyvec_macros" 1322 version = "0.1.0" 1323 source = "registry+https://github.com/rust-lang/crates.io-index" 1324 checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 1325 1326 [[package]] 1327 name = "tokio" 1328 version = "1.18.0" 1329 source = "registry+https://github.com/rust-lang/crates.io-index" 1330 checksum = "0f48b6d60512a392e34dbf7fd456249fd2de3c83669ab642e021903f4015185b" 1331 dependencies = [ 1332 "bytes", 1333 "libc", 1334 "memchr", 1335 "mio", 1336 "num_cpus", 1337 "once_cell", 1338 "parking_lot", 1339 "pin-project-lite", 1340 "signal-hook-registry", 1341 "socket2", 1342 "tokio-macros", 1343 "winapi", 1344 ] 1345 1346 [[package]] 1347 name = "tokio-macros" 1348 version = "1.7.0" 1349 source = "registry+https://github.com/rust-lang/crates.io-index" 1350 checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7" 1351 dependencies = [ 1352 "proc-macro2", 1353 "quote", 1354 "syn", 1355 ] 1356 1357 [[package]] 1358 name = "tokio-native-tls" 1359 version = "0.3.0" 1360 source = "registry+https://github.com/rust-lang/crates.io-index" 1361 checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b" 1362 dependencies = [ 1363 "native-tls", 1364 "tokio", 1365 ] 1366 1367 [[package]] 1368 name = "tokio-stream" 1369 version = "0.1.8" 1370 source = "registry+https://github.com/rust-lang/crates.io-index" 1371 checksum = "50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3" 1372 dependencies = [ 1373 "futures-core", 1374 "pin-project-lite", 1375 "tokio", 1376 ] 1377 1378 [[package]] 1379 name = "tokio-tungstenite" 1380 version = "0.15.0" 1381 source = "registry+https://github.com/rust-lang/crates.io-index" 1382 checksum = "511de3f85caf1c98983545490c3d09685fa8eb634e57eec22bb4db271f46cbd8" 1383 dependencies = [ 1384 "futures-util", 1385 "log", 1386 "pin-project", 1387 "tokio", 1388 "tungstenite", 1389 ] 1390 1391 [[package]] 1392 name = "tokio-util" 1393 version = "0.6.9" 1394 source = "registry+https://github.com/rust-lang/crates.io-index" 1395 checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0" 1396 dependencies = [ 1397 "bytes", 1398 "futures-core", 1399 "futures-sink", 1400 "log", 1401 "pin-project-lite", 1402 "tokio", 1403 ] 1404 1405 [[package]] 1406 name = "tokio-util" 1407 version = "0.7.1" 1408 source = "registry+https://github.com/rust-lang/crates.io-index" 1409 checksum = "0edfdeb067411dba2044da6d1cb2df793dd35add7888d73c16e3381ded401764" 1410 dependencies = [ 1411 "bytes", 1412 "futures-core", 1413 "futures-sink", 1414 "pin-project-lite", 1415 "tokio", 1416 "tracing", 1417 ] 1418 1419 [[package]] 1420 name = "tower-service" 1421 version = "0.3.1" 1422 source = "registry+https://github.com/rust-lang/crates.io-index" 1423 checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" 1424 1425 [[package]] 1426 name = "tracing" 1427 version = "0.1.34" 1428 source = "registry+https://github.com/rust-lang/crates.io-index" 1429 checksum = "5d0ecdcb44a79f0fe9844f0c4f33a342cbcbb5117de8001e6ba0dc2351327d09" 1430 dependencies = [ 1431 "cfg-if", 1432 "log", 1433 "pin-project-lite", 1434 "tracing-attributes", 1435 "tracing-core", 1436 ] 1437 1438 [[package]] 1439 name = "tracing-attributes" 1440 version = "0.1.21" 1441 source = "registry+https://github.com/rust-lang/crates.io-index" 1442 checksum = "cc6b8ad3567499f98a1db7a752b07a7c8c7c7c34c332ec00effb2b0027974b7c" 1443 dependencies = [ 1444 "proc-macro2", 1445 "quote", 1446 "syn", 1447 ] 1448 1449 [[package]] 1450 name = "tracing-core" 1451 version = "0.1.26" 1452 source = "registry+https://github.com/rust-lang/crates.io-index" 1453 checksum = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f" 1454 dependencies = [ 1455 "lazy_static", 1456 ] 1457 1458 [[package]] 1459 name = "try-lock" 1460 version = "0.2.3" 1461 source = "registry+https://github.com/rust-lang/crates.io-index" 1462 checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" 1463 1464 [[package]] 1465 name = "tungstenite" 1466 version = "0.14.0" 1467 source = "registry+https://github.com/rust-lang/crates.io-index" 1468 checksum = "a0b2d8558abd2e276b0a8df5c05a2ec762609344191e5fd23e292c910e9165b5" 1469 dependencies = [ 1470 "base64", 1471 "byteorder", 1472 "bytes", 1473 "http", 1474 "httparse", 1475 "log", 1476 "rand", 1477 "sha-1 0.9.8", 1478 "thiserror", 1479 "url", 1480 "utf-8", 1481 ] 1482 1483 [[package]] 1484 name = "twoway" 1485 version = "0.1.8" 1486 source = "registry+https://github.com/rust-lang/crates.io-index" 1487 checksum = "59b11b2b5241ba34be09c3cc85a36e56e48f9888862e19cedf23336d35316ed1" 1488 dependencies = [ 1489 "memchr", 1490 ] 1491 1492 [[package]] 1493 name = "typenum" 1494 version = "1.15.0" 1495 source = "registry+https://github.com/rust-lang/crates.io-index" 1496 checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 1497 1498 [[package]] 1499 name = "unicase" 1500 version = "2.6.0" 1501 source = "registry+https://github.com/rust-lang/crates.io-index" 1502 checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 1503 dependencies = [ 1504 "version_check", 1505 ] 1506 1507 [[package]] 1508 name = "unicode-bidi" 1509 version = "0.3.8" 1510 source = "registry+https://github.com/rust-lang/crates.io-index" 1511 checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 1512 1513 [[package]] 1514 name = "unicode-normalization" 1515 version = "0.1.19" 1516 source = "registry+https://github.com/rust-lang/crates.io-index" 1517 checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9" 1518 dependencies = [ 1519 "tinyvec", 1520 ] 1521 1522 [[package]] 1523 name = "unicode-xid" 1524 version = "0.2.2" 1525 source = "registry+https://github.com/rust-lang/crates.io-index" 1526 checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" 1527 1528 [[package]] 1529 name = "url" 1530 version = "2.2.2" 1531 source = "registry+https://github.com/rust-lang/crates.io-index" 1532 checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" 1533 dependencies = [ 1534 "form_urlencoded", 1535 "idna", 1536 "matches", 1537 "percent-encoding", 1538 ] 1539 1540 [[package]] 1541 name = "utf-8" 1542 version = "0.7.6" 1543 source = "registry+https://github.com/rust-lang/crates.io-index" 1544 checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 1545 1546 [[package]] 1547 name = "uuid" 1548 version = "0.8.2" 1549 source = "registry+https://github.com/rust-lang/crates.io-index" 1550 checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 1551 1552 [[package]] 1553 name = "vcpkg" 1554 version = "0.2.15" 1555 source = "registry+https://github.com/rust-lang/crates.io-index" 1556 checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 1557 1558 [[package]] 1559 name = "version_check" 1560 version = "0.9.4" 1561 source = "registry+https://github.com/rust-lang/crates.io-index" 1562 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1563 1564 [[package]] 1565 name = "want" 1566 version = "0.3.0" 1567 source = "registry+https://github.com/rust-lang/crates.io-index" 1568 checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 1569 dependencies = [ 1570 "log", 1571 "try-lock", 1572 ] 1573 1574 [[package]] 1575 name = "warp" 1576 version = "0.3.2" 1577 source = "registry+https://github.com/rust-lang/crates.io-index" 1578 checksum = "3cef4e1e9114a4b7f1ac799f16ce71c14de5778500c5450ec6b7b920c55b587e" 1579 dependencies = [ 1580 "bytes", 1581 "futures-channel", 1582 "futures-util", 1583 "headers", 1584 "http", 1585 "hyper", 1586 "log", 1587 "mime", 1588 "mime_guess", 1589 "multipart", 1590 "percent-encoding", 1591 "pin-project", 1592 "scoped-tls", 1593 "serde", 1594 "serde_json", 1595 "serde_urlencoded", 1596 "tokio", 1597 "tokio-stream", 1598 "tokio-tungstenite", 1599 "tokio-util 0.6.9", 1600 "tower-service", 1601 "tracing", 1602 ] 1603 1604 [[package]] 1605 name = "wasi" 1606 version = "0.10.2+wasi-snapshot-preview1" 1607 source = "registry+https://github.com/rust-lang/crates.io-index" 1608 checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" 1609 1610 [[package]] 1611 name = "wasi" 1612 version = "0.11.0+wasi-snapshot-preview1" 1613 source = "registry+https://github.com/rust-lang/crates.io-index" 1614 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1615 1616 [[package]] 1617 name = "wasm-bindgen" 1618 version = "0.2.80" 1619 source = "registry+https://github.com/rust-lang/crates.io-index" 1620 checksum = "27370197c907c55e3f1a9fbe26f44e937fe6451368324e009cba39e139dc08ad" 1621 dependencies = [ 1622 "cfg-if", 1623 "wasm-bindgen-macro", 1624 ] 1625 1626 [[package]] 1627 name = "wasm-bindgen-backend" 1628 version = "0.2.80" 1629 source = "registry+https://github.com/rust-lang/crates.io-index" 1630 checksum = "53e04185bfa3a779273da532f5025e33398409573f348985af9a1cbf3774d3f4" 1631 dependencies = [ 1632 "bumpalo", 1633 "lazy_static", 1634 "log", 1635 "proc-macro2", 1636 "quote", 1637 "syn", 1638 "wasm-bindgen-shared", 1639 ] 1640 1641 [[package]] 1642 name = "wasm-bindgen-futures" 1643 version = "0.4.30" 1644 source = "registry+https://github.com/rust-lang/crates.io-index" 1645 checksum = "6f741de44b75e14c35df886aff5f1eb73aa114fa5d4d00dcd37b5e01259bf3b2" 1646 dependencies = [ 1647 "cfg-if", 1648 "js-sys", 1649 "wasm-bindgen", 1650 "web-sys", 1651 ] 1652 1653 [[package]] 1654 name = "wasm-bindgen-macro" 1655 version = "0.2.80" 1656 source = "registry+https://github.com/rust-lang/crates.io-index" 1657 checksum = "17cae7ff784d7e83a2fe7611cfe766ecf034111b49deb850a3dc7699c08251f5" 1658 dependencies = [ 1659 "quote", 1660 "wasm-bindgen-macro-support", 1661 ] 1662 1663 [[package]] 1664 name = "wasm-bindgen-macro-support" 1665 version = "0.2.80" 1666 source = "registry+https://github.com/rust-lang/crates.io-index" 1667 checksum = "99ec0dc7a4756fffc231aab1b9f2f578d23cd391390ab27f952ae0c9b3ece20b" 1668 dependencies = [ 1669 "proc-macro2", 1670 "quote", 1671 "syn", 1672 "wasm-bindgen-backend", 1673 "wasm-bindgen-shared", 1674 ] 1675 1676 [[package]] 1677 name = "wasm-bindgen-shared" 1678 version = "0.2.80" 1679 source = "registry+https://github.com/rust-lang/crates.io-index" 1680 checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744" 1681 1682 [[package]] 1683 name = "web-sys" 1684 version = "0.3.57" 1685 source = "registry+https://github.com/rust-lang/crates.io-index" 1686 checksum = "7b17e741662c70c8bd24ac5c5b18de314a2c26c32bf8346ee1e6f53de919c283" 1687 dependencies = [ 1688 "js-sys", 1689 "wasm-bindgen", 1690 ] 1691 1692 [[package]] 1693 name = "winapi" 1694 version = "0.3.9" 1695 source = "registry+https://github.com/rust-lang/crates.io-index" 1696 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1697 dependencies = [ 1698 "winapi-i686-pc-windows-gnu", 1699 "winapi-x86_64-pc-windows-gnu", 1700 ] 1701 1702 [[package]] 1703 name = "winapi-i686-pc-windows-gnu" 1704 version = "0.4.0" 1705 source = "registry+https://github.com/rust-lang/crates.io-index" 1706 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1707 1708 [[package]] 1709 name = "winapi-util" 1710 version = "0.1.5" 1711 source = "registry+https://github.com/rust-lang/crates.io-index" 1712 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 1713 dependencies = [ 1714 "winapi", 1715 ] 1716 1717 [[package]] 1718 name = "winapi-x86_64-pc-windows-gnu" 1719 version = "0.4.0" 1720 source = "registry+https://github.com/rust-lang/crates.io-index" 1721 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1722 1723 [[package]] 1724 name = "windows-sys" 1725 version = "0.34.0" 1726 source = "registry+https://github.com/rust-lang/crates.io-index" 1727 checksum = "5acdd78cb4ba54c0045ac14f62d8f94a03d10047904ae2a40afa1e99d8f70825" 1728 dependencies = [ 1729 "windows_aarch64_msvc", 1730 "windows_i686_gnu", 1731 "windows_i686_msvc", 1732 "windows_x86_64_gnu", 1733 "windows_x86_64_msvc", 1734 ] 1735 1736 [[package]] 1737 name = "windows_aarch64_msvc" 1738 version = "0.34.0" 1739 source = "registry+https://github.com/rust-lang/crates.io-index" 1740 checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d" 1741 1742 [[package]] 1743 name = "windows_i686_gnu" 1744 version = "0.34.0" 1745 source = "registry+https://github.com/rust-lang/crates.io-index" 1746 checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed" 1747 1748 [[package]] 1749 name = "windows_i686_msvc" 1750 version = "0.34.0" 1751 source = "registry+https://github.com/rust-lang/crates.io-index" 1752 checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956" 1753 1754 [[package]] 1755 name = "windows_x86_64_gnu" 1756 version = "0.34.0" 1757 source = "registry+https://github.com/rust-lang/crates.io-index" 1758 checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4" 1759 1760 [[package]] 1761 name = "windows_x86_64_msvc" 1762 version = "0.34.0" 1763 source = "registry+https://github.com/rust-lang/crates.io-index" 1764 checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9" 1765 1766 [[package]] 1767 name = "winreg" 1768 version = "0.10.1" 1769 source = "registry+https://github.com/rust-lang/crates.io-index" 1770 checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 1771 dependencies = [ 1772 "winapi", 1773 ]