at 23.11-beta 3029 lines 75 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "abomonation" 7version = "0.7.3" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "56e72913c99b1f927aa7bd59a41518fdd9995f63ffc8760f211609e0241c4fb2" 10 11[[package]] 12name = "abomonation_derive" 13version = "0.5.0" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "e50e2a046af56a864c62d97b7153fda72c596e646be1b0c7963736821f6e1efa" 16dependencies = [ 17 "proc-macro2", 18 "quote", 19 "synstructure", 20] 21 22[[package]] 23name = "ahash" 24version = "0.7.6" 25source = "registry+https://github.com/rust-lang/crates.io-index" 26checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 27dependencies = [ 28 "getrandom", 29 "once_cell", 30 "version_check", 31] 32 33[[package]] 34name = "ahash" 35version = "0.8.3" 36source = "registry+https://github.com/rust-lang/crates.io-index" 37checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 38dependencies = [ 39 "cfg-if", 40 "once_cell", 41 "version_check", 42] 43 44[[package]] 45name = "android-tzdata" 46version = "0.1.1" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 49 50[[package]] 51name = "android_system_properties" 52version = "0.1.5" 53source = "registry+https://github.com/rust-lang/crates.io-index" 54checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 55dependencies = [ 56 "libc", 57] 58 59[[package]] 60name = "anyhow" 61version = "1.0.71" 62source = "registry+https://github.com/rust-lang/crates.io-index" 63checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 64 65[[package]] 66name = "async-stream" 67version = "0.3.5" 68source = "registry+https://github.com/rust-lang/crates.io-index" 69checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" 70dependencies = [ 71 "async-stream-impl", 72 "futures-core", 73 "pin-project-lite", 74] 75 76[[package]] 77name = "async-stream-impl" 78version = "0.3.5" 79source = "registry+https://github.com/rust-lang/crates.io-index" 80checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" 81dependencies = [ 82 "proc-macro2", 83 "quote", 84 "syn 2.0.18", 85] 86 87[[package]] 88name = "async-trait" 89version = "0.1.68" 90source = "registry+https://github.com/rust-lang/crates.io-index" 91checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" 92dependencies = [ 93 "proc-macro2", 94 "quote", 95 "syn 2.0.18", 96] 97 98[[package]] 99name = "atoi" 100version = "1.0.0" 101source = "registry+https://github.com/rust-lang/crates.io-index" 102checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e" 103dependencies = [ 104 "num-traits", 105] 106 107[[package]] 108name = "autocfg" 109version = "1.1.0" 110source = "registry+https://github.com/rust-lang/crates.io-index" 111checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 112 113[[package]] 114name = "axum" 115version = "0.5.17" 116source = "registry+https://github.com/rust-lang/crates.io-index" 117checksum = "acee9fd5073ab6b045a275b3e709c163dd36c90685219cb21804a147b58dba43" 118dependencies = [ 119 "async-trait", 120 "axum-core 0.2.9", 121 "bitflags", 122 "bytes", 123 "futures-util", 124 "http", 125 "http-body", 126 "hyper", 127 "itoa", 128 "matchit 0.5.0", 129 "memchr", 130 "mime", 131 "percent-encoding", 132 "pin-project-lite", 133 "serde", 134 "serde_json", 135 "serde_urlencoded", 136 "sync_wrapper", 137 "tokio", 138 "tower", 139 "tower-http", 140 "tower-layer", 141 "tower-service", 142] 143 144[[package]] 145name = "axum" 146version = "0.6.18" 147source = "registry+https://github.com/rust-lang/crates.io-index" 148checksum = "f8175979259124331c1d7bf6586ee7e0da434155e4b2d48ec2c8386281d8df39" 149dependencies = [ 150 "async-trait", 151 "axum-core 0.3.4", 152 "bitflags", 153 "bytes", 154 "futures-util", 155 "http", 156 "http-body", 157 "hyper", 158 "itoa", 159 "matchit 0.7.0", 160 "memchr", 161 "mime", 162 "percent-encoding", 163 "pin-project-lite", 164 "rustversion", 165 "serde", 166 "sync_wrapper", 167 "tower", 168 "tower-layer", 169 "tower-service", 170] 171 172[[package]] 173name = "axum-core" 174version = "0.2.9" 175source = "registry+https://github.com/rust-lang/crates.io-index" 176checksum = "37e5939e02c56fecd5c017c37df4238c0a839fa76b7f97acdd7efb804fd181cc" 177dependencies = [ 178 "async-trait", 179 "bytes", 180 "futures-util", 181 "http", 182 "http-body", 183 "mime", 184 "tower-layer", 185 "tower-service", 186] 187 188[[package]] 189name = "axum-core" 190version = "0.3.4" 191source = "registry+https://github.com/rust-lang/crates.io-index" 192checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" 193dependencies = [ 194 "async-trait", 195 "bytes", 196 "futures-util", 197 "http", 198 "http-body", 199 "mime", 200 "rustversion", 201 "tower-layer", 202 "tower-service", 203] 204 205[[package]] 206name = "base64" 207version = "0.13.1" 208source = "registry+https://github.com/rust-lang/crates.io-index" 209checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 210 211[[package]] 212name = "base64" 213version = "0.21.2" 214source = "registry+https://github.com/rust-lang/crates.io-index" 215checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" 216 217[[package]] 218name = "bincode" 219version = "1.3.3" 220source = "registry+https://github.com/rust-lang/crates.io-index" 221checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 222dependencies = [ 223 "serde", 224] 225 226[[package]] 227name = "bitflags" 228version = "1.3.2" 229source = "registry+https://github.com/rust-lang/crates.io-index" 230checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 231 232[[package]] 233name = "block-buffer" 234version = "0.10.4" 235source = "registry+https://github.com/rust-lang/crates.io-index" 236checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 237dependencies = [ 238 "generic-array", 239] 240 241[[package]] 242name = "bumpalo" 243version = "3.13.0" 244source = "registry+https://github.com/rust-lang/crates.io-index" 245checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 246 247[[package]] 248name = "byteorder" 249version = "1.4.3" 250source = "registry+https://github.com/rust-lang/crates.io-index" 251checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 252 253[[package]] 254name = "bytes" 255version = "1.4.0" 256source = "registry+https://github.com/rust-lang/crates.io-index" 257checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 258 259[[package]] 260name = "bytewax" 261version = "0.16.2" 262dependencies = [ 263 "axum 0.5.17", 264 "bincode", 265 "chrono", 266 "futures", 267 "num", 268 "openssl-src", 269 "opentelemetry", 270 "opentelemetry-jaeger", 271 "opentelemetry-otlp", 272 "pyo3", 273 "rdkafka", 274 "sasl2-sys", 275 "serde", 276 "serde_test", 277 "sqlx", 278 "timely", 279 "tokio", 280 "tracing", 281 "tracing-opentelemetry", 282 "tracing-subscriber", 283] 284 285[[package]] 286name = "cc" 287version = "1.0.79" 288source = "registry+https://github.com/rust-lang/crates.io-index" 289checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 290 291[[package]] 292name = "cfg-if" 293version = "1.0.0" 294source = "registry+https://github.com/rust-lang/crates.io-index" 295checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 296 297[[package]] 298name = "chrono" 299version = "0.4.26" 300source = "registry+https://github.com/rust-lang/crates.io-index" 301checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" 302dependencies = [ 303 "android-tzdata", 304 "iana-time-zone", 305 "num-traits", 306 "serde", 307 "winapi", 308] 309 310[[package]] 311name = "cmake" 312version = "0.1.50" 313source = "registry+https://github.com/rust-lang/crates.io-index" 314checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" 315dependencies = [ 316 "cc", 317] 318 319[[package]] 320name = "columnation" 321version = "0.1.0" 322source = "git+https://github.com/frankmcsherry/columnation#eb8e20c10e748dcbfe6266be8e24e14422d3de0f" 323dependencies = [ 324 "paste", 325] 326 327[[package]] 328name = "core-foundation-sys" 329version = "0.8.4" 330source = "registry+https://github.com/rust-lang/crates.io-index" 331checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 332 333[[package]] 334name = "cpufeatures" 335version = "0.2.7" 336source = "registry+https://github.com/rust-lang/crates.io-index" 337checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" 338dependencies = [ 339 "libc", 340] 341 342[[package]] 343name = "crc" 344version = "3.0.1" 345source = "registry+https://github.com/rust-lang/crates.io-index" 346checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe" 347dependencies = [ 348 "crc-catalog", 349] 350 351[[package]] 352name = "crc-catalog" 353version = "2.2.0" 354source = "registry+https://github.com/rust-lang/crates.io-index" 355checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484" 356 357[[package]] 358name = "crossbeam-channel" 359version = "0.5.8" 360source = "registry+https://github.com/rust-lang/crates.io-index" 361checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 362dependencies = [ 363 "cfg-if", 364 "crossbeam-utils", 365] 366 367[[package]] 368name = "crossbeam-queue" 369version = "0.3.8" 370source = "registry+https://github.com/rust-lang/crates.io-index" 371checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" 372dependencies = [ 373 "cfg-if", 374 "crossbeam-utils", 375] 376 377[[package]] 378name = "crossbeam-utils" 379version = "0.8.15" 380source = "registry+https://github.com/rust-lang/crates.io-index" 381checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 382dependencies = [ 383 "cfg-if", 384] 385 386[[package]] 387name = "crypto-common" 388version = "0.1.6" 389source = "registry+https://github.com/rust-lang/crates.io-index" 390checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 391dependencies = [ 392 "generic-array", 393 "typenum", 394] 395 396[[package]] 397name = "dashmap" 398version = "5.4.0" 399source = "registry+https://github.com/rust-lang/crates.io-index" 400checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc" 401dependencies = [ 402 "cfg-if", 403 "hashbrown 0.12.3", 404 "lock_api", 405 "once_cell", 406 "parking_lot_core 0.9.7", 407] 408 409[[package]] 410name = "digest" 411version = "0.10.7" 412source = "registry+https://github.com/rust-lang/crates.io-index" 413checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 414dependencies = [ 415 "block-buffer", 416 "crypto-common", 417 "subtle", 418] 419 420[[package]] 421name = "dirs" 422version = "4.0.0" 423source = "registry+https://github.com/rust-lang/crates.io-index" 424checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 425dependencies = [ 426 "dirs-sys", 427] 428 429[[package]] 430name = "dirs-sys" 431version = "0.3.7" 432source = "registry+https://github.com/rust-lang/crates.io-index" 433checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 434dependencies = [ 435 "libc", 436 "redox_users", 437 "winapi", 438] 439 440[[package]] 441name = "dotenvy" 442version = "0.15.7" 443source = "registry+https://github.com/rust-lang/crates.io-index" 444checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 445 446[[package]] 447name = "duct" 448version = "0.13.6" 449source = "registry+https://github.com/rust-lang/crates.io-index" 450checksum = "37ae3fc31835f74c2a7ceda3aeede378b0ae2e74c8f1c36559fcc9ae2a4e7d3e" 451dependencies = [ 452 "libc", 453 "once_cell", 454 "os_pipe", 455 "shared_child", 456] 457 458[[package]] 459name = "either" 460version = "1.8.1" 461source = "registry+https://github.com/rust-lang/crates.io-index" 462checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 463 464[[package]] 465name = "encoding_rs" 466version = "0.8.32" 467source = "registry+https://github.com/rust-lang/crates.io-index" 468checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 469dependencies = [ 470 "cfg-if", 471] 472 473[[package]] 474name = "errno" 475version = "0.3.1" 476source = "registry+https://github.com/rust-lang/crates.io-index" 477checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 478dependencies = [ 479 "errno-dragonfly", 480 "libc", 481 "windows-sys 0.48.0", 482] 483 484[[package]] 485name = "errno-dragonfly" 486version = "0.1.2" 487source = "registry+https://github.com/rust-lang/crates.io-index" 488checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 489dependencies = [ 490 "cc", 491 "libc", 492] 493 494[[package]] 495name = "event-listener" 496version = "2.5.3" 497source = "registry+https://github.com/rust-lang/crates.io-index" 498checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 499 500[[package]] 501name = "fastrand" 502version = "1.9.0" 503source = "registry+https://github.com/rust-lang/crates.io-index" 504checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 505dependencies = [ 506 "instant", 507] 508 509[[package]] 510name = "fixedbitset" 511version = "0.4.2" 512source = "registry+https://github.com/rust-lang/crates.io-index" 513checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 514 515[[package]] 516name = "flume" 517version = "0.10.14" 518source = "registry+https://github.com/rust-lang/crates.io-index" 519checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 520dependencies = [ 521 "futures-core", 522 "futures-sink", 523 "pin-project", 524 "spin 0.9.8", 525] 526 527[[package]] 528name = "fnv" 529version = "1.0.7" 530source = "registry+https://github.com/rust-lang/crates.io-index" 531checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 532 533[[package]] 534name = "form_urlencoded" 535version = "1.1.0" 536source = "registry+https://github.com/rust-lang/crates.io-index" 537checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 538dependencies = [ 539 "percent-encoding", 540] 541 542[[package]] 543name = "futures" 544version = "0.3.28" 545source = "registry+https://github.com/rust-lang/crates.io-index" 546checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 547dependencies = [ 548 "futures-channel", 549 "futures-core", 550 "futures-executor", 551 "futures-io", 552 "futures-sink", 553 "futures-task", 554 "futures-util", 555] 556 557[[package]] 558name = "futures-channel" 559version = "0.3.28" 560source = "registry+https://github.com/rust-lang/crates.io-index" 561checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 562dependencies = [ 563 "futures-core", 564 "futures-sink", 565] 566 567[[package]] 568name = "futures-core" 569version = "0.3.28" 570source = "registry+https://github.com/rust-lang/crates.io-index" 571checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 572 573[[package]] 574name = "futures-executor" 575version = "0.3.28" 576source = "registry+https://github.com/rust-lang/crates.io-index" 577checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 578dependencies = [ 579 "futures-core", 580 "futures-task", 581 "futures-util", 582] 583 584[[package]] 585name = "futures-intrusive" 586version = "0.4.2" 587source = "registry+https://github.com/rust-lang/crates.io-index" 588checksum = "a604f7a68fbf8103337523b1fadc8ade7361ee3f112f7c680ad179651616aed5" 589dependencies = [ 590 "futures-core", 591 "lock_api", 592 "parking_lot 0.11.2", 593] 594 595[[package]] 596name = "futures-io" 597version = "0.3.28" 598source = "registry+https://github.com/rust-lang/crates.io-index" 599checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 600 601[[package]] 602name = "futures-macro" 603version = "0.3.28" 604source = "registry+https://github.com/rust-lang/crates.io-index" 605checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 606dependencies = [ 607 "proc-macro2", 608 "quote", 609 "syn 2.0.18", 610] 611 612[[package]] 613name = "futures-sink" 614version = "0.3.28" 615source = "registry+https://github.com/rust-lang/crates.io-index" 616checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 617 618[[package]] 619name = "futures-task" 620version = "0.3.28" 621source = "registry+https://github.com/rust-lang/crates.io-index" 622checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 623 624[[package]] 625name = "futures-util" 626version = "0.3.28" 627source = "registry+https://github.com/rust-lang/crates.io-index" 628checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 629dependencies = [ 630 "futures-channel", 631 "futures-core", 632 "futures-io", 633 "futures-macro", 634 "futures-sink", 635 "futures-task", 636 "memchr", 637 "pin-project-lite", 638 "pin-utils", 639 "slab", 640] 641 642[[package]] 643name = "generic-array" 644version = "0.14.7" 645source = "registry+https://github.com/rust-lang/crates.io-index" 646checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 647dependencies = [ 648 "typenum", 649 "version_check", 650] 651 652[[package]] 653name = "getopts" 654version = "0.2.21" 655source = "registry+https://github.com/rust-lang/crates.io-index" 656checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 657dependencies = [ 658 "unicode-width", 659] 660 661[[package]] 662name = "getrandom" 663version = "0.2.9" 664source = "registry+https://github.com/rust-lang/crates.io-index" 665checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 666dependencies = [ 667 "cfg-if", 668 "libc", 669 "wasi", 670] 671 672[[package]] 673name = "h2" 674version = "0.3.19" 675source = "registry+https://github.com/rust-lang/crates.io-index" 676checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782" 677dependencies = [ 678 "bytes", 679 "fnv", 680 "futures-core", 681 "futures-sink", 682 "futures-util", 683 "http", 684 "indexmap", 685 "slab", 686 "tokio", 687 "tokio-util", 688 "tracing", 689] 690 691[[package]] 692name = "hashbrown" 693version = "0.12.3" 694source = "registry+https://github.com/rust-lang/crates.io-index" 695checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 696 697[[package]] 698name = "hashbrown" 699version = "0.13.2" 700source = "registry+https://github.com/rust-lang/crates.io-index" 701checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 702dependencies = [ 703 "ahash 0.8.3", 704] 705 706[[package]] 707name = "hashlink" 708version = "0.8.2" 709source = "registry+https://github.com/rust-lang/crates.io-index" 710checksum = "0761a1b9491c4f2e3d66aa0f62d0fba0af9a0e2852e4d48ea506632a4b56e6aa" 711dependencies = [ 712 "hashbrown 0.13.2", 713] 714 715[[package]] 716name = "heck" 717version = "0.4.1" 718source = "registry+https://github.com/rust-lang/crates.io-index" 719checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 720dependencies = [ 721 "unicode-segmentation", 722] 723 724[[package]] 725name = "hermit-abi" 726version = "0.2.6" 727source = "registry+https://github.com/rust-lang/crates.io-index" 728checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 729dependencies = [ 730 "libc", 731] 732 733[[package]] 734name = "hermit-abi" 735version = "0.3.1" 736source = "registry+https://github.com/rust-lang/crates.io-index" 737checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 738 739[[package]] 740name = "hex" 741version = "0.4.3" 742source = "registry+https://github.com/rust-lang/crates.io-index" 743checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 744 745[[package]] 746name = "hkdf" 747version = "0.12.3" 748source = "registry+https://github.com/rust-lang/crates.io-index" 749checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" 750dependencies = [ 751 "hmac", 752] 753 754[[package]] 755name = "hmac" 756version = "0.12.1" 757source = "registry+https://github.com/rust-lang/crates.io-index" 758checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 759dependencies = [ 760 "digest", 761] 762 763[[package]] 764name = "http" 765version = "0.2.9" 766source = "registry+https://github.com/rust-lang/crates.io-index" 767checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 768dependencies = [ 769 "bytes", 770 "fnv", 771 "itoa", 772] 773 774[[package]] 775name = "http-body" 776version = "0.4.5" 777source = "registry+https://github.com/rust-lang/crates.io-index" 778checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 779dependencies = [ 780 "bytes", 781 "http", 782 "pin-project-lite", 783] 784 785[[package]] 786name = "http-range-header" 787version = "0.3.0" 788source = "registry+https://github.com/rust-lang/crates.io-index" 789checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29" 790 791[[package]] 792name = "httparse" 793version = "1.8.0" 794source = "registry+https://github.com/rust-lang/crates.io-index" 795checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 796 797[[package]] 798name = "httpdate" 799version = "1.0.2" 800source = "registry+https://github.com/rust-lang/crates.io-index" 801checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 802 803[[package]] 804name = "hyper" 805version = "0.14.26" 806source = "registry+https://github.com/rust-lang/crates.io-index" 807checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4" 808dependencies = [ 809 "bytes", 810 "futures-channel", 811 "futures-core", 812 "futures-util", 813 "h2", 814 "http", 815 "http-body", 816 "httparse", 817 "httpdate", 818 "itoa", 819 "pin-project-lite", 820 "socket2", 821 "tokio", 822 "tower-service", 823 "tracing", 824 "want", 825] 826 827[[package]] 828name = "hyper-timeout" 829version = "0.4.1" 830source = "registry+https://github.com/rust-lang/crates.io-index" 831checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" 832dependencies = [ 833 "hyper", 834 "pin-project-lite", 835 "tokio", 836 "tokio-io-timeout", 837] 838 839[[package]] 840name = "iana-time-zone" 841version = "0.1.56" 842source = "registry+https://github.com/rust-lang/crates.io-index" 843checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" 844dependencies = [ 845 "android_system_properties", 846 "core-foundation-sys", 847 "iana-time-zone-haiku", 848 "js-sys", 849 "wasm-bindgen", 850 "windows", 851] 852 853[[package]] 854name = "iana-time-zone-haiku" 855version = "0.1.2" 856source = "registry+https://github.com/rust-lang/crates.io-index" 857checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 858dependencies = [ 859 "cc", 860] 861 862[[package]] 863name = "idna" 864version = "0.3.0" 865source = "registry+https://github.com/rust-lang/crates.io-index" 866checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 867dependencies = [ 868 "unicode-bidi", 869 "unicode-normalization", 870] 871 872[[package]] 873name = "indexmap" 874version = "1.9.3" 875source = "registry+https://github.com/rust-lang/crates.io-index" 876checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 877dependencies = [ 878 "autocfg", 879 "hashbrown 0.12.3", 880] 881 882[[package]] 883name = "indoc" 884version = "1.0.9" 885source = "registry+https://github.com/rust-lang/crates.io-index" 886checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" 887 888[[package]] 889name = "instant" 890version = "0.1.12" 891source = "registry+https://github.com/rust-lang/crates.io-index" 892checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 893dependencies = [ 894 "cfg-if", 895] 896 897[[package]] 898name = "integer-encoding" 899version = "3.0.4" 900source = "registry+https://github.com/rust-lang/crates.io-index" 901checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02" 902 903[[package]] 904name = "io-lifetimes" 905version = "1.0.11" 906source = "registry+https://github.com/rust-lang/crates.io-index" 907checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 908dependencies = [ 909 "hermit-abi 0.3.1", 910 "libc", 911 "windows-sys 0.48.0", 912] 913 914[[package]] 915name = "ipnet" 916version = "2.7.2" 917source = "registry+https://github.com/rust-lang/crates.io-index" 918checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" 919 920[[package]] 921name = "itertools" 922version = "0.10.5" 923source = "registry+https://github.com/rust-lang/crates.io-index" 924checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 925dependencies = [ 926 "either", 927] 928 929[[package]] 930name = "itoa" 931version = "1.0.6" 932source = "registry+https://github.com/rust-lang/crates.io-index" 933checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 934 935[[package]] 936name = "js-sys" 937version = "0.3.63" 938source = "registry+https://github.com/rust-lang/crates.io-index" 939checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790" 940dependencies = [ 941 "wasm-bindgen", 942] 943 944[[package]] 945name = "krb5-src" 946version = "0.3.2+1.19.2" 947source = "registry+https://github.com/rust-lang/crates.io-index" 948checksum = "44cd3b7e7735d48bc3793837041294f2eb747bd0f63bbc081e89972abb9e48fb" 949dependencies = [ 950 "duct", 951] 952 953[[package]] 954name = "lazy_static" 955version = "1.4.0" 956source = "registry+https://github.com/rust-lang/crates.io-index" 957checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 958 959[[package]] 960name = "libc" 961version = "0.2.144" 962source = "registry+https://github.com/rust-lang/crates.io-index" 963checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" 964 965[[package]] 966name = "libsqlite3-sys" 967version = "0.24.2" 968source = "registry+https://github.com/rust-lang/crates.io-index" 969checksum = "898745e570c7d0453cc1fbc4a701eb6c662ed54e8fec8b7d14be137ebeeb9d14" 970dependencies = [ 971 "cc", 972 "pkg-config", 973 "vcpkg", 974] 975 976[[package]] 977name = "libz-sys" 978version = "1.1.9" 979source = "registry+https://github.com/rust-lang/crates.io-index" 980checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db" 981dependencies = [ 982 "cc", 983 "libc", 984 "pkg-config", 985 "vcpkg", 986] 987 988[[package]] 989name = "linux-raw-sys" 990version = "0.3.8" 991source = "registry+https://github.com/rust-lang/crates.io-index" 992checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 993 994[[package]] 995name = "lock_api" 996version = "0.4.9" 997source = "registry+https://github.com/rust-lang/crates.io-index" 998checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 999dependencies = [ 1000 "autocfg", 1001 "scopeguard", 1002] 1003 1004[[package]] 1005name = "log" 1006version = "0.4.18" 1007source = "registry+https://github.com/rust-lang/crates.io-index" 1008checksum = "518ef76f2f87365916b142844c16d8fefd85039bc5699050210a7778ee1cd1de" 1009 1010[[package]] 1011name = "matchers" 1012version = "0.1.0" 1013source = "registry+https://github.com/rust-lang/crates.io-index" 1014checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1015dependencies = [ 1016 "regex-automata", 1017] 1018 1019[[package]] 1020name = "matchit" 1021version = "0.5.0" 1022source = "registry+https://github.com/rust-lang/crates.io-index" 1023checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb" 1024 1025[[package]] 1026name = "matchit" 1027version = "0.7.0" 1028source = "registry+https://github.com/rust-lang/crates.io-index" 1029checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" 1030 1031[[package]] 1032name = "md-5" 1033version = "0.10.5" 1034source = "registry+https://github.com/rust-lang/crates.io-index" 1035checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" 1036dependencies = [ 1037 "digest", 1038] 1039 1040[[package]] 1041name = "memchr" 1042version = "2.5.0" 1043source = "registry+https://github.com/rust-lang/crates.io-index" 1044checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1045 1046[[package]] 1047name = "memoffset" 1048version = "0.8.0" 1049source = "registry+https://github.com/rust-lang/crates.io-index" 1050checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 1051dependencies = [ 1052 "autocfg", 1053] 1054 1055[[package]] 1056name = "mime" 1057version = "0.3.17" 1058source = "registry+https://github.com/rust-lang/crates.io-index" 1059checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1060 1061[[package]] 1062name = "minimal-lexical" 1063version = "0.2.1" 1064source = "registry+https://github.com/rust-lang/crates.io-index" 1065checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1066 1067[[package]] 1068name = "mio" 1069version = "0.8.8" 1070source = "registry+https://github.com/rust-lang/crates.io-index" 1071checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" 1072dependencies = [ 1073 "libc", 1074 "wasi", 1075 "windows-sys 0.48.0", 1076] 1077 1078[[package]] 1079name = "multimap" 1080version = "0.8.3" 1081source = "registry+https://github.com/rust-lang/crates.io-index" 1082checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" 1083 1084[[package]] 1085name = "nom" 1086version = "7.1.3" 1087source = "registry+https://github.com/rust-lang/crates.io-index" 1088checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1089dependencies = [ 1090 "memchr", 1091 "minimal-lexical", 1092] 1093 1094[[package]] 1095name = "nu-ansi-term" 1096version = "0.46.0" 1097source = "registry+https://github.com/rust-lang/crates.io-index" 1098checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1099dependencies = [ 1100 "overload", 1101 "winapi", 1102] 1103 1104[[package]] 1105name = "num" 1106version = "0.4.0" 1107source = "registry+https://github.com/rust-lang/crates.io-index" 1108checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606" 1109dependencies = [ 1110 "num-bigint", 1111 "num-complex", 1112 "num-integer", 1113 "num-iter", 1114 "num-rational", 1115 "num-traits", 1116] 1117 1118[[package]] 1119name = "num-bigint" 1120version = "0.4.3" 1121source = "registry+https://github.com/rust-lang/crates.io-index" 1122checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 1123dependencies = [ 1124 "autocfg", 1125 "num-integer", 1126 "num-traits", 1127] 1128 1129[[package]] 1130name = "num-complex" 1131version = "0.4.3" 1132source = "registry+https://github.com/rust-lang/crates.io-index" 1133checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d" 1134dependencies = [ 1135 "num-traits", 1136] 1137 1138[[package]] 1139name = "num-integer" 1140version = "0.1.45" 1141source = "registry+https://github.com/rust-lang/crates.io-index" 1142checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1143dependencies = [ 1144 "autocfg", 1145 "num-traits", 1146] 1147 1148[[package]] 1149name = "num-iter" 1150version = "0.1.43" 1151source = "registry+https://github.com/rust-lang/crates.io-index" 1152checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 1153dependencies = [ 1154 "autocfg", 1155 "num-integer", 1156 "num-traits", 1157] 1158 1159[[package]] 1160name = "num-rational" 1161version = "0.4.1" 1162source = "registry+https://github.com/rust-lang/crates.io-index" 1163checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 1164dependencies = [ 1165 "autocfg", 1166 "num-bigint", 1167 "num-integer", 1168 "num-traits", 1169] 1170 1171[[package]] 1172name = "num-traits" 1173version = "0.2.15" 1174source = "registry+https://github.com/rust-lang/crates.io-index" 1175checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1176dependencies = [ 1177 "autocfg", 1178] 1179 1180[[package]] 1181name = "num_cpus" 1182version = "1.15.0" 1183source = "registry+https://github.com/rust-lang/crates.io-index" 1184checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 1185dependencies = [ 1186 "hermit-abi 0.2.6", 1187 "libc", 1188] 1189 1190[[package]] 1191name = "num_enum" 1192version = "0.5.11" 1193source = "registry+https://github.com/rust-lang/crates.io-index" 1194checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 1195dependencies = [ 1196 "num_enum_derive", 1197] 1198 1199[[package]] 1200name = "num_enum_derive" 1201version = "0.5.11" 1202source = "registry+https://github.com/rust-lang/crates.io-index" 1203checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 1204dependencies = [ 1205 "proc-macro-crate", 1206 "proc-macro2", 1207 "quote", 1208 "syn 1.0.109", 1209] 1210 1211[[package]] 1212name = "once_cell" 1213version = "1.17.2" 1214source = "registry+https://github.com/rust-lang/crates.io-index" 1215checksum = "9670a07f94779e00908f3e686eab508878ebb390ba6e604d3a284c00e8d0487b" 1216 1217[[package]] 1218name = "openssl-src" 1219version = "111.26.0+1.1.1u" 1220source = "registry+https://github.com/rust-lang/crates.io-index" 1221checksum = "efc62c9f12b22b8f5208c23a7200a442b2e5999f8bdf80233852122b5a4f6f37" 1222dependencies = [ 1223 "cc", 1224] 1225 1226[[package]] 1227name = "openssl-sys" 1228version = "0.9.88" 1229source = "registry+https://github.com/rust-lang/crates.io-index" 1230checksum = "c2ce0f250f34a308dcfdbb351f511359857d4ed2134ba715a4eadd46e1ffd617" 1231dependencies = [ 1232 "cc", 1233 "libc", 1234 "openssl-src", 1235 "pkg-config", 1236 "vcpkg", 1237] 1238 1239[[package]] 1240name = "opentelemetry" 1241version = "0.18.0" 1242source = "registry+https://github.com/rust-lang/crates.io-index" 1243checksum = "69d6c3d7288a106c0a363e4b0e8d308058d56902adefb16f4936f417ffef086e" 1244dependencies = [ 1245 "opentelemetry_api", 1246 "opentelemetry_sdk", 1247] 1248 1249[[package]] 1250name = "opentelemetry-http" 1251version = "0.7.0" 1252source = "registry+https://github.com/rust-lang/crates.io-index" 1253checksum = "1edc79add46364183ece1a4542592ca593e6421c60807232f5b8f7a31703825d" 1254dependencies = [ 1255 "async-trait", 1256 "bytes", 1257 "http", 1258 "opentelemetry_api", 1259 "reqwest", 1260] 1261 1262[[package]] 1263name = "opentelemetry-jaeger" 1264version = "0.17.0" 1265source = "registry+https://github.com/rust-lang/crates.io-index" 1266checksum = "1e785d273968748578931e4dc3b4f5ec86b26e09d9e0d66b55adda7fce742f7a" 1267dependencies = [ 1268 "async-trait", 1269 "futures", 1270 "futures-executor", 1271 "once_cell", 1272 "opentelemetry", 1273 "opentelemetry-semantic-conventions", 1274 "thiserror", 1275 "thrift", 1276 "tokio", 1277] 1278 1279[[package]] 1280name = "opentelemetry-otlp" 1281version = "0.11.0" 1282source = "registry+https://github.com/rust-lang/crates.io-index" 1283checksum = "d1c928609d087790fc936a1067bdc310ae702bdf3b090c3f281b713622c8bbde" 1284dependencies = [ 1285 "async-trait", 1286 "futures", 1287 "futures-util", 1288 "http", 1289 "opentelemetry", 1290 "opentelemetry-http", 1291 "opentelemetry-proto", 1292 "prost", 1293 "reqwest", 1294 "thiserror", 1295 "tokio", 1296 "tonic", 1297] 1298 1299[[package]] 1300name = "opentelemetry-proto" 1301version = "0.1.0" 1302source = "registry+https://github.com/rust-lang/crates.io-index" 1303checksum = "d61a2f56df5574508dd86aaca016c917489e589ece4141df1b5e349af8d66c28" 1304dependencies = [ 1305 "futures", 1306 "futures-util", 1307 "opentelemetry", 1308 "prost", 1309 "tonic", 1310 "tonic-build", 1311] 1312 1313[[package]] 1314name = "opentelemetry-semantic-conventions" 1315version = "0.10.0" 1316source = "registry+https://github.com/rust-lang/crates.io-index" 1317checksum = "9b02e0230abb0ab6636d18e2ba8fa02903ea63772281340ccac18e0af3ec9eeb" 1318dependencies = [ 1319 "opentelemetry", 1320] 1321 1322[[package]] 1323name = "opentelemetry_api" 1324version = "0.18.0" 1325source = "registry+https://github.com/rust-lang/crates.io-index" 1326checksum = "c24f96e21e7acc813c7a8394ee94978929db2bcc46cf6b5014fc612bf7760c22" 1327dependencies = [ 1328 "fnv", 1329 "futures-channel", 1330 "futures-util", 1331 "indexmap", 1332 "js-sys", 1333 "once_cell", 1334 "pin-project-lite", 1335 "thiserror", 1336] 1337 1338[[package]] 1339name = "opentelemetry_sdk" 1340version = "0.18.0" 1341source = "registry+https://github.com/rust-lang/crates.io-index" 1342checksum = "1ca41c4933371b61c2a2f214bf16931499af4ec90543604ec828f7a625c09113" 1343dependencies = [ 1344 "async-trait", 1345 "crossbeam-channel", 1346 "dashmap", 1347 "fnv", 1348 "futures-channel", 1349 "futures-executor", 1350 "futures-util", 1351 "once_cell", 1352 "opentelemetry_api", 1353 "percent-encoding", 1354 "rand", 1355 "thiserror", 1356 "tokio", 1357 "tokio-stream", 1358] 1359 1360[[package]] 1361name = "ordered-float" 1362version = "1.1.1" 1363source = "registry+https://github.com/rust-lang/crates.io-index" 1364checksum = "3305af35278dd29f46fcdd139e0b1fbfae2153f0e5928b39b035542dd31e37b7" 1365dependencies = [ 1366 "num-traits", 1367] 1368 1369[[package]] 1370name = "os_pipe" 1371version = "1.1.4" 1372source = "registry+https://github.com/rust-lang/crates.io-index" 1373checksum = "0ae859aa07428ca9a929b936690f8b12dc5f11dd8c6992a18ca93919f28bc177" 1374dependencies = [ 1375 "libc", 1376 "windows-sys 0.48.0", 1377] 1378 1379[[package]] 1380name = "overload" 1381version = "0.1.1" 1382source = "registry+https://github.com/rust-lang/crates.io-index" 1383checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1384 1385[[package]] 1386name = "parking_lot" 1387version = "0.11.2" 1388source = "registry+https://github.com/rust-lang/crates.io-index" 1389checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 1390dependencies = [ 1391 "instant", 1392 "lock_api", 1393 "parking_lot_core 0.8.6", 1394] 1395 1396[[package]] 1397name = "parking_lot" 1398version = "0.12.1" 1399source = "registry+https://github.com/rust-lang/crates.io-index" 1400checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1401dependencies = [ 1402 "lock_api", 1403 "parking_lot_core 0.9.7", 1404] 1405 1406[[package]] 1407name = "parking_lot_core" 1408version = "0.8.6" 1409source = "registry+https://github.com/rust-lang/crates.io-index" 1410checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 1411dependencies = [ 1412 "cfg-if", 1413 "instant", 1414 "libc", 1415 "redox_syscall 0.2.16", 1416 "smallvec", 1417 "winapi", 1418] 1419 1420[[package]] 1421name = "parking_lot_core" 1422version = "0.9.7" 1423source = "registry+https://github.com/rust-lang/crates.io-index" 1424checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 1425dependencies = [ 1426 "cfg-if", 1427 "libc", 1428 "redox_syscall 0.2.16", 1429 "smallvec", 1430 "windows-sys 0.45.0", 1431] 1432 1433[[package]] 1434name = "paste" 1435version = "1.0.12" 1436source = "registry+https://github.com/rust-lang/crates.io-index" 1437checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 1438 1439[[package]] 1440name = "percent-encoding" 1441version = "2.2.0" 1442source = "registry+https://github.com/rust-lang/crates.io-index" 1443checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1444 1445[[package]] 1446name = "petgraph" 1447version = "0.6.3" 1448source = "registry+https://github.com/rust-lang/crates.io-index" 1449checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4" 1450dependencies = [ 1451 "fixedbitset", 1452 "indexmap", 1453] 1454 1455[[package]] 1456name = "pin-project" 1457version = "1.1.0" 1458source = "registry+https://github.com/rust-lang/crates.io-index" 1459checksum = "c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead" 1460dependencies = [ 1461 "pin-project-internal", 1462] 1463 1464[[package]] 1465name = "pin-project-internal" 1466version = "1.1.0" 1467source = "registry+https://github.com/rust-lang/crates.io-index" 1468checksum = "39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07" 1469dependencies = [ 1470 "proc-macro2", 1471 "quote", 1472 "syn 2.0.18", 1473] 1474 1475[[package]] 1476name = "pin-project-lite" 1477version = "0.2.9" 1478source = "registry+https://github.com/rust-lang/crates.io-index" 1479checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1480 1481[[package]] 1482name = "pin-utils" 1483version = "0.1.0" 1484source = "registry+https://github.com/rust-lang/crates.io-index" 1485checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1486 1487[[package]] 1488name = "pkg-config" 1489version = "0.3.27" 1490source = "registry+https://github.com/rust-lang/crates.io-index" 1491checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1492 1493[[package]] 1494name = "ppv-lite86" 1495version = "0.2.17" 1496source = "registry+https://github.com/rust-lang/crates.io-index" 1497checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1498 1499[[package]] 1500name = "prettyplease" 1501version = "0.1.25" 1502source = "registry+https://github.com/rust-lang/crates.io-index" 1503checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86" 1504dependencies = [ 1505 "proc-macro2", 1506 "syn 1.0.109", 1507] 1508 1509[[package]] 1510name = "proc-macro-crate" 1511version = "1.3.1" 1512source = "registry+https://github.com/rust-lang/crates.io-index" 1513checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 1514dependencies = [ 1515 "once_cell", 1516 "toml_edit", 1517] 1518 1519[[package]] 1520name = "proc-macro2" 1521version = "1.0.59" 1522source = "registry+https://github.com/rust-lang/crates.io-index" 1523checksum = "6aeca18b86b413c660b781aa319e4e2648a3e6f9eadc9b47e9038e6fe9f3451b" 1524dependencies = [ 1525 "unicode-ident", 1526] 1527 1528[[package]] 1529name = "prost" 1530version = "0.11.9" 1531source = "registry+https://github.com/rust-lang/crates.io-index" 1532checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" 1533dependencies = [ 1534 "bytes", 1535 "prost-derive", 1536] 1537 1538[[package]] 1539name = "prost-build" 1540version = "0.11.9" 1541source = "registry+https://github.com/rust-lang/crates.io-index" 1542checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270" 1543dependencies = [ 1544 "bytes", 1545 "heck", 1546 "itertools", 1547 "lazy_static", 1548 "log", 1549 "multimap", 1550 "petgraph", 1551 "prettyplease", 1552 "prost", 1553 "prost-types", 1554 "regex", 1555 "syn 1.0.109", 1556 "tempfile", 1557 "which", 1558] 1559 1560[[package]] 1561name = "prost-derive" 1562version = "0.11.9" 1563source = "registry+https://github.com/rust-lang/crates.io-index" 1564checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" 1565dependencies = [ 1566 "anyhow", 1567 "itertools", 1568 "proc-macro2", 1569 "quote", 1570 "syn 1.0.109", 1571] 1572 1573[[package]] 1574name = "prost-types" 1575version = "0.11.9" 1576source = "registry+https://github.com/rust-lang/crates.io-index" 1577checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" 1578dependencies = [ 1579 "prost", 1580] 1581 1582[[package]] 1583name = "pyo3" 1584version = "0.18.3" 1585source = "registry+https://github.com/rust-lang/crates.io-index" 1586checksum = "e3b1ac5b3731ba34fdaa9785f8d74d17448cd18f30cf19e0c7e7b1fdb5272109" 1587dependencies = [ 1588 "cfg-if", 1589 "chrono", 1590 "indoc", 1591 "libc", 1592 "memoffset", 1593 "parking_lot 0.12.1", 1594 "pyo3-build-config", 1595 "pyo3-ffi", 1596 "pyo3-macros", 1597 "unindent", 1598] 1599 1600[[package]] 1601name = "pyo3-build-config" 1602version = "0.18.3" 1603source = "registry+https://github.com/rust-lang/crates.io-index" 1604checksum = "9cb946f5ac61bb61a5014924910d936ebd2b23b705f7a4a3c40b05c720b079a3" 1605dependencies = [ 1606 "once_cell", 1607 "target-lexicon", 1608] 1609 1610[[package]] 1611name = "pyo3-ffi" 1612version = "0.18.3" 1613source = "registry+https://github.com/rust-lang/crates.io-index" 1614checksum = "fd4d7c5337821916ea2a1d21d1092e8443cf34879e53a0ac653fbb98f44ff65c" 1615dependencies = [ 1616 "libc", 1617 "pyo3-build-config", 1618] 1619 1620[[package]] 1621name = "pyo3-macros" 1622version = "0.18.3" 1623source = "registry+https://github.com/rust-lang/crates.io-index" 1624checksum = "a9d39c55dab3fc5a4b25bbd1ac10a2da452c4aca13bb450f22818a002e29648d" 1625dependencies = [ 1626 "proc-macro2", 1627 "pyo3-macros-backend", 1628 "quote", 1629 "syn 1.0.109", 1630] 1631 1632[[package]] 1633name = "pyo3-macros-backend" 1634version = "0.18.3" 1635source = "registry+https://github.com/rust-lang/crates.io-index" 1636checksum = "97daff08a4c48320587b5224cc98d609e3c27b6d437315bd40b605c98eeb5918" 1637dependencies = [ 1638 "proc-macro2", 1639 "quote", 1640 "syn 1.0.109", 1641] 1642 1643[[package]] 1644name = "quote" 1645version = "1.0.28" 1646source = "registry+https://github.com/rust-lang/crates.io-index" 1647checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488" 1648dependencies = [ 1649 "proc-macro2", 1650] 1651 1652[[package]] 1653name = "rand" 1654version = "0.8.5" 1655source = "registry+https://github.com/rust-lang/crates.io-index" 1656checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1657dependencies = [ 1658 "libc", 1659 "rand_chacha", 1660 "rand_core", 1661] 1662 1663[[package]] 1664name = "rand_chacha" 1665version = "0.3.1" 1666source = "registry+https://github.com/rust-lang/crates.io-index" 1667checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1668dependencies = [ 1669 "ppv-lite86", 1670 "rand_core", 1671] 1672 1673[[package]] 1674name = "rand_core" 1675version = "0.6.4" 1676source = "registry+https://github.com/rust-lang/crates.io-index" 1677checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1678dependencies = [ 1679 "getrandom", 1680] 1681 1682[[package]] 1683name = "rdkafka" 1684version = "0.28.0" 1685source = "registry+https://github.com/rust-lang/crates.io-index" 1686checksum = "1de127f294f2dba488ed46760b129d5ecbeabbd337ccbf3739cb29d50db2161c" 1687dependencies = [ 1688 "futures", 1689 "libc", 1690 "log", 1691 "rdkafka-sys", 1692 "serde", 1693 "serde_derive", 1694 "serde_json", 1695 "slab", 1696 "tokio", 1697] 1698 1699[[package]] 1700name = "rdkafka-sys" 1701version = "4.4.0+1.9.2" 1702source = "registry+https://github.com/rust-lang/crates.io-index" 1703checksum = "87ac9d87c3aba1748e3112318459f2ac8bff80bfff7359e338e0463549590249" 1704dependencies = [ 1705 "cmake", 1706 "libc", 1707 "libz-sys", 1708 "num_enum", 1709 "openssl-sys", 1710 "pkg-config", 1711 "sasl2-sys", 1712] 1713 1714[[package]] 1715name = "redox_syscall" 1716version = "0.2.16" 1717source = "registry+https://github.com/rust-lang/crates.io-index" 1718checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1719dependencies = [ 1720 "bitflags", 1721] 1722 1723[[package]] 1724name = "redox_syscall" 1725version = "0.3.5" 1726source = "registry+https://github.com/rust-lang/crates.io-index" 1727checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 1728dependencies = [ 1729 "bitflags", 1730] 1731 1732[[package]] 1733name = "redox_users" 1734version = "0.4.3" 1735source = "registry+https://github.com/rust-lang/crates.io-index" 1736checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 1737dependencies = [ 1738 "getrandom", 1739 "redox_syscall 0.2.16", 1740 "thiserror", 1741] 1742 1743[[package]] 1744name = "regex" 1745version = "1.8.3" 1746source = "registry+https://github.com/rust-lang/crates.io-index" 1747checksum = "81ca098a9821bd52d6b24fd8b10bd081f47d39c22778cafaa75a2857a62c6390" 1748dependencies = [ 1749 "regex-syntax 0.7.2", 1750] 1751 1752[[package]] 1753name = "regex-automata" 1754version = "0.1.10" 1755source = "registry+https://github.com/rust-lang/crates.io-index" 1756checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1757dependencies = [ 1758 "regex-syntax 0.6.29", 1759] 1760 1761[[package]] 1762name = "regex-syntax" 1763version = "0.6.29" 1764source = "registry+https://github.com/rust-lang/crates.io-index" 1765checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 1766 1767[[package]] 1768name = "regex-syntax" 1769version = "0.7.2" 1770source = "registry+https://github.com/rust-lang/crates.io-index" 1771checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" 1772 1773[[package]] 1774name = "reqwest" 1775version = "0.11.18" 1776source = "registry+https://github.com/rust-lang/crates.io-index" 1777checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" 1778dependencies = [ 1779 "base64 0.21.2", 1780 "bytes", 1781 "encoding_rs", 1782 "futures-core", 1783 "futures-util", 1784 "h2", 1785 "http", 1786 "http-body", 1787 "hyper", 1788 "ipnet", 1789 "js-sys", 1790 "log", 1791 "mime", 1792 "once_cell", 1793 "percent-encoding", 1794 "pin-project-lite", 1795 "serde", 1796 "serde_json", 1797 "serde_urlencoded", 1798 "tokio", 1799 "tower-service", 1800 "url", 1801 "wasm-bindgen", 1802 "wasm-bindgen-futures", 1803 "web-sys", 1804 "winreg", 1805] 1806 1807[[package]] 1808name = "ring" 1809version = "0.16.20" 1810source = "registry+https://github.com/rust-lang/crates.io-index" 1811checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 1812dependencies = [ 1813 "cc", 1814 "libc", 1815 "once_cell", 1816 "spin 0.5.2", 1817 "untrusted", 1818 "web-sys", 1819 "winapi", 1820] 1821 1822[[package]] 1823name = "rustix" 1824version = "0.37.19" 1825source = "registry+https://github.com/rust-lang/crates.io-index" 1826checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" 1827dependencies = [ 1828 "bitflags", 1829 "errno", 1830 "io-lifetimes", 1831 "libc", 1832 "linux-raw-sys", 1833 "windows-sys 0.48.0", 1834] 1835 1836[[package]] 1837name = "rustls" 1838version = "0.20.8" 1839source = "registry+https://github.com/rust-lang/crates.io-index" 1840checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" 1841dependencies = [ 1842 "log", 1843 "ring", 1844 "sct", 1845 "webpki", 1846] 1847 1848[[package]] 1849name = "rustls-pemfile" 1850version = "1.0.2" 1851source = "registry+https://github.com/rust-lang/crates.io-index" 1852checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" 1853dependencies = [ 1854 "base64 0.21.2", 1855] 1856 1857[[package]] 1858name = "rustversion" 1859version = "1.0.12" 1860source = "registry+https://github.com/rust-lang/crates.io-index" 1861checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" 1862 1863[[package]] 1864name = "ryu" 1865version = "1.0.13" 1866source = "registry+https://github.com/rust-lang/crates.io-index" 1867checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 1868 1869[[package]] 1870name = "sasl2-sys" 1871version = "0.1.20+2.1.28" 1872source = "registry+https://github.com/rust-lang/crates.io-index" 1873checksum = "9e645bd98535fc8fd251c43ba7c7c1f9be1e0369c99b6a5ea719052a773e655c" 1874dependencies = [ 1875 "cc", 1876 "duct", 1877 "krb5-src", 1878 "libc", 1879 "openssl-sys", 1880 "pkg-config", 1881] 1882 1883[[package]] 1884name = "scopeguard" 1885version = "1.1.0" 1886source = "registry+https://github.com/rust-lang/crates.io-index" 1887checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1888 1889[[package]] 1890name = "sct" 1891version = "0.7.0" 1892source = "registry+https://github.com/rust-lang/crates.io-index" 1893checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 1894dependencies = [ 1895 "ring", 1896 "untrusted", 1897] 1898 1899[[package]] 1900name = "serde" 1901version = "1.0.163" 1902source = "registry+https://github.com/rust-lang/crates.io-index" 1903checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" 1904dependencies = [ 1905 "serde_derive", 1906] 1907 1908[[package]] 1909name = "serde_derive" 1910version = "1.0.163" 1911source = "registry+https://github.com/rust-lang/crates.io-index" 1912checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" 1913dependencies = [ 1914 "proc-macro2", 1915 "quote", 1916 "syn 2.0.18", 1917] 1918 1919[[package]] 1920name = "serde_json" 1921version = "1.0.96" 1922source = "registry+https://github.com/rust-lang/crates.io-index" 1923checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 1924dependencies = [ 1925 "itoa", 1926 "ryu", 1927 "serde", 1928] 1929 1930[[package]] 1931name = "serde_test" 1932version = "1.0.163" 1933source = "registry+https://github.com/rust-lang/crates.io-index" 1934checksum = "100168a8017b89fd4bcbeb8d857d95a8cfcbde829a7147c09cc82d3ab8d8cb41" 1935dependencies = [ 1936 "serde", 1937] 1938 1939[[package]] 1940name = "serde_urlencoded" 1941version = "0.7.1" 1942source = "registry+https://github.com/rust-lang/crates.io-index" 1943checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1944dependencies = [ 1945 "form_urlencoded", 1946 "itoa", 1947 "ryu", 1948 "serde", 1949] 1950 1951[[package]] 1952name = "sha1" 1953version = "0.10.5" 1954source = "registry+https://github.com/rust-lang/crates.io-index" 1955checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 1956dependencies = [ 1957 "cfg-if", 1958 "cpufeatures", 1959 "digest", 1960] 1961 1962[[package]] 1963name = "sha2" 1964version = "0.10.6" 1965source = "registry+https://github.com/rust-lang/crates.io-index" 1966checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 1967dependencies = [ 1968 "cfg-if", 1969 "cpufeatures", 1970 "digest", 1971] 1972 1973[[package]] 1974name = "sharded-slab" 1975version = "0.1.4" 1976source = "registry+https://github.com/rust-lang/crates.io-index" 1977checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 1978dependencies = [ 1979 "lazy_static", 1980] 1981 1982[[package]] 1983name = "shared_child" 1984version = "1.0.0" 1985source = "registry+https://github.com/rust-lang/crates.io-index" 1986checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef" 1987dependencies = [ 1988 "libc", 1989 "winapi", 1990] 1991 1992[[package]] 1993name = "signal-hook-registry" 1994version = "1.4.1" 1995source = "registry+https://github.com/rust-lang/crates.io-index" 1996checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 1997dependencies = [ 1998 "libc", 1999] 2000 2001[[package]] 2002name = "slab" 2003version = "0.4.8" 2004source = "registry+https://github.com/rust-lang/crates.io-index" 2005checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 2006dependencies = [ 2007 "autocfg", 2008] 2009 2010[[package]] 2011name = "smallvec" 2012version = "1.10.0" 2013source = "registry+https://github.com/rust-lang/crates.io-index" 2014checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 2015 2016[[package]] 2017name = "socket2" 2018version = "0.4.9" 2019source = "registry+https://github.com/rust-lang/crates.io-index" 2020checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 2021dependencies = [ 2022 "libc", 2023 "winapi", 2024] 2025 2026[[package]] 2027name = "spin" 2028version = "0.5.2" 2029source = "registry+https://github.com/rust-lang/crates.io-index" 2030checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 2031 2032[[package]] 2033name = "spin" 2034version = "0.9.8" 2035source = "registry+https://github.com/rust-lang/crates.io-index" 2036checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2037dependencies = [ 2038 "lock_api", 2039] 2040 2041[[package]] 2042name = "sqlformat" 2043version = "0.2.1" 2044source = "registry+https://github.com/rust-lang/crates.io-index" 2045checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e" 2046dependencies = [ 2047 "itertools", 2048 "nom", 2049 "unicode_categories", 2050] 2051 2052[[package]] 2053name = "sqlx" 2054version = "0.6.3" 2055source = "registry+https://github.com/rust-lang/crates.io-index" 2056checksum = "f8de3b03a925878ed54a954f621e64bf55a3c1bd29652d0d1a17830405350188" 2057dependencies = [ 2058 "sqlx-core", 2059 "sqlx-macros", 2060] 2061 2062[[package]] 2063name = "sqlx-core" 2064version = "0.6.3" 2065source = "registry+https://github.com/rust-lang/crates.io-index" 2066checksum = "fa8241483a83a3f33aa5fff7e7d9def398ff9990b2752b6c6112b83c6d246029" 2067dependencies = [ 2068 "ahash 0.7.6", 2069 "atoi", 2070 "base64 0.13.1", 2071 "bitflags", 2072 "byteorder", 2073 "bytes", 2074 "chrono", 2075 "crc", 2076 "crossbeam-queue", 2077 "dirs", 2078 "dotenvy", 2079 "either", 2080 "event-listener", 2081 "flume", 2082 "futures-channel", 2083 "futures-core", 2084 "futures-executor", 2085 "futures-intrusive", 2086 "futures-util", 2087 "hashlink", 2088 "hex", 2089 "hkdf", 2090 "hmac", 2091 "indexmap", 2092 "itoa", 2093 "libc", 2094 "libsqlite3-sys", 2095 "log", 2096 "md-5", 2097 "memchr", 2098 "once_cell", 2099 "paste", 2100 "percent-encoding", 2101 "rand", 2102 "rustls", 2103 "rustls-pemfile", 2104 "serde", 2105 "serde_json", 2106 "sha1", 2107 "sha2", 2108 "smallvec", 2109 "sqlformat", 2110 "sqlx-rt", 2111 "stringprep", 2112 "thiserror", 2113 "tokio-stream", 2114 "url", 2115 "webpki-roots", 2116 "whoami", 2117] 2118 2119[[package]] 2120name = "sqlx-macros" 2121version = "0.6.3" 2122source = "registry+https://github.com/rust-lang/crates.io-index" 2123checksum = "9966e64ae989e7e575b19d7265cb79d7fc3cbbdf179835cb0d716f294c2049c9" 2124dependencies = [ 2125 "dotenvy", 2126 "either", 2127 "heck", 2128 "once_cell", 2129 "proc-macro2", 2130 "quote", 2131 "sha2", 2132 "sqlx-core", 2133 "sqlx-rt", 2134 "syn 1.0.109", 2135 "url", 2136] 2137 2138[[package]] 2139name = "sqlx-rt" 2140version = "0.6.3" 2141source = "registry+https://github.com/rust-lang/crates.io-index" 2142checksum = "804d3f245f894e61b1e6263c84b23ca675d96753b5abfd5cc8597d86806e8024" 2143dependencies = [ 2144 "once_cell", 2145 "tokio", 2146 "tokio-rustls", 2147] 2148 2149[[package]] 2150name = "stringprep" 2151version = "0.1.2" 2152source = "registry+https://github.com/rust-lang/crates.io-index" 2153checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1" 2154dependencies = [ 2155 "unicode-bidi", 2156 "unicode-normalization", 2157] 2158 2159[[package]] 2160name = "subtle" 2161version = "2.5.0" 2162source = "registry+https://github.com/rust-lang/crates.io-index" 2163checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 2164 2165[[package]] 2166name = "syn" 2167version = "1.0.109" 2168source = "registry+https://github.com/rust-lang/crates.io-index" 2169checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2170dependencies = [ 2171 "proc-macro2", 2172 "quote", 2173 "unicode-ident", 2174] 2175 2176[[package]] 2177name = "syn" 2178version = "2.0.18" 2179source = "registry+https://github.com/rust-lang/crates.io-index" 2180checksum = "32d41677bcbe24c20c52e7c70b0d8db04134c5d1066bf98662e2871ad200ea3e" 2181dependencies = [ 2182 "proc-macro2", 2183 "quote", 2184 "unicode-ident", 2185] 2186 2187[[package]] 2188name = "sync_wrapper" 2189version = "0.1.2" 2190source = "registry+https://github.com/rust-lang/crates.io-index" 2191checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 2192 2193[[package]] 2194name = "synstructure" 2195version = "0.12.6" 2196source = "registry+https://github.com/rust-lang/crates.io-index" 2197checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 2198dependencies = [ 2199 "proc-macro2", 2200 "quote", 2201 "syn 1.0.109", 2202 "unicode-xid", 2203] 2204 2205[[package]] 2206name = "target-lexicon" 2207version = "0.12.7" 2208source = "registry+https://github.com/rust-lang/crates.io-index" 2209checksum = "fd1ba337640d60c3e96bc6f0638a939b9c9a7f2c316a1598c279828b3d1dc8c5" 2210 2211[[package]] 2212name = "tempfile" 2213version = "3.5.0" 2214source = "registry+https://github.com/rust-lang/crates.io-index" 2215checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 2216dependencies = [ 2217 "cfg-if", 2218 "fastrand", 2219 "redox_syscall 0.3.5", 2220 "rustix", 2221 "windows-sys 0.45.0", 2222] 2223 2224[[package]] 2225name = "thiserror" 2226version = "1.0.40" 2227source = "registry+https://github.com/rust-lang/crates.io-index" 2228checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 2229dependencies = [ 2230 "thiserror-impl", 2231] 2232 2233[[package]] 2234name = "thiserror-impl" 2235version = "1.0.40" 2236source = "registry+https://github.com/rust-lang/crates.io-index" 2237checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 2238dependencies = [ 2239 "proc-macro2", 2240 "quote", 2241 "syn 2.0.18", 2242] 2243 2244[[package]] 2245name = "thread_local" 2246version = "1.1.7" 2247source = "registry+https://github.com/rust-lang/crates.io-index" 2248checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 2249dependencies = [ 2250 "cfg-if", 2251 "once_cell", 2252] 2253 2254[[package]] 2255name = "threadpool" 2256version = "1.8.1" 2257source = "registry+https://github.com/rust-lang/crates.io-index" 2258checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" 2259dependencies = [ 2260 "num_cpus", 2261] 2262 2263[[package]] 2264name = "thrift" 2265version = "0.16.0" 2266source = "registry+https://github.com/rust-lang/crates.io-index" 2267checksum = "09678c4cdbb4eed72e18b7c2af1329c69825ed16fcbac62d083fc3e2b0590ff0" 2268dependencies = [ 2269 "byteorder", 2270 "integer-encoding", 2271 "log", 2272 "ordered-float", 2273 "threadpool", 2274] 2275 2276[[package]] 2277name = "timely" 2278version = "0.12.0" 2279source = "git+https://github.com/TimelyDataflow/timely-dataflow.git?rev=432ef57#432ef57fae761f1e4773833b0474b41f1efe7e7c" 2280dependencies = [ 2281 "abomonation", 2282 "abomonation_derive", 2283 "crossbeam-channel", 2284 "futures-util", 2285 "getopts", 2286 "serde", 2287 "serde_derive", 2288 "timely_bytes", 2289 "timely_communication", 2290 "timely_container", 2291 "timely_logging", 2292] 2293 2294[[package]] 2295name = "timely_bytes" 2296version = "0.12.0" 2297source = "git+https://github.com/TimelyDataflow/timely-dataflow.git?rev=432ef57#432ef57fae761f1e4773833b0474b41f1efe7e7c" 2298 2299[[package]] 2300name = "timely_communication" 2301version = "0.12.0" 2302source = "git+https://github.com/TimelyDataflow/timely-dataflow.git?rev=432ef57#432ef57fae761f1e4773833b0474b41f1efe7e7c" 2303dependencies = [ 2304 "abomonation", 2305 "abomonation_derive", 2306 "bincode", 2307 "crossbeam-channel", 2308 "getopts", 2309 "serde", 2310 "serde_derive", 2311 "timely_bytes", 2312 "timely_logging", 2313] 2314 2315[[package]] 2316name = "timely_container" 2317version = "0.12.0" 2318source = "git+https://github.com/TimelyDataflow/timely-dataflow.git?rev=432ef57#432ef57fae761f1e4773833b0474b41f1efe7e7c" 2319dependencies = [ 2320 "columnation", 2321 "serde", 2322] 2323 2324[[package]] 2325name = "timely_logging" 2326version = "0.12.0" 2327source = "git+https://github.com/TimelyDataflow/timely-dataflow.git?rev=432ef57#432ef57fae761f1e4773833b0474b41f1efe7e7c" 2328 2329[[package]] 2330name = "tinyvec" 2331version = "1.6.0" 2332source = "registry+https://github.com/rust-lang/crates.io-index" 2333checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2334dependencies = [ 2335 "tinyvec_macros", 2336] 2337 2338[[package]] 2339name = "tinyvec_macros" 2340version = "0.1.1" 2341source = "registry+https://github.com/rust-lang/crates.io-index" 2342checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2343 2344[[package]] 2345name = "tokio" 2346version = "1.28.2" 2347source = "registry+https://github.com/rust-lang/crates.io-index" 2348checksum = "94d7b1cfd2aa4011f2de74c2c4c63665e27a71006b0a192dcd2710272e73dfa2" 2349dependencies = [ 2350 "autocfg", 2351 "bytes", 2352 "libc", 2353 "mio", 2354 "num_cpus", 2355 "parking_lot 0.12.1", 2356 "pin-project-lite", 2357 "signal-hook-registry", 2358 "socket2", 2359 "tokio-macros", 2360 "windows-sys 0.48.0", 2361] 2362 2363[[package]] 2364name = "tokio-io-timeout" 2365version = "1.2.0" 2366source = "registry+https://github.com/rust-lang/crates.io-index" 2367checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" 2368dependencies = [ 2369 "pin-project-lite", 2370 "tokio", 2371] 2372 2373[[package]] 2374name = "tokio-macros" 2375version = "2.1.0" 2376source = "registry+https://github.com/rust-lang/crates.io-index" 2377checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 2378dependencies = [ 2379 "proc-macro2", 2380 "quote", 2381 "syn 2.0.18", 2382] 2383 2384[[package]] 2385name = "tokio-rustls" 2386version = "0.23.4" 2387source = "registry+https://github.com/rust-lang/crates.io-index" 2388checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 2389dependencies = [ 2390 "rustls", 2391 "tokio", 2392 "webpki", 2393] 2394 2395[[package]] 2396name = "tokio-stream" 2397version = "0.1.14" 2398source = "registry+https://github.com/rust-lang/crates.io-index" 2399checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 2400dependencies = [ 2401 "futures-core", 2402 "pin-project-lite", 2403 "tokio", 2404] 2405 2406[[package]] 2407name = "tokio-util" 2408version = "0.7.8" 2409source = "registry+https://github.com/rust-lang/crates.io-index" 2410checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" 2411dependencies = [ 2412 "bytes", 2413 "futures-core", 2414 "futures-sink", 2415 "pin-project-lite", 2416 "tokio", 2417 "tracing", 2418] 2419 2420[[package]] 2421name = "toml_datetime" 2422version = "0.6.2" 2423source = "registry+https://github.com/rust-lang/crates.io-index" 2424checksum = "5a76a9312f5ba4c2dec6b9161fdf25d87ad8a09256ccea5a556fef03c706a10f" 2425 2426[[package]] 2427name = "toml_edit" 2428version = "0.19.10" 2429source = "registry+https://github.com/rust-lang/crates.io-index" 2430checksum = "2380d56e8670370eee6566b0bfd4265f65b3f432e8c6d85623f728d4fa31f739" 2431dependencies = [ 2432 "indexmap", 2433 "toml_datetime", 2434 "winnow", 2435] 2436 2437[[package]] 2438name = "tonic" 2439version = "0.8.3" 2440source = "registry+https://github.com/rust-lang/crates.io-index" 2441checksum = "8f219fad3b929bef19b1f86fbc0358d35daed8f2cac972037ac0dc10bbb8d5fb" 2442dependencies = [ 2443 "async-stream", 2444 "async-trait", 2445 "axum 0.6.18", 2446 "base64 0.13.1", 2447 "bytes", 2448 "futures-core", 2449 "futures-util", 2450 "h2", 2451 "http", 2452 "http-body", 2453 "hyper", 2454 "hyper-timeout", 2455 "percent-encoding", 2456 "pin-project", 2457 "prost", 2458 "prost-derive", 2459 "tokio", 2460 "tokio-stream", 2461 "tokio-util", 2462 "tower", 2463 "tower-layer", 2464 "tower-service", 2465 "tracing", 2466 "tracing-futures", 2467] 2468 2469[[package]] 2470name = "tonic-build" 2471version = "0.8.4" 2472source = "registry+https://github.com/rust-lang/crates.io-index" 2473checksum = "5bf5e9b9c0f7e0a7c027dcfaba7b2c60816c7049171f679d99ee2ff65d0de8c4" 2474dependencies = [ 2475 "prettyplease", 2476 "proc-macro2", 2477 "prost-build", 2478 "quote", 2479 "syn 1.0.109", 2480] 2481 2482[[package]] 2483name = "tower" 2484version = "0.4.13" 2485source = "registry+https://github.com/rust-lang/crates.io-index" 2486checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 2487dependencies = [ 2488 "futures-core", 2489 "futures-util", 2490 "indexmap", 2491 "pin-project", 2492 "pin-project-lite", 2493 "rand", 2494 "slab", 2495 "tokio", 2496 "tokio-util", 2497 "tower-layer", 2498 "tower-service", 2499 "tracing", 2500] 2501 2502[[package]] 2503name = "tower-http" 2504version = "0.3.5" 2505source = "registry+https://github.com/rust-lang/crates.io-index" 2506checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858" 2507dependencies = [ 2508 "bitflags", 2509 "bytes", 2510 "futures-core", 2511 "futures-util", 2512 "http", 2513 "http-body", 2514 "http-range-header", 2515 "pin-project-lite", 2516 "tower", 2517 "tower-layer", 2518 "tower-service", 2519] 2520 2521[[package]] 2522name = "tower-layer" 2523version = "0.3.2" 2524source = "registry+https://github.com/rust-lang/crates.io-index" 2525checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 2526 2527[[package]] 2528name = "tower-service" 2529version = "0.3.2" 2530source = "registry+https://github.com/rust-lang/crates.io-index" 2531checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 2532 2533[[package]] 2534name = "tracing" 2535version = "0.1.37" 2536source = "registry+https://github.com/rust-lang/crates.io-index" 2537checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 2538dependencies = [ 2539 "cfg-if", 2540 "log", 2541 "pin-project-lite", 2542 "tracing-attributes", 2543 "tracing-core", 2544] 2545 2546[[package]] 2547name = "tracing-attributes" 2548version = "0.1.24" 2549source = "registry+https://github.com/rust-lang/crates.io-index" 2550checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74" 2551dependencies = [ 2552 "proc-macro2", 2553 "quote", 2554 "syn 2.0.18", 2555] 2556 2557[[package]] 2558name = "tracing-core" 2559version = "0.1.31" 2560source = "registry+https://github.com/rust-lang/crates.io-index" 2561checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 2562dependencies = [ 2563 "once_cell", 2564 "valuable", 2565] 2566 2567[[package]] 2568name = "tracing-futures" 2569version = "0.2.5" 2570source = "registry+https://github.com/rust-lang/crates.io-index" 2571checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" 2572dependencies = [ 2573 "pin-project", 2574 "tracing", 2575] 2576 2577[[package]] 2578name = "tracing-log" 2579version = "0.1.3" 2580source = "registry+https://github.com/rust-lang/crates.io-index" 2581checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 2582dependencies = [ 2583 "lazy_static", 2584 "log", 2585 "tracing-core", 2586] 2587 2588[[package]] 2589name = "tracing-opentelemetry" 2590version = "0.18.0" 2591source = "registry+https://github.com/rust-lang/crates.io-index" 2592checksum = "21ebb87a95ea13271332df069020513ab70bdb5637ca42d6e492dc3bbbad48de" 2593dependencies = [ 2594 "once_cell", 2595 "opentelemetry", 2596 "tracing", 2597 "tracing-core", 2598 "tracing-log", 2599 "tracing-subscriber", 2600] 2601 2602[[package]] 2603name = "tracing-subscriber" 2604version = "0.3.17" 2605source = "registry+https://github.com/rust-lang/crates.io-index" 2606checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 2607dependencies = [ 2608 "matchers", 2609 "nu-ansi-term", 2610 "once_cell", 2611 "regex", 2612 "sharded-slab", 2613 "smallvec", 2614 "thread_local", 2615 "tracing", 2616 "tracing-core", 2617 "tracing-log", 2618] 2619 2620[[package]] 2621name = "try-lock" 2622version = "0.2.4" 2623source = "registry+https://github.com/rust-lang/crates.io-index" 2624checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 2625 2626[[package]] 2627name = "typenum" 2628version = "1.16.0" 2629source = "registry+https://github.com/rust-lang/crates.io-index" 2630checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 2631 2632[[package]] 2633name = "unicode-bidi" 2634version = "0.3.13" 2635source = "registry+https://github.com/rust-lang/crates.io-index" 2636checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 2637 2638[[package]] 2639name = "unicode-ident" 2640version = "1.0.9" 2641source = "registry+https://github.com/rust-lang/crates.io-index" 2642checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" 2643 2644[[package]] 2645name = "unicode-normalization" 2646version = "0.1.22" 2647source = "registry+https://github.com/rust-lang/crates.io-index" 2648checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 2649dependencies = [ 2650 "tinyvec", 2651] 2652 2653[[package]] 2654name = "unicode-segmentation" 2655version = "1.10.1" 2656source = "registry+https://github.com/rust-lang/crates.io-index" 2657checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 2658 2659[[package]] 2660name = "unicode-width" 2661version = "0.1.10" 2662source = "registry+https://github.com/rust-lang/crates.io-index" 2663checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 2664 2665[[package]] 2666name = "unicode-xid" 2667version = "0.2.4" 2668source = "registry+https://github.com/rust-lang/crates.io-index" 2669checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 2670 2671[[package]] 2672name = "unicode_categories" 2673version = "0.1.1" 2674source = "registry+https://github.com/rust-lang/crates.io-index" 2675checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 2676 2677[[package]] 2678name = "unindent" 2679version = "0.1.11" 2680source = "registry+https://github.com/rust-lang/crates.io-index" 2681checksum = "e1766d682d402817b5ac4490b3c3002d91dfa0d22812f341609f97b08757359c" 2682 2683[[package]] 2684name = "untrusted" 2685version = "0.7.1" 2686source = "registry+https://github.com/rust-lang/crates.io-index" 2687checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 2688 2689[[package]] 2690name = "url" 2691version = "2.3.1" 2692source = "registry+https://github.com/rust-lang/crates.io-index" 2693checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 2694dependencies = [ 2695 "form_urlencoded", 2696 "idna", 2697 "percent-encoding", 2698] 2699 2700[[package]] 2701name = "valuable" 2702version = "0.1.0" 2703source = "registry+https://github.com/rust-lang/crates.io-index" 2704checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 2705 2706[[package]] 2707name = "vcpkg" 2708version = "0.2.15" 2709source = "registry+https://github.com/rust-lang/crates.io-index" 2710checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2711 2712[[package]] 2713name = "version_check" 2714version = "0.9.4" 2715source = "registry+https://github.com/rust-lang/crates.io-index" 2716checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2717 2718[[package]] 2719name = "want" 2720version = "0.3.0" 2721source = "registry+https://github.com/rust-lang/crates.io-index" 2722checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 2723dependencies = [ 2724 "log", 2725 "try-lock", 2726] 2727 2728[[package]] 2729name = "wasi" 2730version = "0.11.0+wasi-snapshot-preview1" 2731source = "registry+https://github.com/rust-lang/crates.io-index" 2732checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2733 2734[[package]] 2735name = "wasm-bindgen" 2736version = "0.2.86" 2737source = "registry+https://github.com/rust-lang/crates.io-index" 2738checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73" 2739dependencies = [ 2740 "cfg-if", 2741 "wasm-bindgen-macro", 2742] 2743 2744[[package]] 2745name = "wasm-bindgen-backend" 2746version = "0.2.86" 2747source = "registry+https://github.com/rust-lang/crates.io-index" 2748checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb" 2749dependencies = [ 2750 "bumpalo", 2751 "log", 2752 "once_cell", 2753 "proc-macro2", 2754 "quote", 2755 "syn 2.0.18", 2756 "wasm-bindgen-shared", 2757] 2758 2759[[package]] 2760name = "wasm-bindgen-futures" 2761version = "0.4.36" 2762source = "registry+https://github.com/rust-lang/crates.io-index" 2763checksum = "2d1985d03709c53167ce907ff394f5316aa22cb4e12761295c5dc57dacb6297e" 2764dependencies = [ 2765 "cfg-if", 2766 "js-sys", 2767 "wasm-bindgen", 2768 "web-sys", 2769] 2770 2771[[package]] 2772name = "wasm-bindgen-macro" 2773version = "0.2.86" 2774source = "registry+https://github.com/rust-lang/crates.io-index" 2775checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258" 2776dependencies = [ 2777 "quote", 2778 "wasm-bindgen-macro-support", 2779] 2780 2781[[package]] 2782name = "wasm-bindgen-macro-support" 2783version = "0.2.86" 2784source = "registry+https://github.com/rust-lang/crates.io-index" 2785checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8" 2786dependencies = [ 2787 "proc-macro2", 2788 "quote", 2789 "syn 2.0.18", 2790 "wasm-bindgen-backend", 2791 "wasm-bindgen-shared", 2792] 2793 2794[[package]] 2795name = "wasm-bindgen-shared" 2796version = "0.2.86" 2797source = "registry+https://github.com/rust-lang/crates.io-index" 2798checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93" 2799 2800[[package]] 2801name = "web-sys" 2802version = "0.3.63" 2803source = "registry+https://github.com/rust-lang/crates.io-index" 2804checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2" 2805dependencies = [ 2806 "js-sys", 2807 "wasm-bindgen", 2808] 2809 2810[[package]] 2811name = "webpki" 2812version = "0.22.0" 2813source = "registry+https://github.com/rust-lang/crates.io-index" 2814checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 2815dependencies = [ 2816 "ring", 2817 "untrusted", 2818] 2819 2820[[package]] 2821name = "webpki-roots" 2822version = "0.22.6" 2823source = "registry+https://github.com/rust-lang/crates.io-index" 2824checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" 2825dependencies = [ 2826 "webpki", 2827] 2828 2829[[package]] 2830name = "which" 2831version = "4.4.0" 2832source = "registry+https://github.com/rust-lang/crates.io-index" 2833checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" 2834dependencies = [ 2835 "either", 2836 "libc", 2837 "once_cell", 2838] 2839 2840[[package]] 2841name = "whoami" 2842version = "1.4.0" 2843source = "registry+https://github.com/rust-lang/crates.io-index" 2844checksum = "2c70234412ca409cc04e864e89523cb0fc37f5e1344ebed5a3ebf4192b6b9f68" 2845dependencies = [ 2846 "wasm-bindgen", 2847 "web-sys", 2848] 2849 2850[[package]] 2851name = "winapi" 2852version = "0.3.9" 2853source = "registry+https://github.com/rust-lang/crates.io-index" 2854checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2855dependencies = [ 2856 "winapi-i686-pc-windows-gnu", 2857 "winapi-x86_64-pc-windows-gnu", 2858] 2859 2860[[package]] 2861name = "winapi-i686-pc-windows-gnu" 2862version = "0.4.0" 2863source = "registry+https://github.com/rust-lang/crates.io-index" 2864checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2865 2866[[package]] 2867name = "winapi-x86_64-pc-windows-gnu" 2868version = "0.4.0" 2869source = "registry+https://github.com/rust-lang/crates.io-index" 2870checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2871 2872[[package]] 2873name = "windows" 2874version = "0.48.0" 2875source = "registry+https://github.com/rust-lang/crates.io-index" 2876checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 2877dependencies = [ 2878 "windows-targets 0.48.0", 2879] 2880 2881[[package]] 2882name = "windows-sys" 2883version = "0.45.0" 2884source = "registry+https://github.com/rust-lang/crates.io-index" 2885checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 2886dependencies = [ 2887 "windows-targets 0.42.2", 2888] 2889 2890[[package]] 2891name = "windows-sys" 2892version = "0.48.0" 2893source = "registry+https://github.com/rust-lang/crates.io-index" 2894checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2895dependencies = [ 2896 "windows-targets 0.48.0", 2897] 2898 2899[[package]] 2900name = "windows-targets" 2901version = "0.42.2" 2902source = "registry+https://github.com/rust-lang/crates.io-index" 2903checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 2904dependencies = [ 2905 "windows_aarch64_gnullvm 0.42.2", 2906 "windows_aarch64_msvc 0.42.2", 2907 "windows_i686_gnu 0.42.2", 2908 "windows_i686_msvc 0.42.2", 2909 "windows_x86_64_gnu 0.42.2", 2910 "windows_x86_64_gnullvm 0.42.2", 2911 "windows_x86_64_msvc 0.42.2", 2912] 2913 2914[[package]] 2915name = "windows-targets" 2916version = "0.48.0" 2917source = "registry+https://github.com/rust-lang/crates.io-index" 2918checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 2919dependencies = [ 2920 "windows_aarch64_gnullvm 0.48.0", 2921 "windows_aarch64_msvc 0.48.0", 2922 "windows_i686_gnu 0.48.0", 2923 "windows_i686_msvc 0.48.0", 2924 "windows_x86_64_gnu 0.48.0", 2925 "windows_x86_64_gnullvm 0.48.0", 2926 "windows_x86_64_msvc 0.48.0", 2927] 2928 2929[[package]] 2930name = "windows_aarch64_gnullvm" 2931version = "0.42.2" 2932source = "registry+https://github.com/rust-lang/crates.io-index" 2933checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 2934 2935[[package]] 2936name = "windows_aarch64_gnullvm" 2937version = "0.48.0" 2938source = "registry+https://github.com/rust-lang/crates.io-index" 2939checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 2940 2941[[package]] 2942name = "windows_aarch64_msvc" 2943version = "0.42.2" 2944source = "registry+https://github.com/rust-lang/crates.io-index" 2945checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 2946 2947[[package]] 2948name = "windows_aarch64_msvc" 2949version = "0.48.0" 2950source = "registry+https://github.com/rust-lang/crates.io-index" 2951checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 2952 2953[[package]] 2954name = "windows_i686_gnu" 2955version = "0.42.2" 2956source = "registry+https://github.com/rust-lang/crates.io-index" 2957checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 2958 2959[[package]] 2960name = "windows_i686_gnu" 2961version = "0.48.0" 2962source = "registry+https://github.com/rust-lang/crates.io-index" 2963checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 2964 2965[[package]] 2966name = "windows_i686_msvc" 2967version = "0.42.2" 2968source = "registry+https://github.com/rust-lang/crates.io-index" 2969checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 2970 2971[[package]] 2972name = "windows_i686_msvc" 2973version = "0.48.0" 2974source = "registry+https://github.com/rust-lang/crates.io-index" 2975checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 2976 2977[[package]] 2978name = "windows_x86_64_gnu" 2979version = "0.42.2" 2980source = "registry+https://github.com/rust-lang/crates.io-index" 2981checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 2982 2983[[package]] 2984name = "windows_x86_64_gnu" 2985version = "0.48.0" 2986source = "registry+https://github.com/rust-lang/crates.io-index" 2987checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 2988 2989[[package]] 2990name = "windows_x86_64_gnullvm" 2991version = "0.42.2" 2992source = "registry+https://github.com/rust-lang/crates.io-index" 2993checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 2994 2995[[package]] 2996name = "windows_x86_64_gnullvm" 2997version = "0.48.0" 2998source = "registry+https://github.com/rust-lang/crates.io-index" 2999checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 3000 3001[[package]] 3002name = "windows_x86_64_msvc" 3003version = "0.42.2" 3004source = "registry+https://github.com/rust-lang/crates.io-index" 3005checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 3006 3007[[package]] 3008name = "windows_x86_64_msvc" 3009version = "0.48.0" 3010source = "registry+https://github.com/rust-lang/crates.io-index" 3011checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 3012 3013[[package]] 3014name = "winnow" 3015version = "0.4.6" 3016source = "registry+https://github.com/rust-lang/crates.io-index" 3017checksum = "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699" 3018dependencies = [ 3019 "memchr", 3020] 3021 3022[[package]] 3023name = "winreg" 3024version = "0.10.1" 3025source = "registry+https://github.com/rust-lang/crates.io-index" 3026checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 3027dependencies = [ 3028 "winapi", 3029]