this repo has no description
at main 2298 lines 58 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "arc-swap" 7version = "1.7.1" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 10 11[[package]] 12name = "async-trait" 13version = "0.1.89" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 16dependencies = [ 17 "proc-macro2", 18 "quote", 19 "syn", 20] 21 22[[package]] 23name = "atomic-waker" 24version = "1.1.2" 25source = "registry+https://github.com/rust-lang/crates.io-index" 26checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 27 28[[package]] 29name = "autocfg" 30version = "1.5.0" 31source = "registry+https://github.com/rust-lang/crates.io-index" 32checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 33 34[[package]] 35name = "axum" 36version = "0.8.6" 37source = "registry+https://github.com/rust-lang/crates.io-index" 38checksum = "8a18ed336352031311f4e0b4dd2ff392d4fbb370777c9d18d7fc9d7359f73871" 39dependencies = [ 40 "axum-core", 41 "axum-macros", 42 "bytes", 43 "form_urlencoded", 44 "futures-util", 45 "http", 46 "http-body", 47 "http-body-util", 48 "hyper", 49 "hyper-util", 50 "itoa", 51 "matchit", 52 "memchr", 53 "mime", 54 "percent-encoding", 55 "pin-project-lite", 56 "serde_core", 57 "serde_json", 58 "serde_path_to_error", 59 "serde_urlencoded", 60 "sync_wrapper", 61 "tokio", 62 "tower", 63 "tower-layer", 64 "tower-service", 65 "tracing", 66] 67 68[[package]] 69name = "axum-core" 70version = "0.5.5" 71source = "registry+https://github.com/rust-lang/crates.io-index" 72checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22" 73dependencies = [ 74 "bytes", 75 "futures-core", 76 "http", 77 "http-body", 78 "http-body-util", 79 "mime", 80 "pin-project-lite", 81 "sync_wrapper", 82 "tower-layer", 83 "tower-service", 84 "tracing", 85] 86 87[[package]] 88name = "axum-macros" 89version = "0.5.0" 90source = "registry+https://github.com/rust-lang/crates.io-index" 91checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c" 92dependencies = [ 93 "proc-macro2", 94 "quote", 95 "syn", 96] 97 98[[package]] 99name = "base64" 100version = "0.22.1" 101source = "registry+https://github.com/rust-lang/crates.io-index" 102checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 103 104[[package]] 105name = "bitflags" 106version = "2.9.4" 107source = "registry+https://github.com/rust-lang/crates.io-index" 108checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" 109 110[[package]] 111name = "bumpalo" 112version = "3.19.0" 113source = "registry+https://github.com/rust-lang/crates.io-index" 114checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 115 116[[package]] 117name = "byteorder" 118version = "1.5.0" 119source = "registry+https://github.com/rust-lang/crates.io-index" 120checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 121 122[[package]] 123name = "bytes" 124version = "1.10.1" 125source = "registry+https://github.com/rust-lang/crates.io-index" 126checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 127 128[[package]] 129name = "bytes-utils" 130version = "0.1.4" 131source = "registry+https://github.com/rust-lang/crates.io-index" 132checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35" 133dependencies = [ 134 "bytes", 135 "either", 136] 137 138[[package]] 139name = "cc" 140version = "1.2.41" 141source = "registry+https://github.com/rust-lang/crates.io-index" 142checksum = "ac9fe6cdbb24b6ade63616c0a0688e45bb56732262c158df3c0c4bea4ca47cb7" 143dependencies = [ 144 "find-msvc-tools", 145 "shlex", 146] 147 148[[package]] 149name = "cfg-if" 150version = "1.0.3" 151source = "registry+https://github.com/rust-lang/crates.io-index" 152checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" 153 154[[package]] 155name = "cookie" 156version = "0.18.1" 157source = "registry+https://github.com/rust-lang/crates.io-index" 158checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" 159dependencies = [ 160 "percent-encoding", 161 "time", 162 "version_check", 163] 164 165[[package]] 166name = "cookie-factory" 167version = "0.3.2" 168source = "registry+https://github.com/rust-lang/crates.io-index" 169checksum = "396de984970346b0d9e93d1415082923c679e5ae5c3ee3dcbd104f5610af126b" 170 171[[package]] 172name = "core-foundation" 173version = "0.9.4" 174source = "registry+https://github.com/rust-lang/crates.io-index" 175checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 176dependencies = [ 177 "core-foundation-sys", 178 "libc", 179] 180 181[[package]] 182name = "core-foundation-sys" 183version = "0.8.7" 184source = "registry+https://github.com/rust-lang/crates.io-index" 185checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 186 187[[package]] 188name = "crc16" 189version = "0.4.0" 190source = "registry+https://github.com/rust-lang/crates.io-index" 191checksum = "338089f42c427b86394a5ee60ff321da23a5c89c9d89514c829687b26359fcff" 192 193[[package]] 194name = "deranged" 195version = "0.5.5" 196source = "registry+https://github.com/rust-lang/crates.io-index" 197checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" 198dependencies = [ 199 "powerfmt", 200 "serde_core", 201] 202 203[[package]] 204name = "displaydoc" 205version = "0.2.5" 206source = "registry+https://github.com/rust-lang/crates.io-index" 207checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 208dependencies = [ 209 "proc-macro2", 210 "quote", 211 "syn", 212] 213 214[[package]] 215name = "dotenv" 216version = "0.15.0" 217source = "registry+https://github.com/rust-lang/crates.io-index" 218checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f" 219 220[[package]] 221name = "either" 222version = "1.15.0" 223source = "registry+https://github.com/rust-lang/crates.io-index" 224checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 225 226[[package]] 227name = "encoding_rs" 228version = "0.8.35" 229source = "registry+https://github.com/rust-lang/crates.io-index" 230checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 231dependencies = [ 232 "cfg-if", 233] 234 235[[package]] 236name = "equivalent" 237version = "1.0.2" 238source = "registry+https://github.com/rust-lang/crates.io-index" 239checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 240 241[[package]] 242name = "errno" 243version = "0.3.14" 244source = "registry+https://github.com/rust-lang/crates.io-index" 245checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 246dependencies = [ 247 "libc", 248 "windows-sys 0.61.2", 249] 250 251[[package]] 252name = "fallible-iterator" 253version = "0.3.0" 254source = "registry+https://github.com/rust-lang/crates.io-index" 255checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" 256 257[[package]] 258name = "fallible-streaming-iterator" 259version = "0.1.9" 260source = "registry+https://github.com/rust-lang/crates.io-index" 261checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 262 263[[package]] 264name = "fastrand" 265version = "2.3.0" 266source = "registry+https://github.com/rust-lang/crates.io-index" 267checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 268 269[[package]] 270name = "find-msvc-tools" 271version = "0.1.4" 272source = "registry+https://github.com/rust-lang/crates.io-index" 273checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127" 274 275[[package]] 276name = "float-cmp" 277version = "0.10.0" 278source = "registry+https://github.com/rust-lang/crates.io-index" 279checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8" 280dependencies = [ 281 "num-traits", 282] 283 284[[package]] 285name = "fnv" 286version = "1.0.7" 287source = "registry+https://github.com/rust-lang/crates.io-index" 288checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 289 290[[package]] 291name = "foldhash" 292version = "0.1.5" 293source = "registry+https://github.com/rust-lang/crates.io-index" 294checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 295 296[[package]] 297name = "foreign-types" 298version = "0.3.2" 299source = "registry+https://github.com/rust-lang/crates.io-index" 300checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 301dependencies = [ 302 "foreign-types-shared", 303] 304 305[[package]] 306name = "foreign-types-shared" 307version = "0.1.1" 308source = "registry+https://github.com/rust-lang/crates.io-index" 309checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 310 311[[package]] 312name = "form_urlencoded" 313version = "1.2.2" 314source = "registry+https://github.com/rust-lang/crates.io-index" 315checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 316dependencies = [ 317 "percent-encoding", 318] 319 320[[package]] 321name = "fred" 322version = "10.1.0" 323source = "registry+https://github.com/rust-lang/crates.io-index" 324checksum = "3a7b2fd0f08b23315c13b6156f971aeedb6f75fb16a29ac1872d2eabccc1490e" 325dependencies = [ 326 "arc-swap", 327 "async-trait", 328 "bytes", 329 "bytes-utils", 330 "float-cmp", 331 "fred-macros", 332 "futures", 333 "log", 334 "parking_lot", 335 "rand", 336 "redis-protocol", 337 "semver", 338 "socket2 0.5.10", 339 "tokio", 340 "tokio-stream", 341 "tokio-util", 342 "url", 343 "urlencoding", 344] 345 346[[package]] 347name = "fred-macros" 348version = "0.1.0" 349source = "registry+https://github.com/rust-lang/crates.io-index" 350checksum = "1458c6e22d36d61507034d5afecc64f105c1d39712b7ac6ec3b352c423f715cc" 351dependencies = [ 352 "proc-macro2", 353 "quote", 354 "syn", 355] 356 357[[package]] 358name = "futures" 359version = "0.3.31" 360source = "registry+https://github.com/rust-lang/crates.io-index" 361checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 362dependencies = [ 363 "futures-channel", 364 "futures-core", 365 "futures-executor", 366 "futures-io", 367 "futures-sink", 368 "futures-task", 369 "futures-util", 370] 371 372[[package]] 373name = "futures-channel" 374version = "0.3.31" 375source = "registry+https://github.com/rust-lang/crates.io-index" 376checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 377dependencies = [ 378 "futures-core", 379 "futures-sink", 380] 381 382[[package]] 383name = "futures-core" 384version = "0.3.31" 385source = "registry+https://github.com/rust-lang/crates.io-index" 386checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 387 388[[package]] 389name = "futures-executor" 390version = "0.3.31" 391source = "registry+https://github.com/rust-lang/crates.io-index" 392checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 393dependencies = [ 394 "futures-core", 395 "futures-task", 396 "futures-util", 397] 398 399[[package]] 400name = "futures-io" 401version = "0.3.31" 402source = "registry+https://github.com/rust-lang/crates.io-index" 403checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 404 405[[package]] 406name = "futures-macro" 407version = "0.3.31" 408source = "registry+https://github.com/rust-lang/crates.io-index" 409checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 410dependencies = [ 411 "proc-macro2", 412 "quote", 413 "syn", 414] 415 416[[package]] 417name = "futures-sink" 418version = "0.3.31" 419source = "registry+https://github.com/rust-lang/crates.io-index" 420checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 421 422[[package]] 423name = "futures-task" 424version = "0.3.31" 425source = "registry+https://github.com/rust-lang/crates.io-index" 426checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 427 428[[package]] 429name = "futures-util" 430version = "0.3.31" 431source = "registry+https://github.com/rust-lang/crates.io-index" 432checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 433dependencies = [ 434 "futures-channel", 435 "futures-core", 436 "futures-io", 437 "futures-macro", 438 "futures-sink", 439 "futures-task", 440 "memchr", 441 "pin-project-lite", 442 "pin-utils", 443 "slab", 444] 445 446[[package]] 447name = "getrandom" 448version = "0.2.16" 449source = "registry+https://github.com/rust-lang/crates.io-index" 450checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 451dependencies = [ 452 "cfg-if", 453 "libc", 454 "wasi", 455] 456 457[[package]] 458name = "getrandom" 459version = "0.3.4" 460source = "registry+https://github.com/rust-lang/crates.io-index" 461checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 462dependencies = [ 463 "cfg-if", 464 "libc", 465 "r-efi", 466 "wasip2", 467] 468 469[[package]] 470name = "h2" 471version = "0.4.12" 472source = "registry+https://github.com/rust-lang/crates.io-index" 473checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" 474dependencies = [ 475 "atomic-waker", 476 "bytes", 477 "fnv", 478 "futures-core", 479 "futures-sink", 480 "http", 481 "indexmap", 482 "slab", 483 "tokio", 484 "tokio-util", 485 "tracing", 486] 487 488[[package]] 489name = "hashbrown" 490version = "0.15.5" 491source = "registry+https://github.com/rust-lang/crates.io-index" 492checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 493dependencies = [ 494 "foldhash", 495] 496 497[[package]] 498name = "hashbrown" 499version = "0.16.0" 500source = "registry+https://github.com/rust-lang/crates.io-index" 501checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" 502 503[[package]] 504name = "hashlink" 505version = "0.10.0" 506source = "registry+https://github.com/rust-lang/crates.io-index" 507checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1" 508dependencies = [ 509 "hashbrown 0.15.5", 510] 511 512[[package]] 513name = "http" 514version = "1.3.1" 515source = "registry+https://github.com/rust-lang/crates.io-index" 516checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" 517dependencies = [ 518 "bytes", 519 "fnv", 520 "itoa", 521] 522 523[[package]] 524name = "http-body" 525version = "1.0.1" 526source = "registry+https://github.com/rust-lang/crates.io-index" 527checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 528dependencies = [ 529 "bytes", 530 "http", 531] 532 533[[package]] 534name = "http-body-util" 535version = "0.1.3" 536source = "registry+https://github.com/rust-lang/crates.io-index" 537checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 538dependencies = [ 539 "bytes", 540 "futures-core", 541 "http", 542 "http-body", 543 "pin-project-lite", 544] 545 546[[package]] 547name = "httparse" 548version = "1.10.1" 549source = "registry+https://github.com/rust-lang/crates.io-index" 550checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 551 552[[package]] 553name = "httpdate" 554version = "1.0.3" 555source = "registry+https://github.com/rust-lang/crates.io-index" 556checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 557 558[[package]] 559name = "hyper" 560version = "1.7.0" 561source = "registry+https://github.com/rust-lang/crates.io-index" 562checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" 563dependencies = [ 564 "atomic-waker", 565 "bytes", 566 "futures-channel", 567 "futures-core", 568 "h2", 569 "http", 570 "http-body", 571 "httparse", 572 "httpdate", 573 "itoa", 574 "pin-project-lite", 575 "pin-utils", 576 "smallvec", 577 "tokio", 578 "want", 579] 580 581[[package]] 582name = "hyper-rustls" 583version = "0.27.7" 584source = "registry+https://github.com/rust-lang/crates.io-index" 585checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 586dependencies = [ 587 "http", 588 "hyper", 589 "hyper-util", 590 "rustls", 591 "rustls-pki-types", 592 "tokio", 593 "tokio-rustls", 594 "tower-service", 595] 596 597[[package]] 598name = "hyper-tls" 599version = "0.6.0" 600source = "registry+https://github.com/rust-lang/crates.io-index" 601checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 602dependencies = [ 603 "bytes", 604 "http-body-util", 605 "hyper", 606 "hyper-util", 607 "native-tls", 608 "tokio", 609 "tokio-native-tls", 610 "tower-service", 611] 612 613[[package]] 614name = "hyper-util" 615version = "0.1.17" 616source = "registry+https://github.com/rust-lang/crates.io-index" 617checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" 618dependencies = [ 619 "base64", 620 "bytes", 621 "futures-channel", 622 "futures-core", 623 "futures-util", 624 "http", 625 "http-body", 626 "hyper", 627 "ipnet", 628 "libc", 629 "percent-encoding", 630 "pin-project-lite", 631 "socket2 0.6.1", 632 "system-configuration", 633 "tokio", 634 "tower-service", 635 "tracing", 636 "windows-registry", 637] 638 639[[package]] 640name = "icu_collections" 641version = "2.0.0" 642source = "registry+https://github.com/rust-lang/crates.io-index" 643checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" 644dependencies = [ 645 "displaydoc", 646 "potential_utf", 647 "yoke", 648 "zerofrom", 649 "zerovec", 650] 651 652[[package]] 653name = "icu_locale_core" 654version = "2.0.0" 655source = "registry+https://github.com/rust-lang/crates.io-index" 656checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" 657dependencies = [ 658 "displaydoc", 659 "litemap", 660 "tinystr", 661 "writeable", 662 "zerovec", 663] 664 665[[package]] 666name = "icu_normalizer" 667version = "2.0.0" 668source = "registry+https://github.com/rust-lang/crates.io-index" 669checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" 670dependencies = [ 671 "displaydoc", 672 "icu_collections", 673 "icu_normalizer_data", 674 "icu_properties", 675 "icu_provider", 676 "smallvec", 677 "zerovec", 678] 679 680[[package]] 681name = "icu_normalizer_data" 682version = "2.0.0" 683source = "registry+https://github.com/rust-lang/crates.io-index" 684checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" 685 686[[package]] 687name = "icu_properties" 688version = "2.0.1" 689source = "registry+https://github.com/rust-lang/crates.io-index" 690checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" 691dependencies = [ 692 "displaydoc", 693 "icu_collections", 694 "icu_locale_core", 695 "icu_properties_data", 696 "icu_provider", 697 "potential_utf", 698 "zerotrie", 699 "zerovec", 700] 701 702[[package]] 703name = "icu_properties_data" 704version = "2.0.1" 705source = "registry+https://github.com/rust-lang/crates.io-index" 706checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" 707 708[[package]] 709name = "icu_provider" 710version = "2.0.0" 711source = "registry+https://github.com/rust-lang/crates.io-index" 712checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" 713dependencies = [ 714 "displaydoc", 715 "icu_locale_core", 716 "stable_deref_trait", 717 "tinystr", 718 "writeable", 719 "yoke", 720 "zerofrom", 721 "zerotrie", 722 "zerovec", 723] 724 725[[package]] 726name = "idna" 727version = "1.1.0" 728source = "registry+https://github.com/rust-lang/crates.io-index" 729checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 730dependencies = [ 731 "idna_adapter", 732 "smallvec", 733 "utf8_iter", 734] 735 736[[package]] 737name = "idna_adapter" 738version = "1.2.1" 739source = "registry+https://github.com/rust-lang/crates.io-index" 740checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 741dependencies = [ 742 "icu_normalizer", 743 "icu_properties", 744] 745 746[[package]] 747name = "indexmap" 748version = "2.12.0" 749source = "registry+https://github.com/rust-lang/crates.io-index" 750checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" 751dependencies = [ 752 "equivalent", 753 "hashbrown 0.16.0", 754] 755 756[[package]] 757name = "ipnet" 758version = "2.11.0" 759source = "registry+https://github.com/rust-lang/crates.io-index" 760checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 761 762[[package]] 763name = "iri-string" 764version = "0.7.8" 765source = "registry+https://github.com/rust-lang/crates.io-index" 766checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" 767dependencies = [ 768 "memchr", 769 "serde", 770] 771 772[[package]] 773name = "itoa" 774version = "1.0.15" 775source = "registry+https://github.com/rust-lang/crates.io-index" 776checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 777 778[[package]] 779name = "js-sys" 780version = "0.3.81" 781source = "registry+https://github.com/rust-lang/crates.io-index" 782checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305" 783dependencies = [ 784 "once_cell", 785 "wasm-bindgen", 786] 787 788[[package]] 789name = "libc" 790version = "0.2.177" 791source = "registry+https://github.com/rust-lang/crates.io-index" 792checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" 793 794[[package]] 795name = "libsqlite3-sys" 796version = "0.35.0" 797source = "registry+https://github.com/rust-lang/crates.io-index" 798checksum = "133c182a6a2c87864fe97778797e46c7e999672690dc9fa3ee8e241aa4a9c13f" 799dependencies = [ 800 "cc", 801 "pkg-config", 802 "vcpkg", 803] 804 805[[package]] 806name = "linux-raw-sys" 807version = "0.11.0" 808source = "registry+https://github.com/rust-lang/crates.io-index" 809checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 810 811[[package]] 812name = "litemap" 813version = "0.8.0" 814source = "registry+https://github.com/rust-lang/crates.io-index" 815checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" 816 817[[package]] 818name = "lock_api" 819version = "0.4.14" 820source = "registry+https://github.com/rust-lang/crates.io-index" 821checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 822dependencies = [ 823 "scopeguard", 824 "serde", 825] 826 827[[package]] 828name = "log" 829version = "0.4.28" 830source = "registry+https://github.com/rust-lang/crates.io-index" 831checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" 832 833[[package]] 834name = "matchit" 835version = "0.8.4" 836source = "registry+https://github.com/rust-lang/crates.io-index" 837checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 838 839[[package]] 840name = "memchr" 841version = "2.7.6" 842source = "registry+https://github.com/rust-lang/crates.io-index" 843checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 844 845[[package]] 846name = "mime" 847version = "0.3.17" 848source = "registry+https://github.com/rust-lang/crates.io-index" 849checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 850 851[[package]] 852name = "minimal-lexical" 853version = "0.2.1" 854source = "registry+https://github.com/rust-lang/crates.io-index" 855checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 856 857[[package]] 858name = "mio" 859version = "1.0.4" 860source = "registry+https://github.com/rust-lang/crates.io-index" 861checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" 862dependencies = [ 863 "libc", 864 "wasi", 865 "windows-sys 0.59.0", 866] 867 868[[package]] 869name = "nanoid" 870version = "0.4.0" 871source = "registry+https://github.com/rust-lang/crates.io-index" 872checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8" 873dependencies = [ 874 "rand", 875] 876 877[[package]] 878name = "native-tls" 879version = "0.2.14" 880source = "registry+https://github.com/rust-lang/crates.io-index" 881checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" 882dependencies = [ 883 "libc", 884 "log", 885 "openssl", 886 "openssl-probe", 887 "openssl-sys", 888 "schannel", 889 "security-framework", 890 "security-framework-sys", 891 "tempfile", 892] 893 894[[package]] 895name = "nom" 896version = "7.1.3" 897source = "registry+https://github.com/rust-lang/crates.io-index" 898checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 899dependencies = [ 900 "memchr", 901 "minimal-lexical", 902] 903 904[[package]] 905name = "num-conv" 906version = "0.1.0" 907source = "registry+https://github.com/rust-lang/crates.io-index" 908checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 909 910[[package]] 911name = "num-traits" 912version = "0.2.19" 913source = "registry+https://github.com/rust-lang/crates.io-index" 914checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 915dependencies = [ 916 "autocfg", 917] 918 919[[package]] 920name = "once_cell" 921version = "1.21.3" 922source = "registry+https://github.com/rust-lang/crates.io-index" 923checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 924 925[[package]] 926name = "openssl" 927version = "0.10.74" 928source = "registry+https://github.com/rust-lang/crates.io-index" 929checksum = "24ad14dd45412269e1a30f52ad8f0664f0f4f4a89ee8fe28c3b3527021ebb654" 930dependencies = [ 931 "bitflags", 932 "cfg-if", 933 "foreign-types", 934 "libc", 935 "once_cell", 936 "openssl-macros", 937 "openssl-sys", 938] 939 940[[package]] 941name = "openssl-macros" 942version = "0.1.1" 943source = "registry+https://github.com/rust-lang/crates.io-index" 944checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 945dependencies = [ 946 "proc-macro2", 947 "quote", 948 "syn", 949] 950 951[[package]] 952name = "openssl-probe" 953version = "0.1.6" 954source = "registry+https://github.com/rust-lang/crates.io-index" 955checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" 956 957[[package]] 958name = "openssl-sys" 959version = "0.9.110" 960source = "registry+https://github.com/rust-lang/crates.io-index" 961checksum = "0a9f0075ba3c21b09f8e8b2026584b1d18d49388648f2fbbf3c97ea8deced8e2" 962dependencies = [ 963 "cc", 964 "libc", 965 "pkg-config", 966 "vcpkg", 967] 968 969[[package]] 970name = "parking_lot" 971version = "0.12.5" 972source = "registry+https://github.com/rust-lang/crates.io-index" 973checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 974dependencies = [ 975 "lock_api", 976 "parking_lot_core", 977] 978 979[[package]] 980name = "parking_lot_core" 981version = "0.9.12" 982source = "registry+https://github.com/rust-lang/crates.io-index" 983checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 984dependencies = [ 985 "cfg-if", 986 "libc", 987 "redox_syscall", 988 "smallvec", 989 "windows-link 0.2.1", 990] 991 992[[package]] 993name = "paste" 994version = "1.0.15" 995source = "registry+https://github.com/rust-lang/crates.io-index" 996checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 997 998[[package]] 999name = "percent-encoding" 1000version = "2.3.2" 1001source = "registry+https://github.com/rust-lang/crates.io-index" 1002checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 1003 1004[[package]] 1005name = "pin-project-lite" 1006version = "0.2.16" 1007source = "registry+https://github.com/rust-lang/crates.io-index" 1008checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 1009 1010[[package]] 1011name = "pin-utils" 1012version = "0.1.0" 1013source = "registry+https://github.com/rust-lang/crates.io-index" 1014checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1015 1016[[package]] 1017name = "pkg-config" 1018version = "0.3.32" 1019source = "registry+https://github.com/rust-lang/crates.io-index" 1020checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 1021 1022[[package]] 1023name = "potential_utf" 1024version = "0.1.3" 1025source = "registry+https://github.com/rust-lang/crates.io-index" 1026checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a" 1027dependencies = [ 1028 "zerovec", 1029] 1030 1031[[package]] 1032name = "powerfmt" 1033version = "0.2.0" 1034source = "registry+https://github.com/rust-lang/crates.io-index" 1035checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1036 1037[[package]] 1038name = "ppv-lite86" 1039version = "0.2.21" 1040source = "registry+https://github.com/rust-lang/crates.io-index" 1041checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 1042dependencies = [ 1043 "zerocopy", 1044] 1045 1046[[package]] 1047name = "proc-macro2" 1048version = "1.0.101" 1049source = "registry+https://github.com/rust-lang/crates.io-index" 1050checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" 1051dependencies = [ 1052 "unicode-ident", 1053] 1054 1055[[package]] 1056name = "quote" 1057version = "1.0.41" 1058source = "registry+https://github.com/rust-lang/crates.io-index" 1059checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1" 1060dependencies = [ 1061 "proc-macro2", 1062] 1063 1064[[package]] 1065name = "r-efi" 1066version = "5.3.0" 1067source = "registry+https://github.com/rust-lang/crates.io-index" 1068checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 1069 1070[[package]] 1071name = "rand" 1072version = "0.8.5" 1073source = "registry+https://github.com/rust-lang/crates.io-index" 1074checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1075dependencies = [ 1076 "libc", 1077 "rand_chacha", 1078 "rand_core", 1079] 1080 1081[[package]] 1082name = "rand_chacha" 1083version = "0.3.1" 1084source = "registry+https://github.com/rust-lang/crates.io-index" 1085checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1086dependencies = [ 1087 "ppv-lite86", 1088 "rand_core", 1089] 1090 1091[[package]] 1092name = "rand_core" 1093version = "0.6.4" 1094source = "registry+https://github.com/rust-lang/crates.io-index" 1095checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1096dependencies = [ 1097 "getrandom 0.2.16", 1098] 1099 1100[[package]] 1101name = "redis-protocol" 1102version = "6.0.0" 1103source = "registry+https://github.com/rust-lang/crates.io-index" 1104checksum = "9cdba59219406899220fc4cdfd17a95191ba9c9afb719b5fa5a083d63109a9f1" 1105dependencies = [ 1106 "bytes", 1107 "bytes-utils", 1108 "cookie-factory", 1109 "crc16", 1110 "log", 1111 "nom", 1112] 1113 1114[[package]] 1115name = "redox_syscall" 1116version = "0.5.18" 1117source = "registry+https://github.com/rust-lang/crates.io-index" 1118checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 1119dependencies = [ 1120 "bitflags", 1121] 1122 1123[[package]] 1124name = "reqwest" 1125version = "0.12.24" 1126source = "registry+https://github.com/rust-lang/crates.io-index" 1127checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f" 1128dependencies = [ 1129 "base64", 1130 "bytes", 1131 "encoding_rs", 1132 "futures-core", 1133 "h2", 1134 "http", 1135 "http-body", 1136 "http-body-util", 1137 "hyper", 1138 "hyper-rustls", 1139 "hyper-tls", 1140 "hyper-util", 1141 "js-sys", 1142 "log", 1143 "mime", 1144 "native-tls", 1145 "percent-encoding", 1146 "pin-project-lite", 1147 "rustls-pki-types", 1148 "serde", 1149 "serde_json", 1150 "serde_urlencoded", 1151 "sync_wrapper", 1152 "tokio", 1153 "tokio-native-tls", 1154 "tower", 1155 "tower-http", 1156 "tower-service", 1157 "url", 1158 "wasm-bindgen", 1159 "wasm-bindgen-futures", 1160 "web-sys", 1161] 1162 1163[[package]] 1164name = "ring" 1165version = "0.17.14" 1166source = "registry+https://github.com/rust-lang/crates.io-index" 1167checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 1168dependencies = [ 1169 "cc", 1170 "cfg-if", 1171 "getrandom 0.2.16", 1172 "libc", 1173 "untrusted", 1174 "windows-sys 0.52.0", 1175] 1176 1177[[package]] 1178name = "rmp" 1179version = "0.8.14" 1180source = "registry+https://github.com/rust-lang/crates.io-index" 1181checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4" 1182dependencies = [ 1183 "byteorder", 1184 "num-traits", 1185 "paste", 1186] 1187 1188[[package]] 1189name = "rmp-serde" 1190version = "1.3.0" 1191source = "registry+https://github.com/rust-lang/crates.io-index" 1192checksum = "52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db" 1193dependencies = [ 1194 "byteorder", 1195 "rmp", 1196 "serde", 1197] 1198 1199[[package]] 1200name = "rusqlite" 1201version = "0.37.0" 1202source = "registry+https://github.com/rust-lang/crates.io-index" 1203checksum = "165ca6e57b20e1351573e3729b958bc62f0e48025386970b6e4d29e7a7e71f3f" 1204dependencies = [ 1205 "bitflags", 1206 "fallible-iterator", 1207 "fallible-streaming-iterator", 1208 "hashlink", 1209 "libsqlite3-sys", 1210 "smallvec", 1211] 1212 1213[[package]] 1214name = "rustix" 1215version = "1.1.2" 1216source = "registry+https://github.com/rust-lang/crates.io-index" 1217checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" 1218dependencies = [ 1219 "bitflags", 1220 "errno", 1221 "libc", 1222 "linux-raw-sys", 1223 "windows-sys 0.61.2", 1224] 1225 1226[[package]] 1227name = "rustls" 1228version = "0.23.34" 1229source = "registry+https://github.com/rust-lang/crates.io-index" 1230checksum = "6a9586e9ee2b4f8fab52a0048ca7334d7024eef48e2cb9407e3497bb7cab7fa7" 1231dependencies = [ 1232 "once_cell", 1233 "rustls-pki-types", 1234 "rustls-webpki", 1235 "subtle", 1236 "zeroize", 1237] 1238 1239[[package]] 1240name = "rustls-pki-types" 1241version = "1.12.0" 1242source = "registry+https://github.com/rust-lang/crates.io-index" 1243checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" 1244dependencies = [ 1245 "zeroize", 1246] 1247 1248[[package]] 1249name = "rustls-webpki" 1250version = "0.103.7" 1251source = "registry+https://github.com/rust-lang/crates.io-index" 1252checksum = "e10b3f4191e8a80e6b43eebabfac91e5dcecebb27a71f04e820c47ec41d314bf" 1253dependencies = [ 1254 "ring", 1255 "rustls-pki-types", 1256 "untrusted", 1257] 1258 1259[[package]] 1260name = "rustversion" 1261version = "1.0.22" 1262source = "registry+https://github.com/rust-lang/crates.io-index" 1263checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 1264 1265[[package]] 1266name = "ryu" 1267version = "1.0.20" 1268source = "registry+https://github.com/rust-lang/crates.io-index" 1269checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 1270 1271[[package]] 1272name = "schannel" 1273version = "0.1.28" 1274source = "registry+https://github.com/rust-lang/crates.io-index" 1275checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" 1276dependencies = [ 1277 "windows-sys 0.61.2", 1278] 1279 1280[[package]] 1281name = "scopeguard" 1282version = "1.2.0" 1283source = "registry+https://github.com/rust-lang/crates.io-index" 1284checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1285 1286[[package]] 1287name = "security-framework" 1288version = "2.11.1" 1289source = "registry+https://github.com/rust-lang/crates.io-index" 1290checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 1291dependencies = [ 1292 "bitflags", 1293 "core-foundation", 1294 "core-foundation-sys", 1295 "libc", 1296 "security-framework-sys", 1297] 1298 1299[[package]] 1300name = "security-framework-sys" 1301version = "2.15.0" 1302source = "registry+https://github.com/rust-lang/crates.io-index" 1303checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" 1304dependencies = [ 1305 "core-foundation-sys", 1306 "libc", 1307] 1308 1309[[package]] 1310name = "semver" 1311version = "1.0.27" 1312source = "registry+https://github.com/rust-lang/crates.io-index" 1313checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" 1314 1315[[package]] 1316name = "serde" 1317version = "1.0.228" 1318source = "registry+https://github.com/rust-lang/crates.io-index" 1319checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 1320dependencies = [ 1321 "serde_core", 1322 "serde_derive", 1323] 1324 1325[[package]] 1326name = "serde_core" 1327version = "1.0.228" 1328source = "registry+https://github.com/rust-lang/crates.io-index" 1329checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 1330dependencies = [ 1331 "serde_derive", 1332] 1333 1334[[package]] 1335name = "serde_derive" 1336version = "1.0.228" 1337source = "registry+https://github.com/rust-lang/crates.io-index" 1338checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 1339dependencies = [ 1340 "proc-macro2", 1341 "quote", 1342 "syn", 1343] 1344 1345[[package]] 1346name = "serde_json" 1347version = "1.0.145" 1348source = "registry+https://github.com/rust-lang/crates.io-index" 1349checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" 1350dependencies = [ 1351 "itoa", 1352 "memchr", 1353 "ryu", 1354 "serde", 1355 "serde_core", 1356] 1357 1358[[package]] 1359name = "serde_path_to_error" 1360version = "0.1.20" 1361source = "registry+https://github.com/rust-lang/crates.io-index" 1362checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" 1363dependencies = [ 1364 "itoa", 1365 "serde", 1366 "serde_core", 1367] 1368 1369[[package]] 1370name = "serde_urlencoded" 1371version = "0.7.1" 1372source = "registry+https://github.com/rust-lang/crates.io-index" 1373checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1374dependencies = [ 1375 "form_urlencoded", 1376 "itoa", 1377 "ryu", 1378 "serde", 1379] 1380 1381[[package]] 1382name = "shlex" 1383version = "1.3.0" 1384source = "registry+https://github.com/rust-lang/crates.io-index" 1385checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1386 1387[[package]] 1388name = "signal-hook-registry" 1389version = "1.4.6" 1390source = "registry+https://github.com/rust-lang/crates.io-index" 1391checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" 1392dependencies = [ 1393 "libc", 1394] 1395 1396[[package]] 1397name = "slab" 1398version = "0.4.11" 1399source = "registry+https://github.com/rust-lang/crates.io-index" 1400checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 1401 1402[[package]] 1403name = "smallvec" 1404version = "1.15.1" 1405source = "registry+https://github.com/rust-lang/crates.io-index" 1406checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 1407 1408[[package]] 1409name = "socket2" 1410version = "0.5.10" 1411source = "registry+https://github.com/rust-lang/crates.io-index" 1412checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 1413dependencies = [ 1414 "libc", 1415 "windows-sys 0.52.0", 1416] 1417 1418[[package]] 1419name = "socket2" 1420version = "0.6.1" 1421source = "registry+https://github.com/rust-lang/crates.io-index" 1422checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" 1423dependencies = [ 1424 "libc", 1425 "windows-sys 0.60.2", 1426] 1427 1428[[package]] 1429name = "stable_deref_trait" 1430version = "1.2.1" 1431source = "registry+https://github.com/rust-lang/crates.io-index" 1432checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 1433 1434[[package]] 1435name = "subtle" 1436version = "2.6.1" 1437source = "registry+https://github.com/rust-lang/crates.io-index" 1438checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 1439 1440[[package]] 1441name = "syn" 1442version = "2.0.106" 1443source = "registry+https://github.com/rust-lang/crates.io-index" 1444checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" 1445dependencies = [ 1446 "proc-macro2", 1447 "quote", 1448 "unicode-ident", 1449] 1450 1451[[package]] 1452name = "sync_wrapper" 1453version = "1.0.2" 1454source = "registry+https://github.com/rust-lang/crates.io-index" 1455checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 1456dependencies = [ 1457 "futures-core", 1458] 1459 1460[[package]] 1461name = "synstructure" 1462version = "0.13.2" 1463source = "registry+https://github.com/rust-lang/crates.io-index" 1464checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 1465dependencies = [ 1466 "proc-macro2", 1467 "quote", 1468 "syn", 1469] 1470 1471[[package]] 1472name = "system-configuration" 1473version = "0.6.1" 1474source = "registry+https://github.com/rust-lang/crates.io-index" 1475checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" 1476dependencies = [ 1477 "bitflags", 1478 "core-foundation", 1479 "system-configuration-sys", 1480] 1481 1482[[package]] 1483name = "system-configuration-sys" 1484version = "0.6.0" 1485source = "registry+https://github.com/rust-lang/crates.io-index" 1486checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 1487dependencies = [ 1488 "core-foundation-sys", 1489 "libc", 1490] 1491 1492[[package]] 1493name = "tempfile" 1494version = "3.23.0" 1495source = "registry+https://github.com/rust-lang/crates.io-index" 1496checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" 1497dependencies = [ 1498 "fastrand", 1499 "getrandom 0.3.4", 1500 "once_cell", 1501 "rustix", 1502 "windows-sys 0.61.2", 1503] 1504 1505[[package]] 1506name = "thiserror" 1507version = "2.0.17" 1508source = "registry+https://github.com/rust-lang/crates.io-index" 1509checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 1510dependencies = [ 1511 "thiserror-impl", 1512] 1513 1514[[package]] 1515name = "thiserror-impl" 1516version = "2.0.17" 1517source = "registry+https://github.com/rust-lang/crates.io-index" 1518checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 1519dependencies = [ 1520 "proc-macro2", 1521 "quote", 1522 "syn", 1523] 1524 1525[[package]] 1526name = "time" 1527version = "0.3.44" 1528source = "registry+https://github.com/rust-lang/crates.io-index" 1529checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" 1530dependencies = [ 1531 "deranged", 1532 "itoa", 1533 "num-conv", 1534 "powerfmt", 1535 "serde", 1536 "time-core", 1537 "time-macros", 1538] 1539 1540[[package]] 1541name = "time-core" 1542version = "0.1.6" 1543source = "registry+https://github.com/rust-lang/crates.io-index" 1544checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" 1545 1546[[package]] 1547name = "time-macros" 1548version = "0.2.24" 1549source = "registry+https://github.com/rust-lang/crates.io-index" 1550checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" 1551dependencies = [ 1552 "num-conv", 1553 "time-core", 1554] 1555 1556[[package]] 1557name = "tinystr" 1558version = "0.8.1" 1559source = "registry+https://github.com/rust-lang/crates.io-index" 1560checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" 1561dependencies = [ 1562 "displaydoc", 1563 "zerovec", 1564] 1565 1566[[package]] 1567name = "tokio" 1568version = "1.48.0" 1569source = "registry+https://github.com/rust-lang/crates.io-index" 1570checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" 1571dependencies = [ 1572 "bytes", 1573 "libc", 1574 "mio", 1575 "parking_lot", 1576 "pin-project-lite", 1577 "signal-hook-registry", 1578 "socket2 0.6.1", 1579 "tokio-macros", 1580 "windows-sys 0.61.2", 1581] 1582 1583[[package]] 1584name = "tokio-macros" 1585version = "2.6.0" 1586source = "registry+https://github.com/rust-lang/crates.io-index" 1587checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" 1588dependencies = [ 1589 "proc-macro2", 1590 "quote", 1591 "syn", 1592] 1593 1594[[package]] 1595name = "tokio-native-tls" 1596version = "0.3.1" 1597source = "registry+https://github.com/rust-lang/crates.io-index" 1598checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 1599dependencies = [ 1600 "native-tls", 1601 "tokio", 1602] 1603 1604[[package]] 1605name = "tokio-rustls" 1606version = "0.26.4" 1607source = "registry+https://github.com/rust-lang/crates.io-index" 1608checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 1609dependencies = [ 1610 "rustls", 1611 "tokio", 1612] 1613 1614[[package]] 1615name = "tokio-stream" 1616version = "0.1.17" 1617source = "registry+https://github.com/rust-lang/crates.io-index" 1618checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" 1619dependencies = [ 1620 "futures-core", 1621 "pin-project-lite", 1622 "tokio", 1623] 1624 1625[[package]] 1626name = "tokio-util" 1627version = "0.7.16" 1628source = "registry+https://github.com/rust-lang/crates.io-index" 1629checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5" 1630dependencies = [ 1631 "bytes", 1632 "futures-core", 1633 "futures-sink", 1634 "pin-project-lite", 1635 "tokio", 1636] 1637 1638[[package]] 1639name = "tower" 1640version = "0.5.2" 1641source = "registry+https://github.com/rust-lang/crates.io-index" 1642checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 1643dependencies = [ 1644 "futures-core", 1645 "futures-util", 1646 "pin-project-lite", 1647 "sync_wrapper", 1648 "tokio", 1649 "tower-layer", 1650 "tower-service", 1651 "tracing", 1652] 1653 1654[[package]] 1655name = "tower-cookies" 1656version = "0.11.0" 1657source = "registry+https://github.com/rust-lang/crates.io-index" 1658checksum = "151b5a3e3c45df17466454bb74e9ecedecc955269bdedbf4d150dfa393b55a36" 1659dependencies = [ 1660 "axum-core", 1661 "cookie", 1662 "futures-util", 1663 "http", 1664 "parking_lot", 1665 "pin-project-lite", 1666 "tower-layer", 1667 "tower-service", 1668] 1669 1670[[package]] 1671name = "tower-http" 1672version = "0.6.7" 1673source = "registry+https://github.com/rust-lang/crates.io-index" 1674checksum = "9cf146f99d442e8e68e585f5d798ccd3cad9a7835b917e09728880a862706456" 1675dependencies = [ 1676 "bitflags", 1677 "bytes", 1678 "futures-util", 1679 "http", 1680 "http-body", 1681 "iri-string", 1682 "pin-project-lite", 1683 "tower", 1684 "tower-layer", 1685 "tower-service", 1686] 1687 1688[[package]] 1689name = "tower-layer" 1690version = "0.3.3" 1691source = "registry+https://github.com/rust-lang/crates.io-index" 1692checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 1693 1694[[package]] 1695name = "tower-service" 1696version = "0.3.3" 1697source = "registry+https://github.com/rust-lang/crates.io-index" 1698checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 1699 1700[[package]] 1701name = "tower-sessions" 1702version = "0.14.0" 1703source = "registry+https://github.com/rust-lang/crates.io-index" 1704checksum = "43a05911f23e8fae446005fe9b7b97e66d95b6db589dc1c4d59f6a2d4d4927d3" 1705dependencies = [ 1706 "async-trait", 1707 "http", 1708 "time", 1709 "tokio", 1710 "tower-cookies", 1711 "tower-layer", 1712 "tower-service", 1713 "tower-sessions-core", 1714 "tower-sessions-memory-store", 1715 "tracing", 1716] 1717 1718[[package]] 1719name = "tower-sessions-core" 1720version = "0.14.0" 1721source = "registry+https://github.com/rust-lang/crates.io-index" 1722checksum = "ce8cce604865576b7751b7a6bc3058f754569a60d689328bb74c52b1d87e355b" 1723dependencies = [ 1724 "async-trait", 1725 "axum-core", 1726 "base64", 1727 "futures", 1728 "http", 1729 "parking_lot", 1730 "rand", 1731 "serde", 1732 "serde_json", 1733 "thiserror", 1734 "time", 1735 "tokio", 1736 "tracing", 1737] 1738 1739[[package]] 1740name = "tower-sessions-memory-store" 1741version = "0.14.0" 1742source = "registry+https://github.com/rust-lang/crates.io-index" 1743checksum = "fb05909f2e1420135a831dd5df9f5596d69196d0a64c3499ca474c4bd3d33242" 1744dependencies = [ 1745 "async-trait", 1746 "time", 1747 "tokio", 1748 "tower-sessions-core", 1749] 1750 1751[[package]] 1752name = "tower-sessions-redis-store" 1753version = "0.16.0" 1754source = "registry+https://github.com/rust-lang/crates.io-index" 1755checksum = "8e15b774f3d46625a27a8ac1238ecd73c8bd50013244e2de004026e161aad728" 1756dependencies = [ 1757 "async-trait", 1758 "fred", 1759 "rmp-serde", 1760 "thiserror", 1761 "time", 1762 "tower-sessions-core", 1763] 1764 1765[[package]] 1766name = "tpp" 1767version = "0.1.0" 1768dependencies = [ 1769 "axum", 1770 "dotenv", 1771 "hyper", 1772 "nanoid", 1773 "reqwest", 1774 "rusqlite", 1775 "serde", 1776 "serde_json", 1777 "serde_urlencoded", 1778 "tokio", 1779 "tower-http", 1780 "tower-sessions", 1781 "tower-sessions-redis-store", 1782 "url", 1783 "urlencoding", 1784] 1785 1786[[package]] 1787name = "tracing" 1788version = "0.1.41" 1789source = "registry+https://github.com/rust-lang/crates.io-index" 1790checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 1791dependencies = [ 1792 "log", 1793 "pin-project-lite", 1794 "tracing-attributes", 1795 "tracing-core", 1796] 1797 1798[[package]] 1799name = "tracing-attributes" 1800version = "0.1.30" 1801source = "registry+https://github.com/rust-lang/crates.io-index" 1802checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" 1803dependencies = [ 1804 "proc-macro2", 1805 "quote", 1806 "syn", 1807] 1808 1809[[package]] 1810name = "tracing-core" 1811version = "0.1.34" 1812source = "registry+https://github.com/rust-lang/crates.io-index" 1813checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" 1814dependencies = [ 1815 "once_cell", 1816] 1817 1818[[package]] 1819name = "try-lock" 1820version = "0.2.5" 1821source = "registry+https://github.com/rust-lang/crates.io-index" 1822checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 1823 1824[[package]] 1825name = "unicode-ident" 1826version = "1.0.19" 1827source = "registry+https://github.com/rust-lang/crates.io-index" 1828checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" 1829 1830[[package]] 1831name = "untrusted" 1832version = "0.9.0" 1833source = "registry+https://github.com/rust-lang/crates.io-index" 1834checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 1835 1836[[package]] 1837name = "url" 1838version = "2.5.7" 1839source = "registry+https://github.com/rust-lang/crates.io-index" 1840checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" 1841dependencies = [ 1842 "form_urlencoded", 1843 "idna", 1844 "percent-encoding", 1845 "serde", 1846] 1847 1848[[package]] 1849name = "urlencoding" 1850version = "2.1.3" 1851source = "registry+https://github.com/rust-lang/crates.io-index" 1852checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 1853 1854[[package]] 1855name = "utf8_iter" 1856version = "1.0.4" 1857source = "registry+https://github.com/rust-lang/crates.io-index" 1858checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 1859 1860[[package]] 1861name = "vcpkg" 1862version = "0.2.15" 1863source = "registry+https://github.com/rust-lang/crates.io-index" 1864checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 1865 1866[[package]] 1867name = "version_check" 1868version = "0.9.5" 1869source = "registry+https://github.com/rust-lang/crates.io-index" 1870checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 1871 1872[[package]] 1873name = "want" 1874version = "0.3.1" 1875source = "registry+https://github.com/rust-lang/crates.io-index" 1876checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 1877dependencies = [ 1878 "try-lock", 1879] 1880 1881[[package]] 1882name = "wasi" 1883version = "0.11.1+wasi-snapshot-preview1" 1884source = "registry+https://github.com/rust-lang/crates.io-index" 1885checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 1886 1887[[package]] 1888name = "wasip2" 1889version = "1.0.1+wasi-0.2.4" 1890source = "registry+https://github.com/rust-lang/crates.io-index" 1891checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 1892dependencies = [ 1893 "wit-bindgen", 1894] 1895 1896[[package]] 1897name = "wasm-bindgen" 1898version = "0.2.104" 1899source = "registry+https://github.com/rust-lang/crates.io-index" 1900checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d" 1901dependencies = [ 1902 "cfg-if", 1903 "once_cell", 1904 "rustversion", 1905 "wasm-bindgen-macro", 1906 "wasm-bindgen-shared", 1907] 1908 1909[[package]] 1910name = "wasm-bindgen-backend" 1911version = "0.2.104" 1912source = "registry+https://github.com/rust-lang/crates.io-index" 1913checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19" 1914dependencies = [ 1915 "bumpalo", 1916 "log", 1917 "proc-macro2", 1918 "quote", 1919 "syn", 1920 "wasm-bindgen-shared", 1921] 1922 1923[[package]] 1924name = "wasm-bindgen-futures" 1925version = "0.4.54" 1926source = "registry+https://github.com/rust-lang/crates.io-index" 1927checksum = "7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c" 1928dependencies = [ 1929 "cfg-if", 1930 "js-sys", 1931 "once_cell", 1932 "wasm-bindgen", 1933 "web-sys", 1934] 1935 1936[[package]] 1937name = "wasm-bindgen-macro" 1938version = "0.2.104" 1939source = "registry+https://github.com/rust-lang/crates.io-index" 1940checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119" 1941dependencies = [ 1942 "quote", 1943 "wasm-bindgen-macro-support", 1944] 1945 1946[[package]] 1947name = "wasm-bindgen-macro-support" 1948version = "0.2.104" 1949source = "registry+https://github.com/rust-lang/crates.io-index" 1950checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7" 1951dependencies = [ 1952 "proc-macro2", 1953 "quote", 1954 "syn", 1955 "wasm-bindgen-backend", 1956 "wasm-bindgen-shared", 1957] 1958 1959[[package]] 1960name = "wasm-bindgen-shared" 1961version = "0.2.104" 1962source = "registry+https://github.com/rust-lang/crates.io-index" 1963checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1" 1964dependencies = [ 1965 "unicode-ident", 1966] 1967 1968[[package]] 1969name = "web-sys" 1970version = "0.3.81" 1971source = "registry+https://github.com/rust-lang/crates.io-index" 1972checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120" 1973dependencies = [ 1974 "js-sys", 1975 "wasm-bindgen", 1976] 1977 1978[[package]] 1979name = "windows-link" 1980version = "0.1.3" 1981source = "registry+https://github.com/rust-lang/crates.io-index" 1982checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 1983 1984[[package]] 1985name = "windows-link" 1986version = "0.2.1" 1987source = "registry+https://github.com/rust-lang/crates.io-index" 1988checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 1989 1990[[package]] 1991name = "windows-registry" 1992version = "0.5.3" 1993source = "registry+https://github.com/rust-lang/crates.io-index" 1994checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e" 1995dependencies = [ 1996 "windows-link 0.1.3", 1997 "windows-result", 1998 "windows-strings", 1999] 2000 2001[[package]] 2002name = "windows-result" 2003version = "0.3.4" 2004source = "registry+https://github.com/rust-lang/crates.io-index" 2005checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 2006dependencies = [ 2007 "windows-link 0.1.3", 2008] 2009 2010[[package]] 2011name = "windows-strings" 2012version = "0.4.2" 2013source = "registry+https://github.com/rust-lang/crates.io-index" 2014checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 2015dependencies = [ 2016 "windows-link 0.1.3", 2017] 2018 2019[[package]] 2020name = "windows-sys" 2021version = "0.52.0" 2022source = "registry+https://github.com/rust-lang/crates.io-index" 2023checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2024dependencies = [ 2025 "windows-targets 0.52.6", 2026] 2027 2028[[package]] 2029name = "windows-sys" 2030version = "0.59.0" 2031source = "registry+https://github.com/rust-lang/crates.io-index" 2032checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 2033dependencies = [ 2034 "windows-targets 0.52.6", 2035] 2036 2037[[package]] 2038name = "windows-sys" 2039version = "0.60.2" 2040source = "registry+https://github.com/rust-lang/crates.io-index" 2041checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 2042dependencies = [ 2043 "windows-targets 0.53.5", 2044] 2045 2046[[package]] 2047name = "windows-sys" 2048version = "0.61.2" 2049source = "registry+https://github.com/rust-lang/crates.io-index" 2050checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 2051dependencies = [ 2052 "windows-link 0.2.1", 2053] 2054 2055[[package]] 2056name = "windows-targets" 2057version = "0.52.6" 2058source = "registry+https://github.com/rust-lang/crates.io-index" 2059checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 2060dependencies = [ 2061 "windows_aarch64_gnullvm 0.52.6", 2062 "windows_aarch64_msvc 0.52.6", 2063 "windows_i686_gnu 0.52.6", 2064 "windows_i686_gnullvm 0.52.6", 2065 "windows_i686_msvc 0.52.6", 2066 "windows_x86_64_gnu 0.52.6", 2067 "windows_x86_64_gnullvm 0.52.6", 2068 "windows_x86_64_msvc 0.52.6", 2069] 2070 2071[[package]] 2072name = "windows-targets" 2073version = "0.53.5" 2074source = "registry+https://github.com/rust-lang/crates.io-index" 2075checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 2076dependencies = [ 2077 "windows-link 0.2.1", 2078 "windows_aarch64_gnullvm 0.53.1", 2079 "windows_aarch64_msvc 0.53.1", 2080 "windows_i686_gnu 0.53.1", 2081 "windows_i686_gnullvm 0.53.1", 2082 "windows_i686_msvc 0.53.1", 2083 "windows_x86_64_gnu 0.53.1", 2084 "windows_x86_64_gnullvm 0.53.1", 2085 "windows_x86_64_msvc 0.53.1", 2086] 2087 2088[[package]] 2089name = "windows_aarch64_gnullvm" 2090version = "0.52.6" 2091source = "registry+https://github.com/rust-lang/crates.io-index" 2092checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 2093 2094[[package]] 2095name = "windows_aarch64_gnullvm" 2096version = "0.53.1" 2097source = "registry+https://github.com/rust-lang/crates.io-index" 2098checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 2099 2100[[package]] 2101name = "windows_aarch64_msvc" 2102version = "0.52.6" 2103source = "registry+https://github.com/rust-lang/crates.io-index" 2104checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 2105 2106[[package]] 2107name = "windows_aarch64_msvc" 2108version = "0.53.1" 2109source = "registry+https://github.com/rust-lang/crates.io-index" 2110checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 2111 2112[[package]] 2113name = "windows_i686_gnu" 2114version = "0.52.6" 2115source = "registry+https://github.com/rust-lang/crates.io-index" 2116checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 2117 2118[[package]] 2119name = "windows_i686_gnu" 2120version = "0.53.1" 2121source = "registry+https://github.com/rust-lang/crates.io-index" 2122checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 2123 2124[[package]] 2125name = "windows_i686_gnullvm" 2126version = "0.52.6" 2127source = "registry+https://github.com/rust-lang/crates.io-index" 2128checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 2129 2130[[package]] 2131name = "windows_i686_gnullvm" 2132version = "0.53.1" 2133source = "registry+https://github.com/rust-lang/crates.io-index" 2134checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 2135 2136[[package]] 2137name = "windows_i686_msvc" 2138version = "0.52.6" 2139source = "registry+https://github.com/rust-lang/crates.io-index" 2140checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 2141 2142[[package]] 2143name = "windows_i686_msvc" 2144version = "0.53.1" 2145source = "registry+https://github.com/rust-lang/crates.io-index" 2146checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 2147 2148[[package]] 2149name = "windows_x86_64_gnu" 2150version = "0.52.6" 2151source = "registry+https://github.com/rust-lang/crates.io-index" 2152checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 2153 2154[[package]] 2155name = "windows_x86_64_gnu" 2156version = "0.53.1" 2157source = "registry+https://github.com/rust-lang/crates.io-index" 2158checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 2159 2160[[package]] 2161name = "windows_x86_64_gnullvm" 2162version = "0.52.6" 2163source = "registry+https://github.com/rust-lang/crates.io-index" 2164checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 2165 2166[[package]] 2167name = "windows_x86_64_gnullvm" 2168version = "0.53.1" 2169source = "registry+https://github.com/rust-lang/crates.io-index" 2170checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 2171 2172[[package]] 2173name = "windows_x86_64_msvc" 2174version = "0.52.6" 2175source = "registry+https://github.com/rust-lang/crates.io-index" 2176checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 2177 2178[[package]] 2179name = "windows_x86_64_msvc" 2180version = "0.53.1" 2181source = "registry+https://github.com/rust-lang/crates.io-index" 2182checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 2183 2184[[package]] 2185name = "wit-bindgen" 2186version = "0.46.0" 2187source = "registry+https://github.com/rust-lang/crates.io-index" 2188checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 2189 2190[[package]] 2191name = "writeable" 2192version = "0.6.1" 2193source = "registry+https://github.com/rust-lang/crates.io-index" 2194checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" 2195 2196[[package]] 2197name = "yoke" 2198version = "0.8.0" 2199source = "registry+https://github.com/rust-lang/crates.io-index" 2200checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" 2201dependencies = [ 2202 "serde", 2203 "stable_deref_trait", 2204 "yoke-derive", 2205 "zerofrom", 2206] 2207 2208[[package]] 2209name = "yoke-derive" 2210version = "0.8.0" 2211source = "registry+https://github.com/rust-lang/crates.io-index" 2212checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" 2213dependencies = [ 2214 "proc-macro2", 2215 "quote", 2216 "syn", 2217 "synstructure", 2218] 2219 2220[[package]] 2221name = "zerocopy" 2222version = "0.8.27" 2223source = "registry+https://github.com/rust-lang/crates.io-index" 2224checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" 2225dependencies = [ 2226 "zerocopy-derive", 2227] 2228 2229[[package]] 2230name = "zerocopy-derive" 2231version = "0.8.27" 2232source = "registry+https://github.com/rust-lang/crates.io-index" 2233checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" 2234dependencies = [ 2235 "proc-macro2", 2236 "quote", 2237 "syn", 2238] 2239 2240[[package]] 2241name = "zerofrom" 2242version = "0.1.6" 2243source = "registry+https://github.com/rust-lang/crates.io-index" 2244checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 2245dependencies = [ 2246 "zerofrom-derive", 2247] 2248 2249[[package]] 2250name = "zerofrom-derive" 2251version = "0.1.6" 2252source = "registry+https://github.com/rust-lang/crates.io-index" 2253checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 2254dependencies = [ 2255 "proc-macro2", 2256 "quote", 2257 "syn", 2258 "synstructure", 2259] 2260 2261[[package]] 2262name = "zeroize" 2263version = "1.8.2" 2264source = "registry+https://github.com/rust-lang/crates.io-index" 2265checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 2266 2267[[package]] 2268name = "zerotrie" 2269version = "0.2.2" 2270source = "registry+https://github.com/rust-lang/crates.io-index" 2271checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" 2272dependencies = [ 2273 "displaydoc", 2274 "yoke", 2275 "zerofrom", 2276] 2277 2278[[package]] 2279name = "zerovec" 2280version = "0.11.4" 2281source = "registry+https://github.com/rust-lang/crates.io-index" 2282checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" 2283dependencies = [ 2284 "yoke", 2285 "zerofrom", 2286 "zerovec-derive", 2287] 2288 2289[[package]] 2290name = "zerovec-derive" 2291version = "0.11.1" 2292source = "registry+https://github.com/rust-lang/crates.io-index" 2293checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" 2294dependencies = [ 2295 "proc-macro2", 2296 "quote", 2297 "syn", 2298]