this repo has no description
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "abnf" 7version = "0.13.0" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "087113bd50d9adce24850eed5d0476c7d199d532fce8fab5173650331e09033a" 10dependencies = [ 11 "abnf-core", 12 "nom", 13] 14 15[[package]] 16name = "abnf-core" 17version = "0.5.0" 18source = "registry+https://github.com/rust-lang/crates.io-index" 19checksum = "c44e09c43ae1c368fb91a03a566472d0087c26cf7e1b9e8e289c14ede681dd7d" 20dependencies = [ 21 "nom", 22] 23 24[[package]] 25name = "adler2" 26version = "2.0.1" 27source = "registry+https://github.com/rust-lang/crates.io-index" 28checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 29 30[[package]] 31name = "aead" 32version = "0.5.2" 33source = "registry+https://github.com/rust-lang/crates.io-index" 34checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 35dependencies = [ 36 "crypto-common", 37 "generic-array", 38] 39 40[[package]] 41name = "aes" 42version = "0.8.4" 43source = "registry+https://github.com/rust-lang/crates.io-index" 44checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 45dependencies = [ 46 "cfg-if", 47 "cipher", 48 "cpufeatures", 49] 50 51[[package]] 52name = "aes-gcm" 53version = "0.10.3" 54source = "registry+https://github.com/rust-lang/crates.io-index" 55checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 56dependencies = [ 57 "aead", 58 "aes", 59 "cipher", 60 "ctr", 61 "ghash", 62 "subtle", 63] 64 65[[package]] 66name = "ahash" 67version = "0.8.12" 68source = "registry+https://github.com/rust-lang/crates.io-index" 69checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" 70dependencies = [ 71 "cfg-if", 72 "once_cell", 73 "version_check", 74 "zerocopy", 75] 76 77[[package]] 78name = "aho-corasick" 79version = "1.1.4" 80source = "registry+https://github.com/rust-lang/crates.io-index" 81checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 82dependencies = [ 83 "memchr", 84] 85 86[[package]] 87name = "aliasable" 88version = "0.1.3" 89source = "registry+https://github.com/rust-lang/crates.io-index" 90checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" 91 92[[package]] 93name = "allocator-api2" 94version = "0.2.21" 95source = "registry+https://github.com/rust-lang/crates.io-index" 96checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 97 98[[package]] 99name = "android_system_properties" 100version = "0.1.5" 101source = "registry+https://github.com/rust-lang/crates.io-index" 102checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 103dependencies = [ 104 "libc", 105] 106 107[[package]] 108name = "anyhow" 109version = "1.0.100" 110source = "registry+https://github.com/rust-lang/crates.io-index" 111checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" 112 113[[package]] 114name = "arc-swap" 115version = "1.7.1" 116source = "registry+https://github.com/rust-lang/crates.io-index" 117checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 118 119[[package]] 120name = "arcstr" 121version = "1.2.0" 122source = "registry+https://github.com/rust-lang/crates.io-index" 123checksum = "03918c3dbd7701a85c6b9887732e2921175f26c350b4563841d0958c21d57e6d" 124 125[[package]] 126name = "asn1-rs" 127version = "0.6.2" 128source = "registry+https://github.com/rust-lang/crates.io-index" 129checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" 130dependencies = [ 131 "asn1-rs-derive", 132 "asn1-rs-impl", 133 "displaydoc", 134 "nom", 135 "num-traits", 136 "rusticata-macros", 137 "thiserror 1.0.69", 138 "time", 139] 140 141[[package]] 142name = "asn1-rs-derive" 143version = "0.5.1" 144source = "registry+https://github.com/rust-lang/crates.io-index" 145checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" 146dependencies = [ 147 "proc-macro2", 148 "quote", 149 "syn 2.0.111", 150 "synstructure", 151] 152 153[[package]] 154name = "asn1-rs-impl" 155version = "0.2.0" 156source = "registry+https://github.com/rust-lang/crates.io-index" 157checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" 158dependencies = [ 159 "proc-macro2", 160 "quote", 161 "syn 2.0.111", 162] 163 164[[package]] 165name = "assert-json-diff" 166version = "2.0.2" 167source = "registry+https://github.com/rust-lang/crates.io-index" 168checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12" 169dependencies = [ 170 "serde", 171 "serde_json", 172] 173 174[[package]] 175name = "astral-tokio-tar" 176version = "0.5.6" 177source = "registry+https://github.com/rust-lang/crates.io-index" 178checksum = "ec179a06c1769b1e42e1e2cbe74c7dcdb3d6383c838454d063eaac5bbb7ebbe5" 179dependencies = [ 180 "filetime", 181 "futures-core", 182 "libc", 183 "portable-atomic", 184 "rustc-hash", 185 "tokio", 186 "tokio-stream", 187 "xattr", 188] 189 190[[package]] 191name = "async-compression" 192version = "0.4.36" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "98ec5f6c2f8bc326c994cb9e241cc257ddaba9afa8555a43cffbb5dd86efaa37" 195dependencies = [ 196 "compression-codecs", 197 "compression-core", 198 "futures-core", 199 "pin-project-lite", 200 "tokio", 201] 202 203[[package]] 204name = "async-stream" 205version = "0.3.6" 206source = "registry+https://github.com/rust-lang/crates.io-index" 207checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" 208dependencies = [ 209 "async-stream-impl", 210 "futures-core", 211 "pin-project-lite", 212] 213 214[[package]] 215name = "async-stream-impl" 216version = "0.3.6" 217source = "registry+https://github.com/rust-lang/crates.io-index" 218checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" 219dependencies = [ 220 "proc-macro2", 221 "quote", 222 "syn 2.0.111", 223] 224 225[[package]] 226name = "async-trait" 227version = "0.1.89" 228source = "registry+https://github.com/rust-lang/crates.io-index" 229checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 230dependencies = [ 231 "proc-macro2", 232 "quote", 233 "syn 2.0.111", 234] 235 236[[package]] 237name = "atoi" 238version = "2.0.0" 239source = "registry+https://github.com/rust-lang/crates.io-index" 240checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" 241dependencies = [ 242 "num-traits", 243] 244 245[[package]] 246name = "atomic-polyfill" 247version = "1.0.3" 248source = "registry+https://github.com/rust-lang/crates.io-index" 249checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4" 250dependencies = [ 251 "critical-section", 252] 253 254[[package]] 255name = "atomic-waker" 256version = "1.1.2" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 259 260[[package]] 261name = "autocfg" 262version = "1.5.0" 263source = "registry+https://github.com/rust-lang/crates.io-index" 264checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 265 266[[package]] 267name = "aws-config" 268version = "1.8.12" 269source = "registry+https://github.com/rust-lang/crates.io-index" 270checksum = "96571e6996817bf3d58f6b569e4b9fd2e9d2fcf9f7424eed07b2ce9bb87535e5" 271dependencies = [ 272 "aws-credential-types", 273 "aws-runtime", 274 "aws-sdk-sso", 275 "aws-sdk-ssooidc", 276 "aws-sdk-sts", 277 "aws-smithy-async", 278 "aws-smithy-http", 279 "aws-smithy-json", 280 "aws-smithy-runtime", 281 "aws-smithy-runtime-api", 282 "aws-smithy-types", 283 "aws-types", 284 "bytes", 285 "fastrand", 286 "hex", 287 "http 1.4.0", 288 "ring", 289 "time", 290 "tokio", 291 "tracing", 292 "url", 293 "zeroize", 294] 295 296[[package]] 297name = "aws-credential-types" 298version = "1.2.11" 299source = "registry+https://github.com/rust-lang/crates.io-index" 300checksum = "3cd362783681b15d136480ad555a099e82ecd8e2d10a841e14dfd0078d67fee3" 301dependencies = [ 302 "aws-smithy-async", 303 "aws-smithy-runtime-api", 304 "aws-smithy-types", 305 "zeroize", 306] 307 308[[package]] 309name = "aws-lc-rs" 310version = "1.15.2" 311source = "registry+https://github.com/rust-lang/crates.io-index" 312checksum = "6a88aab2464f1f25453baa7a07c84c5b7684e274054ba06817f382357f77a288" 313dependencies = [ 314 "aws-lc-sys", 315 "zeroize", 316] 317 318[[package]] 319name = "aws-lc-sys" 320version = "0.35.0" 321source = "registry+https://github.com/rust-lang/crates.io-index" 322checksum = "b45afffdee1e7c9126814751f88dddc747f41d91da16c9551a0f1e8a11e788a1" 323dependencies = [ 324 "cc", 325 "cmake", 326 "dunce", 327 "fs_extra", 328] 329 330[[package]] 331name = "aws-runtime" 332version = "1.5.17" 333source = "registry+https://github.com/rust-lang/crates.io-index" 334checksum = "d81b5b2898f6798ad58f484856768bca817e3cd9de0974c24ae0f1113fe88f1b" 335dependencies = [ 336 "aws-credential-types", 337 "aws-sigv4", 338 "aws-smithy-async", 339 "aws-smithy-eventstream", 340 "aws-smithy-http", 341 "aws-smithy-runtime", 342 "aws-smithy-runtime-api", 343 "aws-smithy-types", 344 "aws-types", 345 "bytes", 346 "fastrand", 347 "http 0.2.12", 348 "http-body 0.4.6", 349 "percent-encoding", 350 "pin-project-lite", 351 "tracing", 352 "uuid", 353] 354 355[[package]] 356name = "aws-sdk-s3" 357version = "1.118.0" 358source = "registry+https://github.com/rust-lang/crates.io-index" 359checksum = "d3e6b7079f85d9ea9a70643c9f89f50db70f5ada868fa9cfe08c1ffdf51abc13" 360dependencies = [ 361 "aws-credential-types", 362 "aws-runtime", 363 "aws-sigv4", 364 "aws-smithy-async", 365 "aws-smithy-checksums", 366 "aws-smithy-eventstream", 367 "aws-smithy-http", 368 "aws-smithy-json", 369 "aws-smithy-runtime", 370 "aws-smithy-runtime-api", 371 "aws-smithy-types", 372 "aws-smithy-xml", 373 "aws-types", 374 "bytes", 375 "fastrand", 376 "hex", 377 "hmac", 378 "http 0.2.12", 379 "http 1.4.0", 380 "http-body 0.4.6", 381 "lru", 382 "percent-encoding", 383 "regex-lite", 384 "sha2", 385 "tracing", 386 "url", 387] 388 389[[package]] 390name = "aws-sdk-sso" 391version = "1.91.0" 392source = "registry+https://github.com/rust-lang/crates.io-index" 393checksum = "8ee6402a36f27b52fe67661c6732d684b2635152b676aa2babbfb5204f99115d" 394dependencies = [ 395 "aws-credential-types", 396 "aws-runtime", 397 "aws-smithy-async", 398 "aws-smithy-http", 399 "aws-smithy-json", 400 "aws-smithy-runtime", 401 "aws-smithy-runtime-api", 402 "aws-smithy-types", 403 "aws-types", 404 "bytes", 405 "fastrand", 406 "http 0.2.12", 407 "regex-lite", 408 "tracing", 409] 410 411[[package]] 412name = "aws-sdk-ssooidc" 413version = "1.93.0" 414source = "registry+https://github.com/rust-lang/crates.io-index" 415checksum = "a45a7f750bbd170ee3677671ad782d90b894548f4e4ae168302c57ec9de5cb3e" 416dependencies = [ 417 "aws-credential-types", 418 "aws-runtime", 419 "aws-smithy-async", 420 "aws-smithy-http", 421 "aws-smithy-json", 422 "aws-smithy-runtime", 423 "aws-smithy-runtime-api", 424 "aws-smithy-types", 425 "aws-types", 426 "bytes", 427 "fastrand", 428 "http 0.2.12", 429 "regex-lite", 430 "tracing", 431] 432 433[[package]] 434name = "aws-sdk-sts" 435version = "1.95.0" 436source = "registry+https://github.com/rust-lang/crates.io-index" 437checksum = "55542378e419558e6b1f398ca70adb0b2088077e79ad9f14eb09441f2f7b2164" 438dependencies = [ 439 "aws-credential-types", 440 "aws-runtime", 441 "aws-smithy-async", 442 "aws-smithy-http", 443 "aws-smithy-json", 444 "aws-smithy-query", 445 "aws-smithy-runtime", 446 "aws-smithy-runtime-api", 447 "aws-smithy-types", 448 "aws-smithy-xml", 449 "aws-types", 450 "fastrand", 451 "http 0.2.12", 452 "regex-lite", 453 "tracing", 454] 455 456[[package]] 457name = "aws-sigv4" 458version = "1.3.7" 459source = "registry+https://github.com/rust-lang/crates.io-index" 460checksum = "69e523e1c4e8e7e8ff219d732988e22bfeae8a1cafdbe6d9eca1546fa080be7c" 461dependencies = [ 462 "aws-credential-types", 463 "aws-smithy-eventstream", 464 "aws-smithy-http", 465 "aws-smithy-runtime-api", 466 "aws-smithy-types", 467 "bytes", 468 "crypto-bigint 0.5.5", 469 "form_urlencoded", 470 "hex", 471 "hmac", 472 "http 0.2.12", 473 "http 1.4.0", 474 "p256 0.11.1", 475 "percent-encoding", 476 "ring", 477 "sha2", 478 "subtle", 479 "time", 480 "tracing", 481 "zeroize", 482] 483 484[[package]] 485name = "aws-smithy-async" 486version = "1.2.7" 487source = "registry+https://github.com/rust-lang/crates.io-index" 488checksum = "9ee19095c7c4dda59f1697d028ce704c24b2d33c6718790c7f1d5a3015b4107c" 489dependencies = [ 490 "futures-util", 491 "pin-project-lite", 492 "tokio", 493] 494 495[[package]] 496name = "aws-smithy-checksums" 497version = "0.63.12" 498source = "registry+https://github.com/rust-lang/crates.io-index" 499checksum = "87294a084b43d649d967efe58aa1f9e0adc260e13a6938eb904c0ae9b45824ae" 500dependencies = [ 501 "aws-smithy-http", 502 "aws-smithy-types", 503 "bytes", 504 "crc-fast", 505 "hex", 506 "http 0.2.12", 507 "http-body 0.4.6", 508 "md-5", 509 "pin-project-lite", 510 "sha1", 511 "sha2", 512 "tracing", 513] 514 515[[package]] 516name = "aws-smithy-eventstream" 517version = "0.60.14" 518source = "registry+https://github.com/rust-lang/crates.io-index" 519checksum = "dc12f8b310e38cad85cf3bef45ad236f470717393c613266ce0a89512286b650" 520dependencies = [ 521 "aws-smithy-types", 522 "bytes", 523 "crc32fast", 524] 525 526[[package]] 527name = "aws-smithy-http" 528version = "0.62.6" 529source = "registry+https://github.com/rust-lang/crates.io-index" 530checksum = "826141069295752372f8203c17f28e30c464d22899a43a0c9fd9c458d469c88b" 531dependencies = [ 532 "aws-smithy-eventstream", 533 "aws-smithy-runtime-api", 534 "aws-smithy-types", 535 "bytes", 536 "bytes-utils", 537 "futures-core", 538 "futures-util", 539 "http 0.2.12", 540 "http 1.4.0", 541 "http-body 0.4.6", 542 "percent-encoding", 543 "pin-project-lite", 544 "pin-utils", 545 "tracing", 546] 547 548[[package]] 549name = "aws-smithy-http-client" 550version = "1.1.5" 551source = "registry+https://github.com/rust-lang/crates.io-index" 552checksum = "59e62db736db19c488966c8d787f52e6270be565727236fd5579eaa301e7bc4a" 553dependencies = [ 554 "aws-smithy-async", 555 "aws-smithy-runtime-api", 556 "aws-smithy-types", 557 "h2 0.3.27", 558 "h2 0.4.12", 559 "http 0.2.12", 560 "http 1.4.0", 561 "http-body 0.4.6", 562 "hyper 0.14.32", 563 "hyper 1.8.1", 564 "hyper-rustls 0.24.2", 565 "hyper-rustls 0.27.7", 566 "hyper-util", 567 "pin-project-lite", 568 "rustls 0.21.12", 569 "rustls 0.23.35", 570 "rustls-native-certs", 571 "rustls-pki-types", 572 "tokio", 573 "tokio-rustls 0.26.4", 574 "tower", 575 "tracing", 576] 577 578[[package]] 579name = "aws-smithy-json" 580version = "0.61.9" 581source = "registry+https://github.com/rust-lang/crates.io-index" 582checksum = "49fa1213db31ac95288d981476f78d05d9cbb0353d22cdf3472cc05bb02f6551" 583dependencies = [ 584 "aws-smithy-types", 585] 586 587[[package]] 588name = "aws-smithy-observability" 589version = "0.1.5" 590source = "registry+https://github.com/rust-lang/crates.io-index" 591checksum = "17f616c3f2260612fe44cede278bafa18e73e6479c4e393e2c4518cf2a9a228a" 592dependencies = [ 593 "aws-smithy-runtime-api", 594] 595 596[[package]] 597name = "aws-smithy-query" 598version = "0.60.9" 599source = "registry+https://github.com/rust-lang/crates.io-index" 600checksum = "ae5d689cf437eae90460e944a58b5668530d433b4ff85789e69d2f2a556e057d" 601dependencies = [ 602 "aws-smithy-types", 603 "urlencoding", 604] 605 606[[package]] 607name = "aws-smithy-runtime" 608version = "1.9.6" 609source = "registry+https://github.com/rust-lang/crates.io-index" 610checksum = "65fda37911905ea4d3141a01364bc5509a0f32ae3f3b22d6e330c0abfb62d247" 611dependencies = [ 612 "aws-smithy-async", 613 "aws-smithy-http", 614 "aws-smithy-http-client", 615 "aws-smithy-observability", 616 "aws-smithy-runtime-api", 617 "aws-smithy-types", 618 "bytes", 619 "fastrand", 620 "http 0.2.12", 621 "http 1.4.0", 622 "http-body 0.4.6", 623 "http-body 1.0.1", 624 "pin-project-lite", 625 "pin-utils", 626 "tokio", 627 "tracing", 628] 629 630[[package]] 631name = "aws-smithy-runtime-api" 632version = "1.9.3" 633source = "registry+https://github.com/rust-lang/crates.io-index" 634checksum = "ab0d43d899f9e508300e587bf582ba54c27a452dd0a9ea294690669138ae14a2" 635dependencies = [ 636 "aws-smithy-async", 637 "aws-smithy-types", 638 "bytes", 639 "http 0.2.12", 640 "http 1.4.0", 641 "pin-project-lite", 642 "tokio", 643 "tracing", 644 "zeroize", 645] 646 647[[package]] 648name = "aws-smithy-types" 649version = "1.3.5" 650source = "registry+https://github.com/rust-lang/crates.io-index" 651checksum = "905cb13a9895626d49cf2ced759b062d913834c7482c38e49557eac4e6193f01" 652dependencies = [ 653 "base64-simd", 654 "bytes", 655 "bytes-utils", 656 "futures-core", 657 "http 0.2.12", 658 "http 1.4.0", 659 "http-body 0.4.6", 660 "http-body 1.0.1", 661 "http-body-util", 662 "itoa", 663 "num-integer", 664 "pin-project-lite", 665 "pin-utils", 666 "ryu", 667 "serde", 668 "time", 669 "tokio", 670 "tokio-util", 671] 672 673[[package]] 674name = "aws-smithy-xml" 675version = "0.60.13" 676source = "registry+https://github.com/rust-lang/crates.io-index" 677checksum = "11b2f670422ff42bf7065031e72b45bc52a3508bd089f743ea90731ca2b6ea57" 678dependencies = [ 679 "xmlparser", 680] 681 682[[package]] 683name = "aws-types" 684version = "1.3.11" 685source = "registry+https://github.com/rust-lang/crates.io-index" 686checksum = "1d980627d2dd7bfc32a3c025685a033eeab8d365cc840c631ef59d1b8f428164" 687dependencies = [ 688 "aws-credential-types", 689 "aws-smithy-async", 690 "aws-smithy-runtime-api", 691 "aws-smithy-types", 692 "rustc_version", 693 "tracing", 694] 695 696[[package]] 697name = "axum" 698version = "0.8.8" 699source = "registry+https://github.com/rust-lang/crates.io-index" 700checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" 701dependencies = [ 702 "axum-core", 703 "axum-macros", 704 "base64 0.22.1", 705 "bytes", 706 "form_urlencoded", 707 "futures-util", 708 "http 1.4.0", 709 "http-body 1.0.1", 710 "http-body-util", 711 "hyper 1.8.1", 712 "hyper-util", 713 "itoa", 714 "matchit", 715 "memchr", 716 "mime", 717 "percent-encoding", 718 "pin-project-lite", 719 "serde_core", 720 "serde_json", 721 "serde_path_to_error", 722 "serde_urlencoded", 723 "sha1", 724 "sync_wrapper", 725 "tokio", 726 "tokio-tungstenite", 727 "tower", 728 "tower-layer", 729 "tower-service", 730 "tracing", 731] 732 733[[package]] 734name = "axum-core" 735version = "0.5.5" 736source = "registry+https://github.com/rust-lang/crates.io-index" 737checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22" 738dependencies = [ 739 "bytes", 740 "futures-core", 741 "http 1.4.0", 742 "http-body 1.0.1", 743 "http-body-util", 744 "mime", 745 "pin-project-lite", 746 "sync_wrapper", 747 "tower-layer", 748 "tower-service", 749 "tracing", 750] 751 752[[package]] 753name = "axum-macros" 754version = "0.5.0" 755source = "registry+https://github.com/rust-lang/crates.io-index" 756checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c" 757dependencies = [ 758 "proc-macro2", 759 "quote", 760 "syn 2.0.111", 761] 762 763[[package]] 764name = "backon" 765version = "1.6.0" 766source = "registry+https://github.com/rust-lang/crates.io-index" 767checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef" 768dependencies = [ 769 "fastrand", 770] 771 772[[package]] 773name = "base-x" 774version = "0.2.11" 775source = "registry+https://github.com/rust-lang/crates.io-index" 776checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 777 778[[package]] 779name = "base16ct" 780version = "0.1.1" 781source = "registry+https://github.com/rust-lang/crates.io-index" 782checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" 783 784[[package]] 785name = "base16ct" 786version = "0.2.0" 787source = "registry+https://github.com/rust-lang/crates.io-index" 788checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 789 790[[package]] 791name = "base256emoji" 792version = "1.0.2" 793source = "registry+https://github.com/rust-lang/crates.io-index" 794checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c" 795dependencies = [ 796 "const-str", 797 "match-lookup", 798] 799 800[[package]] 801name = "base32" 802version = "0.5.1" 803source = "registry+https://github.com/rust-lang/crates.io-index" 804checksum = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076" 805 806[[package]] 807name = "base64" 808version = "0.21.7" 809source = "registry+https://github.com/rust-lang/crates.io-index" 810checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 811 812[[package]] 813name = "base64" 814version = "0.22.1" 815source = "registry+https://github.com/rust-lang/crates.io-index" 816checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 817 818[[package]] 819name = "base64-simd" 820version = "0.8.0" 821source = "registry+https://github.com/rust-lang/crates.io-index" 822checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" 823dependencies = [ 824 "outref", 825 "vsimd", 826] 827 828[[package]] 829name = "base64ct" 830version = "1.8.1" 831source = "registry+https://github.com/rust-lang/crates.io-index" 832checksum = "0e050f626429857a27ddccb31e0aca21356bfa709c04041aefddac081a8f068a" 833 834[[package]] 835name = "base64urlsafedata" 836version = "0.5.4" 837source = "registry+https://github.com/rust-lang/crates.io-index" 838checksum = "42f7f6be94fa637132933fd0a68b9140bcb60e3d46164cb68e82a2bb8d102b3a" 839dependencies = [ 840 "base64 0.21.7", 841 "pastey", 842 "serde", 843] 844 845[[package]] 846name = "bcrypt" 847version = "0.17.1" 848source = "registry+https://github.com/rust-lang/crates.io-index" 849checksum = "abaf6da45c74385272ddf00e1ac074c7d8a6c1a1dda376902bd6a427522a8b2c" 850dependencies = [ 851 "base64 0.22.1", 852 "blowfish", 853 "getrandom 0.3.4", 854 "subtle", 855 "zeroize", 856] 857 858[[package]] 859name = "bitflags" 860version = "2.10.0" 861source = "registry+https://github.com/rust-lang/crates.io-index" 862checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 863dependencies = [ 864 "serde_core", 865] 866 867[[package]] 868name = "block-buffer" 869version = "0.10.4" 870source = "registry+https://github.com/rust-lang/crates.io-index" 871checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 872dependencies = [ 873 "generic-array", 874] 875 876[[package]] 877name = "blowfish" 878version = "0.9.1" 879source = "registry+https://github.com/rust-lang/crates.io-index" 880checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7" 881dependencies = [ 882 "byteorder", 883 "cipher", 884] 885 886[[package]] 887name = "bollard" 888version = "0.19.4" 889source = "registry+https://github.com/rust-lang/crates.io-index" 890checksum = "87a52479c9237eb04047ddb94788c41ca0d26eaff8b697ecfbb4c32f7fdc3b1b" 891dependencies = [ 892 "async-stream", 893 "base64 0.22.1", 894 "bitflags", 895 "bollard-buildkit-proto", 896 "bollard-stubs", 897 "bytes", 898 "chrono", 899 "futures-core", 900 "futures-util", 901 "hex", 902 "home", 903 "http 1.4.0", 904 "http-body-util", 905 "hyper 1.8.1", 906 "hyper-named-pipe", 907 "hyper-rustls 0.27.7", 908 "hyper-util", 909 "hyperlocal", 910 "log", 911 "num", 912 "pin-project-lite", 913 "rand 0.9.2", 914 "rustls 0.23.35", 915 "rustls-native-certs", 916 "rustls-pemfile", 917 "rustls-pki-types", 918 "serde", 919 "serde_derive", 920 "serde_json", 921 "serde_repr", 922 "serde_urlencoded", 923 "thiserror 2.0.17", 924 "tokio", 925 "tokio-stream", 926 "tokio-util", 927 "tonic", 928 "tower-service", 929 "url", 930 "winapi", 931] 932 933[[package]] 934name = "bollard-buildkit-proto" 935version = "0.7.0" 936source = "registry+https://github.com/rust-lang/crates.io-index" 937checksum = "85a885520bf6249ab931a764ffdb87b0ceef48e6e7d807cfdb21b751e086e1ad" 938dependencies = [ 939 "prost", 940 "prost-types", 941 "tonic", 942 "tonic-prost", 943 "ureq", 944] 945 946[[package]] 947name = "bollard-stubs" 948version = "1.49.1-rc.28.4.0" 949source = "registry+https://github.com/rust-lang/crates.io-index" 950checksum = "5731fe885755e92beff1950774068e0cae67ea6ec7587381536fca84f1779623" 951dependencies = [ 952 "base64 0.22.1", 953 "bollard-buildkit-proto", 954 "bytes", 955 "chrono", 956 "prost", 957 "serde", 958 "serde_json", 959 "serde_repr", 960 "serde_with", 961] 962 963[[package]] 964name = "bon" 965version = "3.8.1" 966source = "registry+https://github.com/rust-lang/crates.io-index" 967checksum = "ebeb9aaf9329dff6ceb65c689ca3db33dbf15f324909c60e4e5eef5701ce31b1" 968dependencies = [ 969 "bon-macros", 970 "rustversion", 971] 972 973[[package]] 974name = "bon-macros" 975version = "3.8.1" 976source = "registry+https://github.com/rust-lang/crates.io-index" 977checksum = "77e9d642a7e3a318e37c2c9427b5a6a48aa1ad55dcd986f3034ab2239045a645" 978dependencies = [ 979 "darling", 980 "ident_case", 981 "prettyplease", 982 "proc-macro2", 983 "quote", 984 "rustversion", 985 "syn 2.0.111", 986] 987 988[[package]] 989name = "borsh" 990version = "1.6.0" 991source = "registry+https://github.com/rust-lang/crates.io-index" 992checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f" 993dependencies = [ 994 "cfg_aliases", 995] 996 997[[package]] 998name = "bs58" 999version = "0.5.1" 1000source = "registry+https://github.com/rust-lang/crates.io-index" 1001checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" 1002dependencies = [ 1003 "tinyvec", 1004] 1005 1006[[package]] 1007name = "btree-range-map" 1008version = "0.7.2" 1009source = "registry+https://github.com/rust-lang/crates.io-index" 1010checksum = "1be5c9672446d3800bcbcaabaeba121fe22f1fb25700c4562b22faf76d377c33" 1011dependencies = [ 1012 "btree-slab", 1013 "cc-traits", 1014 "range-traits", 1015 "serde", 1016 "slab", 1017] 1018 1019[[package]] 1020name = "btree-slab" 1021version = "0.6.1" 1022source = "registry+https://github.com/rust-lang/crates.io-index" 1023checksum = "7a2b56d3029f075c4fa892428a098425b86cef5c89ae54073137ece416aef13c" 1024dependencies = [ 1025 "cc-traits", 1026 "slab", 1027 "smallvec", 1028] 1029 1030[[package]] 1031name = "bumpalo" 1032version = "3.19.1" 1033source = "registry+https://github.com/rust-lang/crates.io-index" 1034checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" 1035 1036[[package]] 1037name = "bytemuck" 1038version = "1.24.0" 1039source = "registry+https://github.com/rust-lang/crates.io-index" 1040checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4" 1041 1042[[package]] 1043name = "byteorder" 1044version = "1.5.0" 1045source = "registry+https://github.com/rust-lang/crates.io-index" 1046checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 1047 1048[[package]] 1049name = "byteorder-lite" 1050version = "0.1.0" 1051source = "registry+https://github.com/rust-lang/crates.io-index" 1052checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 1053 1054[[package]] 1055name = "bytes" 1056version = "1.11.0" 1057source = "registry+https://github.com/rust-lang/crates.io-index" 1058checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" 1059dependencies = [ 1060 "serde", 1061] 1062 1063[[package]] 1064name = "bytes-utils" 1065version = "0.1.4" 1066source = "registry+https://github.com/rust-lang/crates.io-index" 1067checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35" 1068dependencies = [ 1069 "bytes", 1070 "either", 1071] 1072 1073[[package]] 1074name = "cbor4ii" 1075version = "0.2.14" 1076source = "registry+https://github.com/rust-lang/crates.io-index" 1077checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4" 1078dependencies = [ 1079 "serde", 1080] 1081 1082[[package]] 1083name = "cc" 1084version = "1.2.50" 1085source = "registry+https://github.com/rust-lang/crates.io-index" 1086checksum = "9f50d563227a1c37cc0a263f64eca3334388c01c5e4c4861a9def205c614383c" 1087dependencies = [ 1088 "find-msvc-tools", 1089 "jobserver", 1090 "libc", 1091 "shlex", 1092] 1093 1094[[package]] 1095name = "cc-traits" 1096version = "2.0.0" 1097source = "registry+https://github.com/rust-lang/crates.io-index" 1098checksum = "060303ef31ef4a522737e1b1ab68c67916f2a787bb2f4f54f383279adba962b5" 1099dependencies = [ 1100 "slab", 1101] 1102 1103[[package]] 1104name = "cfg-if" 1105version = "1.0.4" 1106source = "registry+https://github.com/rust-lang/crates.io-index" 1107checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 1108 1109[[package]] 1110name = "cfg_aliases" 1111version = "0.2.1" 1112source = "registry+https://github.com/rust-lang/crates.io-index" 1113checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 1114 1115[[package]] 1116name = "chrono" 1117version = "0.4.42" 1118source = "registry+https://github.com/rust-lang/crates.io-index" 1119checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" 1120dependencies = [ 1121 "iana-time-zone", 1122 "js-sys", 1123 "num-traits", 1124 "serde", 1125 "wasm-bindgen", 1126 "windows-link", 1127] 1128 1129[[package]] 1130name = "ciborium" 1131version = "0.2.2" 1132source = "registry+https://github.com/rust-lang/crates.io-index" 1133checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 1134dependencies = [ 1135 "ciborium-io", 1136 "ciborium-ll", 1137 "serde", 1138] 1139 1140[[package]] 1141name = "ciborium-io" 1142version = "0.2.2" 1143source = "registry+https://github.com/rust-lang/crates.io-index" 1144checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 1145 1146[[package]] 1147name = "ciborium-ll" 1148version = "0.2.2" 1149source = "registry+https://github.com/rust-lang/crates.io-index" 1150checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 1151dependencies = [ 1152 "ciborium-io", 1153 "half", 1154] 1155 1156[[package]] 1157name = "cid" 1158version = "0.11.1" 1159source = "registry+https://github.com/rust-lang/crates.io-index" 1160checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" 1161dependencies = [ 1162 "core2", 1163 "multibase", 1164 "multihash", 1165 "serde", 1166 "serde_bytes", 1167 "unsigned-varint 0.8.0", 1168] 1169 1170[[package]] 1171name = "cipher" 1172version = "0.4.4" 1173source = "registry+https://github.com/rust-lang/crates.io-index" 1174checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 1175dependencies = [ 1176 "crypto-common", 1177 "inout", 1178] 1179 1180[[package]] 1181name = "cmake" 1182version = "0.1.57" 1183source = "registry+https://github.com/rust-lang/crates.io-index" 1184checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d" 1185dependencies = [ 1186 "cc", 1187] 1188 1189[[package]] 1190name = "cobs" 1191version = "0.3.0" 1192source = "registry+https://github.com/rust-lang/crates.io-index" 1193checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" 1194dependencies = [ 1195 "thiserror 2.0.17", 1196] 1197 1198[[package]] 1199name = "color_quant" 1200version = "1.1.0" 1201source = "registry+https://github.com/rust-lang/crates.io-index" 1202checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 1203 1204[[package]] 1205name = "combine" 1206version = "4.6.7" 1207source = "registry+https://github.com/rust-lang/crates.io-index" 1208checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 1209dependencies = [ 1210 "bytes", 1211 "futures-core", 1212 "memchr", 1213 "pin-project-lite", 1214 "tokio", 1215 "tokio-util", 1216] 1217 1218[[package]] 1219name = "compression-codecs" 1220version = "0.4.35" 1221source = "registry+https://github.com/rust-lang/crates.io-index" 1222checksum = "b0f7ac3e5b97fdce45e8922fb05cae2c37f7bbd63d30dd94821dacfd8f3f2bf2" 1223dependencies = [ 1224 "compression-core", 1225 "flate2", 1226 "memchr", 1227] 1228 1229[[package]] 1230name = "compression-core" 1231version = "0.4.31" 1232source = "registry+https://github.com/rust-lang/crates.io-index" 1233checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d" 1234 1235[[package]] 1236name = "concurrent-queue" 1237version = "2.5.0" 1238source = "registry+https://github.com/rust-lang/crates.io-index" 1239checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 1240dependencies = [ 1241 "crossbeam-utils", 1242] 1243 1244[[package]] 1245name = "const-oid" 1246version = "0.9.6" 1247source = "registry+https://github.com/rust-lang/crates.io-index" 1248checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 1249 1250[[package]] 1251name = "const-str" 1252version = "0.4.3" 1253source = "registry+https://github.com/rust-lang/crates.io-index" 1254checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" 1255 1256[[package]] 1257name = "constant_time_eq" 1258version = "0.3.1" 1259source = "registry+https://github.com/rust-lang/crates.io-index" 1260checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" 1261 1262[[package]] 1263name = "cordyceps" 1264version = "0.3.4" 1265source = "registry+https://github.com/rust-lang/crates.io-index" 1266checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a" 1267dependencies = [ 1268 "loom", 1269 "tracing", 1270] 1271 1272[[package]] 1273name = "core-foundation" 1274version = "0.9.4" 1275source = "registry+https://github.com/rust-lang/crates.io-index" 1276checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 1277dependencies = [ 1278 "core-foundation-sys", 1279 "libc", 1280] 1281 1282[[package]] 1283name = "core-foundation" 1284version = "0.10.1" 1285source = "registry+https://github.com/rust-lang/crates.io-index" 1286checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 1287dependencies = [ 1288 "core-foundation-sys", 1289 "libc", 1290] 1291 1292[[package]] 1293name = "core-foundation-sys" 1294version = "0.8.7" 1295source = "registry+https://github.com/rust-lang/crates.io-index" 1296checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 1297 1298[[package]] 1299name = "core2" 1300version = "0.4.0" 1301source = "registry+https://github.com/rust-lang/crates.io-index" 1302checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 1303dependencies = [ 1304 "memchr", 1305] 1306 1307[[package]] 1308name = "cpufeatures" 1309version = "0.2.17" 1310source = "registry+https://github.com/rust-lang/crates.io-index" 1311checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 1312dependencies = [ 1313 "libc", 1314] 1315 1316[[package]] 1317name = "crc" 1318version = "3.4.0" 1319source = "registry+https://github.com/rust-lang/crates.io-index" 1320checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" 1321dependencies = [ 1322 "crc-catalog", 1323] 1324 1325[[package]] 1326name = "crc-catalog" 1327version = "2.4.0" 1328source = "registry+https://github.com/rust-lang/crates.io-index" 1329checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 1330 1331[[package]] 1332name = "crc-fast" 1333version = "1.6.0" 1334source = "registry+https://github.com/rust-lang/crates.io-index" 1335checksum = "6ddc2d09feefeee8bd78101665bd8645637828fa9317f9f292496dbbd8c65ff3" 1336dependencies = [ 1337 "crc", 1338 "digest", 1339 "rand 0.9.2", 1340 "regex", 1341 "rustversion", 1342] 1343 1344[[package]] 1345name = "crc32fast" 1346version = "1.5.0" 1347source = "registry+https://github.com/rust-lang/crates.io-index" 1348checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 1349dependencies = [ 1350 "cfg-if", 1351] 1352 1353[[package]] 1354name = "critical-section" 1355version = "1.2.0" 1356source = "registry+https://github.com/rust-lang/crates.io-index" 1357checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" 1358 1359[[package]] 1360name = "crossbeam-channel" 1361version = "0.5.15" 1362source = "registry+https://github.com/rust-lang/crates.io-index" 1363checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 1364dependencies = [ 1365 "crossbeam-utils", 1366] 1367 1368[[package]] 1369name = "crossbeam-epoch" 1370version = "0.9.18" 1371source = "registry+https://github.com/rust-lang/crates.io-index" 1372checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1373dependencies = [ 1374 "crossbeam-utils", 1375] 1376 1377[[package]] 1378name = "crossbeam-queue" 1379version = "0.3.12" 1380source = "registry+https://github.com/rust-lang/crates.io-index" 1381checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" 1382dependencies = [ 1383 "crossbeam-utils", 1384] 1385 1386[[package]] 1387name = "crossbeam-utils" 1388version = "0.8.21" 1389source = "registry+https://github.com/rust-lang/crates.io-index" 1390checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 1391 1392[[package]] 1393name = "crunchy" 1394version = "0.2.4" 1395source = "registry+https://github.com/rust-lang/crates.io-index" 1396checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 1397 1398[[package]] 1399name = "crypto-bigint" 1400version = "0.4.9" 1401source = "registry+https://github.com/rust-lang/crates.io-index" 1402checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" 1403dependencies = [ 1404 "generic-array", 1405 "rand_core 0.6.4", 1406 "subtle", 1407 "zeroize", 1408] 1409 1410[[package]] 1411name = "crypto-bigint" 1412version = "0.5.5" 1413source = "registry+https://github.com/rust-lang/crates.io-index" 1414checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 1415dependencies = [ 1416 "generic-array", 1417 "rand_core 0.6.4", 1418 "subtle", 1419 "zeroize", 1420] 1421 1422[[package]] 1423name = "crypto-common" 1424version = "0.1.7" 1425source = "registry+https://github.com/rust-lang/crates.io-index" 1426checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" 1427dependencies = [ 1428 "generic-array", 1429 "rand_core 0.6.4", 1430 "typenum", 1431] 1432 1433[[package]] 1434name = "ctor" 1435version = "0.6.3" 1436source = "registry+https://github.com/rust-lang/crates.io-index" 1437checksum = "424e0138278faeb2b401f174ad17e715c829512d74f3d1e81eb43365c2e0590e" 1438dependencies = [ 1439 "ctor-proc-macro", 1440 "dtor", 1441] 1442 1443[[package]] 1444name = "ctor-proc-macro" 1445version = "0.0.7" 1446source = "registry+https://github.com/rust-lang/crates.io-index" 1447checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1" 1448 1449[[package]] 1450name = "ctr" 1451version = "0.9.2" 1452source = "registry+https://github.com/rust-lang/crates.io-index" 1453checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 1454dependencies = [ 1455 "cipher", 1456] 1457 1458[[package]] 1459name = "curve25519-dalek" 1460version = "4.1.3" 1461source = "registry+https://github.com/rust-lang/crates.io-index" 1462checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" 1463dependencies = [ 1464 "cfg-if", 1465 "cpufeatures", 1466 "curve25519-dalek-derive", 1467 "digest", 1468 "fiat-crypto", 1469 "rustc_version", 1470 "subtle", 1471 "zeroize", 1472] 1473 1474[[package]] 1475name = "curve25519-dalek-derive" 1476version = "0.1.1" 1477source = "registry+https://github.com/rust-lang/crates.io-index" 1478checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 1479dependencies = [ 1480 "proc-macro2", 1481 "quote", 1482 "syn 2.0.111", 1483] 1484 1485[[package]] 1486name = "darling" 1487version = "0.21.3" 1488source = "registry+https://github.com/rust-lang/crates.io-index" 1489checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" 1490dependencies = [ 1491 "darling_core", 1492 "darling_macro", 1493] 1494 1495[[package]] 1496name = "darling_core" 1497version = "0.21.3" 1498source = "registry+https://github.com/rust-lang/crates.io-index" 1499checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" 1500dependencies = [ 1501 "fnv", 1502 "ident_case", 1503 "proc-macro2", 1504 "quote", 1505 "strsim", 1506 "syn 2.0.111", 1507] 1508 1509[[package]] 1510name = "darling_macro" 1511version = "0.21.3" 1512source = "registry+https://github.com/rust-lang/crates.io-index" 1513checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" 1514dependencies = [ 1515 "darling_core", 1516 "quote", 1517 "syn 2.0.111", 1518] 1519 1520[[package]] 1521name = "dashmap" 1522version = "6.1.0" 1523source = "registry+https://github.com/rust-lang/crates.io-index" 1524checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" 1525dependencies = [ 1526 "cfg-if", 1527 "crossbeam-utils", 1528 "hashbrown 0.14.5", 1529 "lock_api", 1530 "once_cell", 1531 "parking_lot_core", 1532] 1533 1534[[package]] 1535name = "data-encoding" 1536version = "2.9.0" 1537source = "registry+https://github.com/rust-lang/crates.io-index" 1538checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 1539 1540[[package]] 1541name = "data-encoding-macro" 1542version = "0.1.18" 1543source = "registry+https://github.com/rust-lang/crates.io-index" 1544checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d" 1545dependencies = [ 1546 "data-encoding", 1547 "data-encoding-macro-internal", 1548] 1549 1550[[package]] 1551name = "data-encoding-macro-internal" 1552version = "0.1.16" 1553source = "registry+https://github.com/rust-lang/crates.io-index" 1554checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" 1555dependencies = [ 1556 "data-encoding", 1557 "syn 2.0.111", 1558] 1559 1560[[package]] 1561name = "deadpool" 1562version = "0.12.3" 1563source = "registry+https://github.com/rust-lang/crates.io-index" 1564checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b" 1565dependencies = [ 1566 "deadpool-runtime", 1567 "lazy_static", 1568 "num_cpus", 1569 "tokio", 1570] 1571 1572[[package]] 1573name = "deadpool-runtime" 1574version = "0.1.4" 1575source = "registry+https://github.com/rust-lang/crates.io-index" 1576checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b" 1577 1578[[package]] 1579name = "der" 1580version = "0.6.1" 1581source = "registry+https://github.com/rust-lang/crates.io-index" 1582checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" 1583dependencies = [ 1584 "const-oid", 1585 "zeroize", 1586] 1587 1588[[package]] 1589name = "der" 1590version = "0.7.10" 1591source = "registry+https://github.com/rust-lang/crates.io-index" 1592checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 1593dependencies = [ 1594 "const-oid", 1595 "pem-rfc7468", 1596 "zeroize", 1597] 1598 1599[[package]] 1600name = "der-parser" 1601version = "9.0.0" 1602source = "registry+https://github.com/rust-lang/crates.io-index" 1603checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" 1604dependencies = [ 1605 "asn1-rs", 1606 "displaydoc", 1607 "nom", 1608 "num-bigint", 1609 "num-traits", 1610 "rusticata-macros", 1611] 1612 1613[[package]] 1614name = "deranged" 1615version = "0.5.5" 1616source = "registry+https://github.com/rust-lang/crates.io-index" 1617checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" 1618dependencies = [ 1619 "powerfmt", 1620 "serde_core", 1621] 1622 1623[[package]] 1624name = "derive_more" 1625version = "1.0.0" 1626source = "registry+https://github.com/rust-lang/crates.io-index" 1627checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" 1628dependencies = [ 1629 "derive_more-impl", 1630] 1631 1632[[package]] 1633name = "derive_more-impl" 1634version = "1.0.0" 1635source = "registry+https://github.com/rust-lang/crates.io-index" 1636checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" 1637dependencies = [ 1638 "proc-macro2", 1639 "quote", 1640 "syn 2.0.111", 1641 "unicode-xid", 1642] 1643 1644[[package]] 1645name = "diatomic-waker" 1646version = "0.2.3" 1647source = "registry+https://github.com/rust-lang/crates.io-index" 1648checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c" 1649 1650[[package]] 1651name = "digest" 1652version = "0.10.7" 1653source = "registry+https://github.com/rust-lang/crates.io-index" 1654checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1655dependencies = [ 1656 "block-buffer", 1657 "const-oid", 1658 "crypto-common", 1659 "subtle", 1660] 1661 1662[[package]] 1663name = "displaydoc" 1664version = "0.2.5" 1665source = "registry+https://github.com/rust-lang/crates.io-index" 1666checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 1667dependencies = [ 1668 "proc-macro2", 1669 "quote", 1670 "syn 2.0.111", 1671] 1672 1673[[package]] 1674name = "docker_credential" 1675version = "1.3.2" 1676source = "registry+https://github.com/rust-lang/crates.io-index" 1677checksum = "1d89dfcba45b4afad7450a99b39e751590463e45c04728cf555d36bb66940de8" 1678dependencies = [ 1679 "base64 0.21.7", 1680 "serde", 1681 "serde_json", 1682] 1683 1684[[package]] 1685name = "dotenvy" 1686version = "0.15.7" 1687source = "registry+https://github.com/rust-lang/crates.io-index" 1688checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 1689 1690[[package]] 1691name = "dtor" 1692version = "0.1.1" 1693source = "registry+https://github.com/rust-lang/crates.io-index" 1694checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301" 1695dependencies = [ 1696 "dtor-proc-macro", 1697] 1698 1699[[package]] 1700name = "dtor-proc-macro" 1701version = "0.0.6" 1702source = "registry+https://github.com/rust-lang/crates.io-index" 1703checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5" 1704 1705[[package]] 1706name = "dunce" 1707version = "1.0.5" 1708source = "registry+https://github.com/rust-lang/crates.io-index" 1709checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" 1710 1711[[package]] 1712name = "dyn-clone" 1713version = "1.0.20" 1714source = "registry+https://github.com/rust-lang/crates.io-index" 1715checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" 1716 1717[[package]] 1718name = "ecdsa" 1719version = "0.14.8" 1720source = "registry+https://github.com/rust-lang/crates.io-index" 1721checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" 1722dependencies = [ 1723 "der 0.6.1", 1724 "elliptic-curve 0.12.3", 1725 "rfc6979 0.3.1", 1726 "signature 1.6.4", 1727] 1728 1729[[package]] 1730name = "ecdsa" 1731version = "0.16.9" 1732source = "registry+https://github.com/rust-lang/crates.io-index" 1733checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 1734dependencies = [ 1735 "der 0.7.10", 1736 "digest", 1737 "elliptic-curve 0.13.8", 1738 "rfc6979 0.4.0", 1739 "signature 2.2.0", 1740 "spki 0.7.3", 1741] 1742 1743[[package]] 1744name = "ed25519" 1745version = "2.2.3" 1746source = "registry+https://github.com/rust-lang/crates.io-index" 1747checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" 1748dependencies = [ 1749 "pkcs8 0.10.2", 1750 "signature 2.2.0", 1751] 1752 1753[[package]] 1754name = "ed25519-dalek" 1755version = "2.2.0" 1756source = "registry+https://github.com/rust-lang/crates.io-index" 1757checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9" 1758dependencies = [ 1759 "curve25519-dalek", 1760 "ed25519", 1761 "rand_core 0.6.4", 1762 "serde", 1763 "sha2", 1764 "subtle", 1765 "zeroize", 1766] 1767 1768[[package]] 1769name = "either" 1770version = "1.15.0" 1771source = "registry+https://github.com/rust-lang/crates.io-index" 1772checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 1773dependencies = [ 1774 "serde", 1775] 1776 1777[[package]] 1778name = "elliptic-curve" 1779version = "0.12.3" 1780source = "registry+https://github.com/rust-lang/crates.io-index" 1781checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" 1782dependencies = [ 1783 "base16ct 0.1.1", 1784 "crypto-bigint 0.4.9", 1785 "der 0.6.1", 1786 "digest", 1787 "ff 0.12.1", 1788 "generic-array", 1789 "group 0.12.1", 1790 "pkcs8 0.9.0", 1791 "rand_core 0.6.4", 1792 "sec1 0.3.0", 1793 "subtle", 1794 "zeroize", 1795] 1796 1797[[package]] 1798name = "elliptic-curve" 1799version = "0.13.8" 1800source = "registry+https://github.com/rust-lang/crates.io-index" 1801checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 1802dependencies = [ 1803 "base16ct 0.2.0", 1804 "crypto-bigint 0.5.5", 1805 "digest", 1806 "ff 0.13.1", 1807 "generic-array", 1808 "group 0.13.0", 1809 "hkdf", 1810 "pem-rfc7468", 1811 "pkcs8 0.10.2", 1812 "rand_core 0.6.4", 1813 "sec1 0.7.3", 1814 "subtle", 1815 "zeroize", 1816] 1817 1818[[package]] 1819name = "embedded-io" 1820version = "0.4.0" 1821source = "registry+https://github.com/rust-lang/crates.io-index" 1822checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" 1823 1824[[package]] 1825name = "embedded-io" 1826version = "0.6.1" 1827source = "registry+https://github.com/rust-lang/crates.io-index" 1828checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" 1829 1830[[package]] 1831name = "encoding_rs" 1832version = "0.8.35" 1833source = "registry+https://github.com/rust-lang/crates.io-index" 1834checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 1835dependencies = [ 1836 "cfg-if", 1837] 1838 1839[[package]] 1840name = "enum-as-inner" 1841version = "0.6.1" 1842source = "registry+https://github.com/rust-lang/crates.io-index" 1843checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" 1844dependencies = [ 1845 "heck 0.5.0", 1846 "proc-macro2", 1847 "quote", 1848 "syn 2.0.111", 1849] 1850 1851[[package]] 1852name = "equivalent" 1853version = "1.0.2" 1854source = "registry+https://github.com/rust-lang/crates.io-index" 1855checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 1856 1857[[package]] 1858name = "errno" 1859version = "0.3.14" 1860source = "registry+https://github.com/rust-lang/crates.io-index" 1861checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 1862dependencies = [ 1863 "libc", 1864 "windows-sys 0.61.2", 1865] 1866 1867[[package]] 1868name = "etcetera" 1869version = "0.8.0" 1870source = "registry+https://github.com/rust-lang/crates.io-index" 1871checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" 1872dependencies = [ 1873 "cfg-if", 1874 "home", 1875 "windows-sys 0.48.0", 1876] 1877 1878[[package]] 1879name = "etcetera" 1880version = "0.11.0" 1881source = "registry+https://github.com/rust-lang/crates.io-index" 1882checksum = "de48cc4d1c1d97a20fd819def54b890cadde72ed3ad0c614822a0a433361be96" 1883dependencies = [ 1884 "cfg-if", 1885 "windows-sys 0.61.2", 1886] 1887 1888[[package]] 1889name = "event-listener" 1890version = "5.4.1" 1891source = "registry+https://github.com/rust-lang/crates.io-index" 1892checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 1893dependencies = [ 1894 "concurrent-queue", 1895 "parking", 1896 "pin-project-lite", 1897] 1898 1899[[package]] 1900name = "fastrand" 1901version = "2.3.0" 1902source = "registry+https://github.com/rust-lang/crates.io-index" 1903checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 1904 1905[[package]] 1906name = "fdeflate" 1907version = "0.3.7" 1908source = "registry+https://github.com/rust-lang/crates.io-index" 1909checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" 1910dependencies = [ 1911 "simd-adler32", 1912] 1913 1914[[package]] 1915name = "ferroid" 1916version = "0.8.8" 1917source = "registry+https://github.com/rust-lang/crates.io-index" 1918checksum = "ce161062fb044bd629c2393590efd47cab8d0241faf15704ffb0d47b7b4e4a35" 1919dependencies = [ 1920 "portable-atomic", 1921 "rand 0.9.2", 1922 "web-time", 1923] 1924 1925[[package]] 1926name = "ff" 1927version = "0.12.1" 1928source = "registry+https://github.com/rust-lang/crates.io-index" 1929checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" 1930dependencies = [ 1931 "rand_core 0.6.4", 1932 "subtle", 1933] 1934 1935[[package]] 1936name = "ff" 1937version = "0.13.1" 1938source = "registry+https://github.com/rust-lang/crates.io-index" 1939checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" 1940dependencies = [ 1941 "rand_core 0.6.4", 1942 "subtle", 1943] 1944 1945[[package]] 1946name = "fiat-crypto" 1947version = "0.2.9" 1948source = "registry+https://github.com/rust-lang/crates.io-index" 1949checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" 1950 1951[[package]] 1952name = "filetime" 1953version = "0.2.26" 1954source = "registry+https://github.com/rust-lang/crates.io-index" 1955checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" 1956dependencies = [ 1957 "cfg-if", 1958 "libc", 1959 "libredox", 1960 "windows-sys 0.60.2", 1961] 1962 1963[[package]] 1964name = "find-msvc-tools" 1965version = "0.1.5" 1966source = "registry+https://github.com/rust-lang/crates.io-index" 1967checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844" 1968 1969[[package]] 1970name = "flate2" 1971version = "1.1.5" 1972source = "registry+https://github.com/rust-lang/crates.io-index" 1973checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" 1974dependencies = [ 1975 "crc32fast", 1976 "miniz_oxide", 1977] 1978 1979[[package]] 1980name = "flume" 1981version = "0.11.1" 1982source = "registry+https://github.com/rust-lang/crates.io-index" 1983checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" 1984dependencies = [ 1985 "futures-core", 1986 "futures-sink", 1987 "spin 0.9.8", 1988] 1989 1990[[package]] 1991name = "fnv" 1992version = "1.0.7" 1993source = "registry+https://github.com/rust-lang/crates.io-index" 1994checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1995 1996[[package]] 1997name = "foldhash" 1998version = "0.1.5" 1999source = "registry+https://github.com/rust-lang/crates.io-index" 2000checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 2001 2002[[package]] 2003name = "foldhash" 2004version = "0.2.0" 2005source = "registry+https://github.com/rust-lang/crates.io-index" 2006checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" 2007 2008[[package]] 2009name = "foreign-types" 2010version = "0.3.2" 2011source = "registry+https://github.com/rust-lang/crates.io-index" 2012checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 2013dependencies = [ 2014 "foreign-types-shared", 2015] 2016 2017[[package]] 2018name = "foreign-types-shared" 2019version = "0.1.1" 2020source = "registry+https://github.com/rust-lang/crates.io-index" 2021checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 2022 2023[[package]] 2024name = "form_urlencoded" 2025version = "1.2.2" 2026source = "registry+https://github.com/rust-lang/crates.io-index" 2027checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 2028dependencies = [ 2029 "percent-encoding", 2030] 2031 2032[[package]] 2033name = "fs_extra" 2034version = "1.3.0" 2035source = "registry+https://github.com/rust-lang/crates.io-index" 2036checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" 2037 2038[[package]] 2039name = "futf" 2040version = "0.1.5" 2041source = "registry+https://github.com/rust-lang/crates.io-index" 2042checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 2043dependencies = [ 2044 "mac", 2045 "new_debug_unreachable", 2046] 2047 2048[[package]] 2049name = "futures" 2050version = "0.3.31" 2051source = "registry+https://github.com/rust-lang/crates.io-index" 2052checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 2053dependencies = [ 2054 "futures-channel", 2055 "futures-core", 2056 "futures-executor", 2057 "futures-io", 2058 "futures-sink", 2059 "futures-task", 2060 "futures-util", 2061] 2062 2063[[package]] 2064name = "futures-buffered" 2065version = "0.2.12" 2066source = "registry+https://github.com/rust-lang/crates.io-index" 2067checksum = "a8e0e1f38ec07ba4abbde21eed377082f17ccb988be9d988a5adbf4bafc118fd" 2068dependencies = [ 2069 "cordyceps", 2070 "diatomic-waker", 2071 "futures-core", 2072 "pin-project-lite", 2073 "spin 0.10.0", 2074] 2075 2076[[package]] 2077name = "futures-channel" 2078version = "0.3.31" 2079source = "registry+https://github.com/rust-lang/crates.io-index" 2080checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 2081dependencies = [ 2082 "futures-core", 2083 "futures-sink", 2084] 2085 2086[[package]] 2087name = "futures-core" 2088version = "0.3.31" 2089source = "registry+https://github.com/rust-lang/crates.io-index" 2090checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 2091 2092[[package]] 2093name = "futures-executor" 2094version = "0.3.31" 2095source = "registry+https://github.com/rust-lang/crates.io-index" 2096checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 2097dependencies = [ 2098 "futures-core", 2099 "futures-task", 2100 "futures-util", 2101] 2102 2103[[package]] 2104name = "futures-intrusive" 2105version = "0.5.0" 2106source = "registry+https://github.com/rust-lang/crates.io-index" 2107checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" 2108dependencies = [ 2109 "futures-core", 2110 "lock_api", 2111 "parking_lot", 2112] 2113 2114[[package]] 2115name = "futures-io" 2116version = "0.3.31" 2117source = "registry+https://github.com/rust-lang/crates.io-index" 2118checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 2119 2120[[package]] 2121name = "futures-lite" 2122version = "2.6.1" 2123source = "registry+https://github.com/rust-lang/crates.io-index" 2124checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 2125dependencies = [ 2126 "fastrand", 2127 "futures-core", 2128 "futures-io", 2129 "parking", 2130 "pin-project-lite", 2131] 2132 2133[[package]] 2134name = "futures-macro" 2135version = "0.3.31" 2136source = "registry+https://github.com/rust-lang/crates.io-index" 2137checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 2138dependencies = [ 2139 "proc-macro2", 2140 "quote", 2141 "syn 2.0.111", 2142] 2143 2144[[package]] 2145name = "futures-sink" 2146version = "0.3.31" 2147source = "registry+https://github.com/rust-lang/crates.io-index" 2148checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 2149 2150[[package]] 2151name = "futures-task" 2152version = "0.3.31" 2153source = "registry+https://github.com/rust-lang/crates.io-index" 2154checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 2155 2156[[package]] 2157name = "futures-timer" 2158version = "3.0.3" 2159source = "registry+https://github.com/rust-lang/crates.io-index" 2160checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" 2161 2162[[package]] 2163name = "futures-util" 2164version = "0.3.31" 2165source = "registry+https://github.com/rust-lang/crates.io-index" 2166checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 2167dependencies = [ 2168 "futures-channel", 2169 "futures-core", 2170 "futures-io", 2171 "futures-macro", 2172 "futures-sink", 2173 "futures-task", 2174 "memchr", 2175 "pin-project-lite", 2176 "pin-utils", 2177 "slab", 2178] 2179 2180[[package]] 2181name = "generator" 2182version = "0.8.8" 2183source = "registry+https://github.com/rust-lang/crates.io-index" 2184checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9" 2185dependencies = [ 2186 "cc", 2187 "cfg-if", 2188 "libc", 2189 "log", 2190 "rustversion", 2191 "windows-link", 2192 "windows-result", 2193] 2194 2195[[package]] 2196name = "generic-array" 2197version = "0.14.7" 2198source = "registry+https://github.com/rust-lang/crates.io-index" 2199checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 2200dependencies = [ 2201 "typenum", 2202 "version_check", 2203 "zeroize", 2204] 2205 2206[[package]] 2207name = "getrandom" 2208version = "0.2.16" 2209source = "registry+https://github.com/rust-lang/crates.io-index" 2210checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 2211dependencies = [ 2212 "cfg-if", 2213 "js-sys", 2214 "libc", 2215 "wasi", 2216 "wasm-bindgen", 2217] 2218 2219[[package]] 2220name = "getrandom" 2221version = "0.3.4" 2222source = "registry+https://github.com/rust-lang/crates.io-index" 2223checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 2224dependencies = [ 2225 "cfg-if", 2226 "js-sys", 2227 "libc", 2228 "r-efi", 2229 "wasip2", 2230 "wasm-bindgen", 2231] 2232 2233[[package]] 2234name = "ghash" 2235version = "0.5.1" 2236source = "registry+https://github.com/rust-lang/crates.io-index" 2237checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" 2238dependencies = [ 2239 "opaque-debug", 2240 "polyval", 2241] 2242 2243[[package]] 2244name = "gif" 2245version = "0.14.1" 2246source = "registry+https://github.com/rust-lang/crates.io-index" 2247checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e" 2248dependencies = [ 2249 "color_quant", 2250 "weezl", 2251] 2252 2253[[package]] 2254name = "gloo-storage" 2255version = "0.3.0" 2256source = "registry+https://github.com/rust-lang/crates.io-index" 2257checksum = "fbc8031e8c92758af912f9bc08fbbadd3c6f3cfcbf6b64cdf3d6a81f0139277a" 2258dependencies = [ 2259 "gloo-utils", 2260 "js-sys", 2261 "serde", 2262 "serde_json", 2263 "thiserror 1.0.69", 2264 "wasm-bindgen", 2265 "web-sys", 2266] 2267 2268[[package]] 2269name = "gloo-utils" 2270version = "0.2.0" 2271source = "registry+https://github.com/rust-lang/crates.io-index" 2272checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa" 2273dependencies = [ 2274 "js-sys", 2275 "serde", 2276 "serde_json", 2277 "wasm-bindgen", 2278 "web-sys", 2279] 2280 2281[[package]] 2282name = "governor" 2283version = "0.10.4" 2284source = "registry+https://github.com/rust-lang/crates.io-index" 2285checksum = "9efcab3c1958580ff1f25a2a41be1668f7603d849bb63af523b208a3cc1223b8" 2286dependencies = [ 2287 "cfg-if", 2288 "dashmap", 2289 "futures-sink", 2290 "futures-timer", 2291 "futures-util", 2292 "getrandom 0.3.4", 2293 "hashbrown 0.16.1", 2294 "nonzero_ext", 2295 "parking_lot", 2296 "portable-atomic", 2297 "quanta", 2298 "rand 0.9.2", 2299 "smallvec", 2300 "spinning_top", 2301 "web-time", 2302] 2303 2304[[package]] 2305name = "group" 2306version = "0.12.1" 2307source = "registry+https://github.com/rust-lang/crates.io-index" 2308checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" 2309dependencies = [ 2310 "ff 0.12.1", 2311 "rand_core 0.6.4", 2312 "subtle", 2313] 2314 2315[[package]] 2316name = "group" 2317version = "0.13.0" 2318source = "registry+https://github.com/rust-lang/crates.io-index" 2319checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 2320dependencies = [ 2321 "ff 0.13.1", 2322 "rand_core 0.6.4", 2323 "subtle", 2324] 2325 2326[[package]] 2327name = "h2" 2328version = "0.3.27" 2329source = "registry+https://github.com/rust-lang/crates.io-index" 2330checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d" 2331dependencies = [ 2332 "bytes", 2333 "fnv", 2334 "futures-core", 2335 "futures-sink", 2336 "futures-util", 2337 "http 0.2.12", 2338 "indexmap 2.12.1", 2339 "slab", 2340 "tokio", 2341 "tokio-util", 2342 "tracing", 2343] 2344 2345[[package]] 2346name = "h2" 2347version = "0.4.12" 2348source = "registry+https://github.com/rust-lang/crates.io-index" 2349checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" 2350dependencies = [ 2351 "atomic-waker", 2352 "bytes", 2353 "fnv", 2354 "futures-core", 2355 "futures-sink", 2356 "http 1.4.0", 2357 "indexmap 2.12.1", 2358 "slab", 2359 "tokio", 2360 "tokio-util", 2361 "tracing", 2362] 2363 2364[[package]] 2365name = "half" 2366version = "2.7.1" 2367source = "registry+https://github.com/rust-lang/crates.io-index" 2368checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" 2369dependencies = [ 2370 "cfg-if", 2371 "crunchy", 2372 "zerocopy", 2373] 2374 2375[[package]] 2376name = "hash32" 2377version = "0.2.1" 2378source = "registry+https://github.com/rust-lang/crates.io-index" 2379checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67" 2380dependencies = [ 2381 "byteorder", 2382] 2383 2384[[package]] 2385name = "hashbrown" 2386version = "0.12.3" 2387source = "registry+https://github.com/rust-lang/crates.io-index" 2388checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2389 2390[[package]] 2391name = "hashbrown" 2392version = "0.14.5" 2393source = "registry+https://github.com/rust-lang/crates.io-index" 2394checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 2395 2396[[package]] 2397name = "hashbrown" 2398version = "0.15.5" 2399source = "registry+https://github.com/rust-lang/crates.io-index" 2400checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 2401dependencies = [ 2402 "allocator-api2", 2403 "equivalent", 2404 "foldhash 0.1.5", 2405] 2406 2407[[package]] 2408name = "hashbrown" 2409version = "0.16.1" 2410source = "registry+https://github.com/rust-lang/crates.io-index" 2411checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 2412dependencies = [ 2413 "allocator-api2", 2414 "equivalent", 2415 "foldhash 0.2.0", 2416] 2417 2418[[package]] 2419name = "hashlink" 2420version = "0.10.0" 2421source = "registry+https://github.com/rust-lang/crates.io-index" 2422checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1" 2423dependencies = [ 2424 "hashbrown 0.15.5", 2425] 2426 2427[[package]] 2428name = "heapless" 2429version = "0.7.17" 2430source = "registry+https://github.com/rust-lang/crates.io-index" 2431checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f" 2432dependencies = [ 2433 "atomic-polyfill", 2434 "hash32", 2435 "rustc_version", 2436 "serde", 2437 "spin 0.9.8", 2438 "stable_deref_trait", 2439] 2440 2441[[package]] 2442name = "heck" 2443version = "0.4.1" 2444source = "registry+https://github.com/rust-lang/crates.io-index" 2445checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 2446 2447[[package]] 2448name = "heck" 2449version = "0.5.0" 2450source = "registry+https://github.com/rust-lang/crates.io-index" 2451checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 2452 2453[[package]] 2454name = "hermit-abi" 2455version = "0.5.2" 2456source = "registry+https://github.com/rust-lang/crates.io-index" 2457checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 2458 2459[[package]] 2460name = "hex" 2461version = "0.4.3" 2462source = "registry+https://github.com/rust-lang/crates.io-index" 2463checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2464 2465[[package]] 2466name = "hex_fmt" 2467version = "0.3.0" 2468source = "registry+https://github.com/rust-lang/crates.io-index" 2469checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f" 2470 2471[[package]] 2472name = "hickory-proto" 2473version = "0.24.4" 2474source = "registry+https://github.com/rust-lang/crates.io-index" 2475checksum = "92652067c9ce6f66ce53cc38d1169daa36e6e7eb7dd3b63b5103bd9d97117248" 2476dependencies = [ 2477 "async-trait", 2478 "cfg-if", 2479 "data-encoding", 2480 "enum-as-inner", 2481 "futures-channel", 2482 "futures-io", 2483 "futures-util", 2484 "idna", 2485 "ipnet", 2486 "once_cell", 2487 "rand 0.8.5", 2488 "thiserror 1.0.69", 2489 "tinyvec", 2490 "tokio", 2491 "tracing", 2492 "url", 2493] 2494 2495[[package]] 2496name = "hickory-resolver" 2497version = "0.24.4" 2498source = "registry+https://github.com/rust-lang/crates.io-index" 2499checksum = "cbb117a1ca520e111743ab2f6688eddee69db4e0ea242545a604dce8a66fd22e" 2500dependencies = [ 2501 "cfg-if", 2502 "futures-util", 2503 "hickory-proto", 2504 "ipconfig", 2505 "lru-cache", 2506 "once_cell", 2507 "parking_lot", 2508 "rand 0.8.5", 2509 "resolv-conf", 2510 "smallvec", 2511 "thiserror 1.0.69", 2512 "tokio", 2513 "tracing", 2514] 2515 2516[[package]] 2517name = "hkdf" 2518version = "0.12.4" 2519source = "registry+https://github.com/rust-lang/crates.io-index" 2520checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 2521dependencies = [ 2522 "hmac", 2523] 2524 2525[[package]] 2526name = "hmac" 2527version = "0.12.1" 2528source = "registry+https://github.com/rust-lang/crates.io-index" 2529checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2530dependencies = [ 2531 "digest", 2532] 2533 2534[[package]] 2535name = "home" 2536version = "0.5.12" 2537source = "registry+https://github.com/rust-lang/crates.io-index" 2538checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" 2539dependencies = [ 2540 "windows-sys 0.61.2", 2541] 2542 2543[[package]] 2544name = "html5ever" 2545version = "0.27.0" 2546source = "registry+https://github.com/rust-lang/crates.io-index" 2547checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4" 2548dependencies = [ 2549 "log", 2550 "mac", 2551 "markup5ever", 2552 "proc-macro2", 2553 "quote", 2554 "syn 2.0.111", 2555] 2556 2557[[package]] 2558name = "http" 2559version = "0.2.12" 2560source = "registry+https://github.com/rust-lang/crates.io-index" 2561checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 2562dependencies = [ 2563 "bytes", 2564 "fnv", 2565 "itoa", 2566] 2567 2568[[package]] 2569name = "http" 2570version = "1.4.0" 2571source = "registry+https://github.com/rust-lang/crates.io-index" 2572checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" 2573dependencies = [ 2574 "bytes", 2575 "itoa", 2576] 2577 2578[[package]] 2579name = "http-body" 2580version = "0.4.6" 2581source = "registry+https://github.com/rust-lang/crates.io-index" 2582checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 2583dependencies = [ 2584 "bytes", 2585 "http 0.2.12", 2586 "pin-project-lite", 2587] 2588 2589[[package]] 2590name = "http-body" 2591version = "1.0.1" 2592source = "registry+https://github.com/rust-lang/crates.io-index" 2593checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 2594dependencies = [ 2595 "bytes", 2596 "http 1.4.0", 2597] 2598 2599[[package]] 2600name = "http-body-util" 2601version = "0.1.3" 2602source = "registry+https://github.com/rust-lang/crates.io-index" 2603checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 2604dependencies = [ 2605 "bytes", 2606 "futures-core", 2607 "http 1.4.0", 2608 "http-body 1.0.1", 2609 "pin-project-lite", 2610] 2611 2612[[package]] 2613name = "http-range-header" 2614version = "0.4.2" 2615source = "registry+https://github.com/rust-lang/crates.io-index" 2616checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c" 2617 2618[[package]] 2619name = "httparse" 2620version = "1.10.1" 2621source = "registry+https://github.com/rust-lang/crates.io-index" 2622checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 2623 2624[[package]] 2625name = "httpdate" 2626version = "1.0.3" 2627source = "registry+https://github.com/rust-lang/crates.io-index" 2628checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 2629 2630[[package]] 2631name = "hyper" 2632version = "0.14.32" 2633source = "registry+https://github.com/rust-lang/crates.io-index" 2634checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" 2635dependencies = [ 2636 "bytes", 2637 "futures-channel", 2638 "futures-core", 2639 "futures-util", 2640 "h2 0.3.27", 2641 "http 0.2.12", 2642 "http-body 0.4.6", 2643 "httparse", 2644 "httpdate", 2645 "itoa", 2646 "pin-project-lite", 2647 "socket2 0.5.10", 2648 "tokio", 2649 "tower-service", 2650 "tracing", 2651 "want", 2652] 2653 2654[[package]] 2655name = "hyper" 2656version = "1.8.1" 2657source = "registry+https://github.com/rust-lang/crates.io-index" 2658checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" 2659dependencies = [ 2660 "atomic-waker", 2661 "bytes", 2662 "futures-channel", 2663 "futures-core", 2664 "h2 0.4.12", 2665 "http 1.4.0", 2666 "http-body 1.0.1", 2667 "httparse", 2668 "httpdate", 2669 "itoa", 2670 "pin-project-lite", 2671 "pin-utils", 2672 "smallvec", 2673 "tokio", 2674 "want", 2675] 2676 2677[[package]] 2678name = "hyper-named-pipe" 2679version = "0.1.0" 2680source = "registry+https://github.com/rust-lang/crates.io-index" 2681checksum = "73b7d8abf35697b81a825e386fc151e0d503e8cb5fcb93cc8669c376dfd6f278" 2682dependencies = [ 2683 "hex", 2684 "hyper 1.8.1", 2685 "hyper-util", 2686 "pin-project-lite", 2687 "tokio", 2688 "tower-service", 2689 "winapi", 2690] 2691 2692[[package]] 2693name = "hyper-rustls" 2694version = "0.24.2" 2695source = "registry+https://github.com/rust-lang/crates.io-index" 2696checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 2697dependencies = [ 2698 "futures-util", 2699 "http 0.2.12", 2700 "hyper 0.14.32", 2701 "log", 2702 "rustls 0.21.12", 2703 "tokio", 2704 "tokio-rustls 0.24.1", 2705] 2706 2707[[package]] 2708name = "hyper-rustls" 2709version = "0.27.7" 2710source = "registry+https://github.com/rust-lang/crates.io-index" 2711checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 2712dependencies = [ 2713 "http 1.4.0", 2714 "hyper 1.8.1", 2715 "hyper-util", 2716 "rustls 0.23.35", 2717 "rustls-native-certs", 2718 "rustls-pki-types", 2719 "tokio", 2720 "tokio-rustls 0.26.4", 2721 "tower-service", 2722 "webpki-roots 1.0.4", 2723] 2724 2725[[package]] 2726name = "hyper-timeout" 2727version = "0.5.2" 2728source = "registry+https://github.com/rust-lang/crates.io-index" 2729checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" 2730dependencies = [ 2731 "hyper 1.8.1", 2732 "hyper-util", 2733 "pin-project-lite", 2734 "tokio", 2735 "tower-service", 2736] 2737 2738[[package]] 2739name = "hyper-tls" 2740version = "0.6.0" 2741source = "registry+https://github.com/rust-lang/crates.io-index" 2742checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 2743dependencies = [ 2744 "bytes", 2745 "http-body-util", 2746 "hyper 1.8.1", 2747 "hyper-util", 2748 "native-tls", 2749 "tokio", 2750 "tokio-native-tls", 2751 "tower-service", 2752] 2753 2754[[package]] 2755name = "hyper-util" 2756version = "0.1.19" 2757source = "registry+https://github.com/rust-lang/crates.io-index" 2758checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" 2759dependencies = [ 2760 "base64 0.22.1", 2761 "bytes", 2762 "futures-channel", 2763 "futures-core", 2764 "futures-util", 2765 "http 1.4.0", 2766 "http-body 1.0.1", 2767 "hyper 1.8.1", 2768 "ipnet", 2769 "libc", 2770 "percent-encoding", 2771 "pin-project-lite", 2772 "socket2 0.6.1", 2773 "system-configuration", 2774 "tokio", 2775 "tower-service", 2776 "tracing", 2777 "windows-registry", 2778] 2779 2780[[package]] 2781name = "hyperlocal" 2782version = "0.9.1" 2783source = "registry+https://github.com/rust-lang/crates.io-index" 2784checksum = "986c5ce3b994526b3cd75578e62554abd09f0899d6206de48b3e96ab34ccc8c7" 2785dependencies = [ 2786 "hex", 2787 "http-body-util", 2788 "hyper 1.8.1", 2789 "hyper-util", 2790 "pin-project-lite", 2791 "tokio", 2792 "tower-service", 2793] 2794 2795[[package]] 2796name = "iana-time-zone" 2797version = "0.1.64" 2798source = "registry+https://github.com/rust-lang/crates.io-index" 2799checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" 2800dependencies = [ 2801 "android_system_properties", 2802 "core-foundation-sys", 2803 "iana-time-zone-haiku", 2804 "js-sys", 2805 "log", 2806 "wasm-bindgen", 2807 "windows-core", 2808] 2809 2810[[package]] 2811name = "iana-time-zone-haiku" 2812version = "0.1.2" 2813source = "registry+https://github.com/rust-lang/crates.io-index" 2814checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 2815dependencies = [ 2816 "cc", 2817] 2818 2819[[package]] 2820name = "icu_collections" 2821version = "2.1.1" 2822source = "registry+https://github.com/rust-lang/crates.io-index" 2823checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" 2824dependencies = [ 2825 "displaydoc", 2826 "potential_utf", 2827 "yoke", 2828 "zerofrom", 2829 "zerovec", 2830] 2831 2832[[package]] 2833name = "icu_locale_core" 2834version = "2.1.1" 2835source = "registry+https://github.com/rust-lang/crates.io-index" 2836checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" 2837dependencies = [ 2838 "displaydoc", 2839 "litemap", 2840 "tinystr", 2841 "writeable", 2842 "zerovec", 2843] 2844 2845[[package]] 2846name = "icu_normalizer" 2847version = "2.1.1" 2848source = "registry+https://github.com/rust-lang/crates.io-index" 2849checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" 2850dependencies = [ 2851 "icu_collections", 2852 "icu_normalizer_data", 2853 "icu_properties", 2854 "icu_provider", 2855 "smallvec", 2856 "zerovec", 2857] 2858 2859[[package]] 2860name = "icu_normalizer_data" 2861version = "2.1.1" 2862source = "registry+https://github.com/rust-lang/crates.io-index" 2863checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" 2864 2865[[package]] 2866name = "icu_properties" 2867version = "2.1.2" 2868source = "registry+https://github.com/rust-lang/crates.io-index" 2869checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" 2870dependencies = [ 2871 "icu_collections", 2872 "icu_locale_core", 2873 "icu_properties_data", 2874 "icu_provider", 2875 "zerotrie", 2876 "zerovec", 2877] 2878 2879[[package]] 2880name = "icu_properties_data" 2881version = "2.1.2" 2882source = "registry+https://github.com/rust-lang/crates.io-index" 2883checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" 2884 2885[[package]] 2886name = "icu_provider" 2887version = "2.1.1" 2888source = "registry+https://github.com/rust-lang/crates.io-index" 2889checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" 2890dependencies = [ 2891 "displaydoc", 2892 "icu_locale_core", 2893 "writeable", 2894 "yoke", 2895 "zerofrom", 2896 "zerotrie", 2897 "zerovec", 2898] 2899 2900[[package]] 2901name = "ident_case" 2902version = "1.0.1" 2903source = "registry+https://github.com/rust-lang/crates.io-index" 2904checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2905 2906[[package]] 2907name = "idna" 2908version = "1.1.0" 2909source = "registry+https://github.com/rust-lang/crates.io-index" 2910checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 2911dependencies = [ 2912 "idna_adapter", 2913 "smallvec", 2914 "utf8_iter", 2915] 2916 2917[[package]] 2918name = "idna_adapter" 2919version = "1.2.1" 2920source = "registry+https://github.com/rust-lang/crates.io-index" 2921checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 2922dependencies = [ 2923 "icu_normalizer", 2924 "icu_properties", 2925] 2926 2927[[package]] 2928name = "image" 2929version = "0.25.9" 2930source = "registry+https://github.com/rust-lang/crates.io-index" 2931checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a" 2932dependencies = [ 2933 "bytemuck", 2934 "byteorder-lite", 2935 "color_quant", 2936 "gif", 2937 "image-webp", 2938 "moxcms", 2939 "num-traits", 2940 "png", 2941 "zune-core", 2942 "zune-jpeg", 2943] 2944 2945[[package]] 2946name = "image-webp" 2947version = "0.2.4" 2948source = "registry+https://github.com/rust-lang/crates.io-index" 2949checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3" 2950dependencies = [ 2951 "byteorder-lite", 2952 "quick-error", 2953] 2954 2955[[package]] 2956name = "indexmap" 2957version = "1.9.3" 2958source = "registry+https://github.com/rust-lang/crates.io-index" 2959checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 2960dependencies = [ 2961 "autocfg", 2962 "hashbrown 0.12.3", 2963 "serde", 2964] 2965 2966[[package]] 2967name = "indexmap" 2968version = "2.12.1" 2969source = "registry+https://github.com/rust-lang/crates.io-index" 2970checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2" 2971dependencies = [ 2972 "equivalent", 2973 "hashbrown 0.16.1", 2974 "serde", 2975 "serde_core", 2976] 2977 2978[[package]] 2979name = "indoc" 2980version = "2.0.7" 2981source = "registry+https://github.com/rust-lang/crates.io-index" 2982checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706" 2983dependencies = [ 2984 "rustversion", 2985] 2986 2987[[package]] 2988name = "inout" 2989version = "0.1.4" 2990source = "registry+https://github.com/rust-lang/crates.io-index" 2991checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" 2992dependencies = [ 2993 "generic-array", 2994] 2995 2996[[package]] 2997name = "inventory" 2998version = "0.3.21" 2999source = "registry+https://github.com/rust-lang/crates.io-index" 3000checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e" 3001dependencies = [ 3002 "rustversion", 3003] 3004 3005[[package]] 3006name = "ipconfig" 3007version = "0.3.2" 3008source = "registry+https://github.com/rust-lang/crates.io-index" 3009checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 3010dependencies = [ 3011 "socket2 0.5.10", 3012 "widestring", 3013 "windows-sys 0.48.0", 3014 "winreg", 3015] 3016 3017[[package]] 3018name = "ipld-core" 3019version = "0.4.2" 3020source = "registry+https://github.com/rust-lang/crates.io-index" 3021checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db" 3022dependencies = [ 3023 "cid", 3024 "serde", 3025 "serde_bytes", 3026] 3027 3028[[package]] 3029name = "ipnet" 3030version = "2.11.0" 3031source = "registry+https://github.com/rust-lang/crates.io-index" 3032checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 3033 3034[[package]] 3035name = "iri-string" 3036version = "0.7.9" 3037source = "registry+https://github.com/rust-lang/crates.io-index" 3038checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397" 3039dependencies = [ 3040 "memchr", 3041 "serde", 3042] 3043 3044[[package]] 3045name = "iroh-car" 3046version = "0.5.1" 3047source = "registry+https://github.com/rust-lang/crates.io-index" 3048checksum = "cb7f8cd4cb9aa083fba8b52e921764252d0b4dcb1cd6d120b809dbfe1106e81a" 3049dependencies = [ 3050 "anyhow", 3051 "cid", 3052 "futures", 3053 "serde", 3054 "serde_ipld_dagcbor", 3055 "thiserror 1.0.69", 3056 "tokio", 3057 "unsigned-varint 0.7.2", 3058] 3059 3060[[package]] 3061name = "itertools" 3062version = "0.14.0" 3063source = "registry+https://github.com/rust-lang/crates.io-index" 3064checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 3065dependencies = [ 3066 "either", 3067] 3068 3069[[package]] 3070name = "itoa" 3071version = "1.0.16" 3072source = "registry+https://github.com/rust-lang/crates.io-index" 3073checksum = "7ee5b5339afb4c41626dde77b7a611bd4f2c202b897852b4bcf5d03eddc61010" 3074 3075[[package]] 3076name = "jacquard" 3077version = "0.9.5" 3078source = "registry+https://github.com/rust-lang/crates.io-index" 3079checksum = "f7c1fdbcf1153e6e6b87fde20036c1ffe7473c4852f1c6369bc4ef1fe47ccb9f" 3080dependencies = [ 3081 "bytes", 3082 "getrandom 0.2.16", 3083 "gloo-storage", 3084 "http 1.4.0", 3085 "jacquard-api", 3086 "jacquard-common", 3087 "jacquard-derive", 3088 "jacquard-identity", 3089 "jacquard-oauth", 3090 "jose-jwk", 3091 "miette", 3092 "regex", 3093 "regex-lite", 3094 "reqwest", 3095 "serde", 3096 "serde_html_form", 3097 "serde_json", 3098 "smol_str", 3099 "thiserror 2.0.17", 3100 "tokio", 3101 "trait-variant", 3102 "url", 3103 "webpage", 3104] 3105 3106[[package]] 3107name = "jacquard-api" 3108version = "0.9.5" 3109source = "registry+https://github.com/rust-lang/crates.io-index" 3110checksum = "4979fb1848c1dd7ac8fd12745bc71f56f6da61374407d5f9b06005467a954e5a" 3111dependencies = [ 3112 "bon", 3113 "bytes", 3114 "jacquard-common", 3115 "jacquard-derive", 3116 "jacquard-lexicon", 3117 "miette", 3118 "rustversion", 3119 "serde", 3120 "serde_bytes", 3121 "serde_ipld_dagcbor", 3122 "thiserror 2.0.17", 3123 "unicode-segmentation", 3124] 3125 3126[[package]] 3127name = "jacquard-axum" 3128version = "0.9.6" 3129source = "registry+https://github.com/rust-lang/crates.io-index" 3130checksum = "ed99b0dc0cd54189bebb83d5d5cc5ac2889f62ede9729a6ead9035073d111bc9" 3131dependencies = [ 3132 "axum", 3133 "bytes", 3134 "jacquard", 3135 "jacquard-common", 3136 "jacquard-derive", 3137 "jacquard-identity", 3138 "miette", 3139 "multibase", 3140 "serde", 3141 "serde_html_form", 3142 "serde_json", 3143 "thiserror 2.0.17", 3144 "tokio", 3145 "tower-http", 3146 "tracing", 3147] 3148 3149[[package]] 3150name = "jacquard-common" 3151version = "0.9.5" 3152source = "registry+https://github.com/rust-lang/crates.io-index" 3153checksum = "1751921e0bdae5e0077afade6161545e9ef7698306c868f800916e99ecbcaae9" 3154dependencies = [ 3155 "base64 0.22.1", 3156 "bon", 3157 "bytes", 3158 "chrono", 3159 "cid", 3160 "ed25519-dalek", 3161 "getrandom 0.2.16", 3162 "getrandom 0.3.4", 3163 "http 1.4.0", 3164 "ipld-core", 3165 "k256", 3166 "langtag", 3167 "miette", 3168 "multibase", 3169 "multihash", 3170 "ouroboros", 3171 "p256 0.13.2", 3172 "postcard", 3173 "rand 0.9.2", 3174 "regex", 3175 "regex-lite", 3176 "reqwest", 3177 "serde", 3178 "serde_bytes", 3179 "serde_html_form", 3180 "serde_ipld_dagcbor", 3181 "serde_json", 3182 "signature 2.2.0", 3183 "smol_str", 3184 "thiserror 2.0.17", 3185 "tokio", 3186 "tokio-util", 3187 "trait-variant", 3188 "url", 3189] 3190 3191[[package]] 3192name = "jacquard-derive" 3193version = "0.9.5" 3194source = "registry+https://github.com/rust-lang/crates.io-index" 3195checksum = "9c8d73dfee07943fdab93569ed1c28b06c6921ed891c08b415c4a323ff67e593" 3196dependencies = [ 3197 "heck 0.5.0", 3198 "jacquard-lexicon", 3199 "proc-macro2", 3200 "quote", 3201 "syn 2.0.111", 3202] 3203 3204[[package]] 3205name = "jacquard-identity" 3206version = "0.9.5" 3207source = "registry+https://github.com/rust-lang/crates.io-index" 3208checksum = "e7aaefa819fa4213cf59f180dba932f018a7cd0599582fd38474ee2a38c16cf2" 3209dependencies = [ 3210 "bon", 3211 "bytes", 3212 "hickory-resolver", 3213 "http 1.4.0", 3214 "jacquard-api", 3215 "jacquard-common", 3216 "jacquard-lexicon", 3217 "miette", 3218 "mini-moka-wasm", 3219 "n0-future", 3220 "percent-encoding", 3221 "reqwest", 3222 "serde", 3223 "serde_html_form", 3224 "serde_json", 3225 "thiserror 2.0.17", 3226 "tokio", 3227 "trait-variant", 3228 "url", 3229 "urlencoding", 3230] 3231 3232[[package]] 3233name = "jacquard-lexicon" 3234version = "0.9.5" 3235source = "registry+https://github.com/rust-lang/crates.io-index" 3236checksum = "8411aff546569b0a1e0ef669bed2380cec1c00d48f02f3fcd57a71545321b3d8" 3237dependencies = [ 3238 "cid", 3239 "dashmap", 3240 "heck 0.5.0", 3241 "inventory", 3242 "jacquard-common", 3243 "miette", 3244 "multihash", 3245 "prettyplease", 3246 "proc-macro2", 3247 "quote", 3248 "serde", 3249 "serde_ipld_dagcbor", 3250 "serde_json", 3251 "serde_repr", 3252 "serde_with", 3253 "sha2", 3254 "syn 2.0.111", 3255 "thiserror 2.0.17", 3256 "unicode-segmentation", 3257] 3258 3259[[package]] 3260name = "jacquard-oauth" 3261version = "0.9.6" 3262source = "registry+https://github.com/rust-lang/crates.io-index" 3263checksum = "68bf0b0e061d85b09cfa78588dc098918d5b62f539a719165c6a806a1d2c0ef2" 3264dependencies = [ 3265 "base64 0.22.1", 3266 "bytes", 3267 "chrono", 3268 "dashmap", 3269 "elliptic-curve 0.13.8", 3270 "http 1.4.0", 3271 "jacquard-common", 3272 "jacquard-identity", 3273 "jose-jwa", 3274 "jose-jwk", 3275 "miette", 3276 "p256 0.13.2", 3277 "rand 0.8.5", 3278 "serde", 3279 "serde_html_form", 3280 "serde_json", 3281 "sha2", 3282 "smol_str", 3283 "thiserror 2.0.17", 3284 "tokio", 3285 "trait-variant", 3286 "url", 3287] 3288 3289[[package]] 3290name = "jacquard-repo" 3291version = "0.9.6" 3292source = "registry+https://github.com/rust-lang/crates.io-index" 3293checksum = "c59705c56678f4d57229ab7790313b9f7d8f244a658d01ad1f4344e7d2efe2a3" 3294dependencies = [ 3295 "bytes", 3296 "cid", 3297 "ed25519-dalek", 3298 "iroh-car", 3299 "jacquard-common", 3300 "jacquard-derive", 3301 "k256", 3302 "miette", 3303 "multihash", 3304 "n0-future", 3305 "p256 0.13.2", 3306 "serde", 3307 "serde_bytes", 3308 "serde_ipld_dagcbor", 3309 "sha2", 3310 "smol_str", 3311 "thiserror 2.0.17", 3312 "tokio", 3313 "trait-variant", 3314] 3315 3316[[package]] 3317name = "jobserver" 3318version = "0.1.34" 3319source = "registry+https://github.com/rust-lang/crates.io-index" 3320checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" 3321dependencies = [ 3322 "getrandom 0.3.4", 3323 "libc", 3324] 3325 3326[[package]] 3327name = "jose-b64" 3328version = "0.1.2" 3329source = "registry+https://github.com/rust-lang/crates.io-index" 3330checksum = "bec69375368709666b21c76965ce67549f2d2db7605f1f8707d17c9656801b56" 3331dependencies = [ 3332 "base64ct", 3333 "serde", 3334 "subtle", 3335 "zeroize", 3336] 3337 3338[[package]] 3339name = "jose-jwa" 3340version = "0.1.2" 3341source = "registry+https://github.com/rust-lang/crates.io-index" 3342checksum = "9ab78e053fe886a351d67cf0d194c000f9d0dcb92906eb34d853d7e758a4b3a7" 3343dependencies = [ 3344 "serde", 3345] 3346 3347[[package]] 3348name = "jose-jwk" 3349version = "0.1.2" 3350source = "registry+https://github.com/rust-lang/crates.io-index" 3351checksum = "280fa263807fe0782ecb6f2baadc28dffc04e00558a58e33bfdb801d11fd58e7" 3352dependencies = [ 3353 "jose-b64", 3354 "jose-jwa", 3355 "p256 0.13.2", 3356 "p384", 3357 "rsa", 3358 "serde", 3359 "zeroize", 3360] 3361 3362[[package]] 3363name = "js-sys" 3364version = "0.3.83" 3365source = "registry+https://github.com/rust-lang/crates.io-index" 3366checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" 3367dependencies = [ 3368 "once_cell", 3369 "wasm-bindgen", 3370] 3371 3372[[package]] 3373name = "jsonwebtoken" 3374version = "10.2.0" 3375source = "registry+https://github.com/rust-lang/crates.io-index" 3376checksum = "c76e1c7d7df3e34443b3621b459b066a7b79644f059fc8b2db7070c825fd417e" 3377dependencies = [ 3378 "base64 0.22.1", 3379 "ed25519-dalek", 3380 "getrandom 0.2.16", 3381 "hmac", 3382 "js-sys", 3383 "p256 0.13.2", 3384 "p384", 3385 "pem", 3386 "rand 0.8.5", 3387 "rsa", 3388 "serde", 3389 "serde_json", 3390 "sha2", 3391 "signature 2.2.0", 3392 "simple_asn1", 3393] 3394 3395[[package]] 3396name = "k256" 3397version = "0.13.4" 3398source = "registry+https://github.com/rust-lang/crates.io-index" 3399checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" 3400dependencies = [ 3401 "cfg-if", 3402 "ecdsa 0.16.9", 3403 "elliptic-curve 0.13.8", 3404 "once_cell", 3405 "sha2", 3406 "signature 2.2.0", 3407] 3408 3409[[package]] 3410name = "langtag" 3411version = "0.4.0" 3412source = "registry+https://github.com/rust-lang/crates.io-index" 3413checksum = "9ecb4c689a30e48ebeaa14237f34037e300dd072e6ad21a9ec72e810ff3c6600" 3414dependencies = [ 3415 "serde", 3416 "static-regular-grammar", 3417 "thiserror 1.0.69", 3418] 3419 3420[[package]] 3421name = "lazy_static" 3422version = "1.5.0" 3423source = "registry+https://github.com/rust-lang/crates.io-index" 3424checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 3425dependencies = [ 3426 "spin 0.9.8", 3427] 3428 3429[[package]] 3430name = "libc" 3431version = "0.2.178" 3432source = "registry+https://github.com/rust-lang/crates.io-index" 3433checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091" 3434 3435[[package]] 3436name = "libm" 3437version = "0.2.15" 3438source = "registry+https://github.com/rust-lang/crates.io-index" 3439checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" 3440 3441[[package]] 3442name = "libredox" 3443version = "0.1.11" 3444source = "registry+https://github.com/rust-lang/crates.io-index" 3445checksum = "df15f6eac291ed1cf25865b1ee60399f57e7c227e7f51bdbd4c5270396a9ed50" 3446dependencies = [ 3447 "bitflags", 3448 "libc", 3449 "redox_syscall 0.6.0", 3450] 3451 3452[[package]] 3453name = "libsqlite3-sys" 3454version = "0.30.1" 3455source = "registry+https://github.com/rust-lang/crates.io-index" 3456checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" 3457dependencies = [ 3458 "pkg-config", 3459 "vcpkg", 3460] 3461 3462[[package]] 3463name = "linked-hash-map" 3464version = "0.5.6" 3465source = "registry+https://github.com/rust-lang/crates.io-index" 3466checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 3467 3468[[package]] 3469name = "linux-raw-sys" 3470version = "0.11.0" 3471source = "registry+https://github.com/rust-lang/crates.io-index" 3472checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 3473 3474[[package]] 3475name = "litemap" 3476version = "0.8.1" 3477source = "registry+https://github.com/rust-lang/crates.io-index" 3478checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" 3479 3480[[package]] 3481name = "lock_api" 3482version = "0.4.14" 3483source = "registry+https://github.com/rust-lang/crates.io-index" 3484checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 3485dependencies = [ 3486 "scopeguard", 3487] 3488 3489[[package]] 3490name = "log" 3491version = "0.4.29" 3492source = "registry+https://github.com/rust-lang/crates.io-index" 3493checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 3494 3495[[package]] 3496name = "loom" 3497version = "0.7.2" 3498source = "registry+https://github.com/rust-lang/crates.io-index" 3499checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" 3500dependencies = [ 3501 "cfg-if", 3502 "generator", 3503 "scoped-tls", 3504 "tracing", 3505 "tracing-subscriber", 3506] 3507 3508[[package]] 3509name = "lru" 3510version = "0.12.5" 3511source = "registry+https://github.com/rust-lang/crates.io-index" 3512checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" 3513dependencies = [ 3514 "hashbrown 0.15.5", 3515] 3516 3517[[package]] 3518name = "lru-cache" 3519version = "0.1.2" 3520source = "registry+https://github.com/rust-lang/crates.io-index" 3521checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 3522dependencies = [ 3523 "linked-hash-map", 3524] 3525 3526[[package]] 3527name = "lru-slab" 3528version = "0.1.2" 3529source = "registry+https://github.com/rust-lang/crates.io-index" 3530checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 3531 3532[[package]] 3533name = "mac" 3534version = "0.1.1" 3535source = "registry+https://github.com/rust-lang/crates.io-index" 3536checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 3537 3538[[package]] 3539name = "markup5ever" 3540version = "0.12.1" 3541source = "registry+https://github.com/rust-lang/crates.io-index" 3542checksum = "16ce3abbeba692c8b8441d036ef91aea6df8da2c6b6e21c7e14d3c18e526be45" 3543dependencies = [ 3544 "log", 3545 "phf", 3546 "phf_codegen", 3547 "string_cache", 3548 "string_cache_codegen", 3549 "tendril", 3550] 3551 3552[[package]] 3553name = "markup5ever_rcdom" 3554version = "0.3.0" 3555source = "registry+https://github.com/rust-lang/crates.io-index" 3556checksum = "edaa21ab3701bfee5099ade5f7e1f84553fd19228cf332f13cd6e964bf59be18" 3557dependencies = [ 3558 "html5ever", 3559 "markup5ever", 3560 "tendril", 3561 "xml5ever", 3562] 3563 3564[[package]] 3565name = "match-lookup" 3566version = "0.1.1" 3567source = "registry+https://github.com/rust-lang/crates.io-index" 3568checksum = "1265724d8cb29dbbc2b0f06fffb8bf1a8c0cf73a78eede9ba73a4a66c52a981e" 3569dependencies = [ 3570 "proc-macro2", 3571 "quote", 3572 "syn 1.0.109", 3573] 3574 3575[[package]] 3576name = "matchers" 3577version = "0.2.0" 3578source = "registry+https://github.com/rust-lang/crates.io-index" 3579checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 3580dependencies = [ 3581 "regex-automata", 3582] 3583 3584[[package]] 3585name = "matchit" 3586version = "0.8.4" 3587source = "registry+https://github.com/rust-lang/crates.io-index" 3588checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 3589 3590[[package]] 3591name = "md-5" 3592version = "0.10.6" 3593source = "registry+https://github.com/rust-lang/crates.io-index" 3594checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 3595dependencies = [ 3596 "cfg-if", 3597 "digest", 3598] 3599 3600[[package]] 3601name = "memchr" 3602version = "2.7.6" 3603source = "registry+https://github.com/rust-lang/crates.io-index" 3604checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 3605 3606[[package]] 3607name = "metrics" 3608version = "0.24.3" 3609source = "registry+https://github.com/rust-lang/crates.io-index" 3610checksum = "5d5312e9ba3771cfa961b585728215e3d972c950a3eed9252aa093d6301277e8" 3611dependencies = [ 3612 "ahash", 3613 "portable-atomic", 3614] 3615 3616[[package]] 3617name = "metrics-exporter-prometheus" 3618version = "0.16.2" 3619source = "registry+https://github.com/rust-lang/crates.io-index" 3620checksum = "dd7399781913e5393588a8d8c6a2867bf85fb38eaf2502fdce465aad2dc6f034" 3621dependencies = [ 3622 "base64 0.22.1", 3623 "http-body-util", 3624 "hyper 1.8.1", 3625 "hyper-util", 3626 "indexmap 2.12.1", 3627 "ipnet", 3628 "metrics", 3629 "metrics-util", 3630 "quanta", 3631 "thiserror 1.0.69", 3632 "tokio", 3633 "tracing", 3634] 3635 3636[[package]] 3637name = "metrics-util" 3638version = "0.19.1" 3639source = "registry+https://github.com/rust-lang/crates.io-index" 3640checksum = "b8496cc523d1f94c1385dd8f0f0c2c480b2b8aeccb5b7e4485ad6365523ae376" 3641dependencies = [ 3642 "crossbeam-epoch", 3643 "crossbeam-utils", 3644 "hashbrown 0.15.5", 3645 "metrics", 3646 "quanta", 3647 "rand 0.9.2", 3648 "rand_xoshiro", 3649 "sketches-ddsketch", 3650] 3651 3652[[package]] 3653name = "miette" 3654version = "7.6.0" 3655source = "registry+https://github.com/rust-lang/crates.io-index" 3656checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7" 3657dependencies = [ 3658 "cfg-if", 3659 "miette-derive", 3660 "unicode-width", 3661] 3662 3663[[package]] 3664name = "miette-derive" 3665version = "7.6.0" 3666source = "registry+https://github.com/rust-lang/crates.io-index" 3667checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b" 3668dependencies = [ 3669 "proc-macro2", 3670 "quote", 3671 "syn 2.0.111", 3672] 3673 3674[[package]] 3675name = "mime" 3676version = "0.3.17" 3677source = "registry+https://github.com/rust-lang/crates.io-index" 3678checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 3679 3680[[package]] 3681name = "mime_guess" 3682version = "2.0.5" 3683source = "registry+https://github.com/rust-lang/crates.io-index" 3684checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 3685dependencies = [ 3686 "mime", 3687 "unicase", 3688] 3689 3690[[package]] 3691name = "mini-moka-wasm" 3692version = "0.10.99" 3693source = "registry+https://github.com/rust-lang/crates.io-index" 3694checksum = "0102b9a2ad50fa47ca89eead2316c8222285ecfbd3f69ce99564fbe4253866e8" 3695dependencies = [ 3696 "crossbeam-channel", 3697 "crossbeam-utils", 3698 "dashmap", 3699 "smallvec", 3700 "tagptr", 3701 "triomphe", 3702 "web-time", 3703] 3704 3705[[package]] 3706name = "minimal-lexical" 3707version = "0.2.1" 3708source = "registry+https://github.com/rust-lang/crates.io-index" 3709checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 3710 3711[[package]] 3712name = "miniz_oxide" 3713version = "0.8.9" 3714source = "registry+https://github.com/rust-lang/crates.io-index" 3715checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 3716dependencies = [ 3717 "adler2", 3718 "simd-adler32", 3719] 3720 3721[[package]] 3722name = "mio" 3723version = "1.1.1" 3724source = "registry+https://github.com/rust-lang/crates.io-index" 3725checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" 3726dependencies = [ 3727 "libc", 3728 "wasi", 3729 "windows-sys 0.61.2", 3730] 3731 3732[[package]] 3733name = "moxcms" 3734version = "0.7.11" 3735source = "registry+https://github.com/rust-lang/crates.io-index" 3736checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97" 3737dependencies = [ 3738 "num-traits", 3739 "pxfm", 3740] 3741 3742[[package]] 3743name = "multibase" 3744version = "0.9.2" 3745source = "registry+https://github.com/rust-lang/crates.io-index" 3746checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77" 3747dependencies = [ 3748 "base-x", 3749 "base256emoji", 3750 "data-encoding", 3751 "data-encoding-macro", 3752] 3753 3754[[package]] 3755name = "multihash" 3756version = "0.19.3" 3757source = "registry+https://github.com/rust-lang/crates.io-index" 3758checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" 3759dependencies = [ 3760 "core2", 3761 "serde", 3762 "unsigned-varint 0.8.0", 3763] 3764 3765[[package]] 3766name = "n0-future" 3767version = "0.1.3" 3768source = "registry+https://github.com/rust-lang/crates.io-index" 3769checksum = "7bb0e5d99e681ab3c938842b96fcb41bf8a7bb4bfdb11ccbd653a7e83e06c794" 3770dependencies = [ 3771 "cfg_aliases", 3772 "derive_more", 3773 "futures-buffered", 3774 "futures-lite", 3775 "futures-util", 3776 "js-sys", 3777 "pin-project", 3778 "send_wrapper", 3779 "tokio", 3780 "tokio-util", 3781 "wasm-bindgen", 3782 "wasm-bindgen-futures", 3783 "web-time", 3784] 3785 3786[[package]] 3787name = "native-tls" 3788version = "0.2.14" 3789source = "registry+https://github.com/rust-lang/crates.io-index" 3790checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" 3791dependencies = [ 3792 "libc", 3793 "log", 3794 "openssl", 3795 "openssl-probe", 3796 "openssl-sys", 3797 "schannel", 3798 "security-framework 2.11.1", 3799 "security-framework-sys", 3800 "tempfile", 3801] 3802 3803[[package]] 3804name = "new_debug_unreachable" 3805version = "1.0.6" 3806source = "registry+https://github.com/rust-lang/crates.io-index" 3807checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 3808 3809[[package]] 3810name = "nom" 3811version = "7.1.3" 3812source = "registry+https://github.com/rust-lang/crates.io-index" 3813checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 3814dependencies = [ 3815 "memchr", 3816 "minimal-lexical", 3817] 3818 3819[[package]] 3820name = "nonzero_ext" 3821version = "0.3.0" 3822source = "registry+https://github.com/rust-lang/crates.io-index" 3823checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" 3824 3825[[package]] 3826name = "nu-ansi-term" 3827version = "0.50.3" 3828source = "registry+https://github.com/rust-lang/crates.io-index" 3829checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" 3830dependencies = [ 3831 "windows-sys 0.61.2", 3832] 3833 3834[[package]] 3835name = "num" 3836version = "0.4.3" 3837source = "registry+https://github.com/rust-lang/crates.io-index" 3838checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" 3839dependencies = [ 3840 "num-bigint", 3841 "num-complex", 3842 "num-integer", 3843 "num-iter", 3844 "num-rational", 3845 "num-traits", 3846] 3847 3848[[package]] 3849name = "num-bigint" 3850version = "0.4.6" 3851source = "registry+https://github.com/rust-lang/crates.io-index" 3852checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 3853dependencies = [ 3854 "num-integer", 3855 "num-traits", 3856] 3857 3858[[package]] 3859name = "num-bigint-dig" 3860version = "0.8.6" 3861source = "registry+https://github.com/rust-lang/crates.io-index" 3862checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" 3863dependencies = [ 3864 "lazy_static", 3865 "libm", 3866 "num-integer", 3867 "num-iter", 3868 "num-traits", 3869 "rand 0.8.5", 3870 "smallvec", 3871 "zeroize", 3872] 3873 3874[[package]] 3875name = "num-complex" 3876version = "0.4.6" 3877source = "registry+https://github.com/rust-lang/crates.io-index" 3878checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" 3879dependencies = [ 3880 "num-traits", 3881] 3882 3883[[package]] 3884name = "num-conv" 3885version = "0.1.0" 3886source = "registry+https://github.com/rust-lang/crates.io-index" 3887checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 3888 3889[[package]] 3890name = "num-integer" 3891version = "0.1.46" 3892source = "registry+https://github.com/rust-lang/crates.io-index" 3893checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 3894dependencies = [ 3895 "num-traits", 3896] 3897 3898[[package]] 3899name = "num-iter" 3900version = "0.1.45" 3901source = "registry+https://github.com/rust-lang/crates.io-index" 3902checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 3903dependencies = [ 3904 "autocfg", 3905 "num-integer", 3906 "num-traits", 3907] 3908 3909[[package]] 3910name = "num-rational" 3911version = "0.4.2" 3912source = "registry+https://github.com/rust-lang/crates.io-index" 3913checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" 3914dependencies = [ 3915 "num-bigint", 3916 "num-integer", 3917 "num-traits", 3918] 3919 3920[[package]] 3921name = "num-traits" 3922version = "0.2.19" 3923source = "registry+https://github.com/rust-lang/crates.io-index" 3924checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 3925dependencies = [ 3926 "autocfg", 3927 "libm", 3928] 3929 3930[[package]] 3931name = "num_cpus" 3932version = "1.17.0" 3933source = "registry+https://github.com/rust-lang/crates.io-index" 3934checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" 3935dependencies = [ 3936 "hermit-abi", 3937 "libc", 3938] 3939 3940[[package]] 3941name = "oid-registry" 3942version = "0.7.1" 3943source = "registry+https://github.com/rust-lang/crates.io-index" 3944checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" 3945dependencies = [ 3946 "asn1-rs", 3947] 3948 3949[[package]] 3950name = "once_cell" 3951version = "1.21.3" 3952source = "registry+https://github.com/rust-lang/crates.io-index" 3953checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 3954 3955[[package]] 3956name = "opaque-debug" 3957version = "0.3.1" 3958source = "registry+https://github.com/rust-lang/crates.io-index" 3959checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 3960 3961[[package]] 3962name = "openssl" 3963version = "0.10.75" 3964source = "registry+https://github.com/rust-lang/crates.io-index" 3965checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328" 3966dependencies = [ 3967 "bitflags", 3968 "cfg-if", 3969 "foreign-types", 3970 "libc", 3971 "once_cell", 3972 "openssl-macros", 3973 "openssl-sys", 3974] 3975 3976[[package]] 3977name = "openssl-macros" 3978version = "0.1.1" 3979source = "registry+https://github.com/rust-lang/crates.io-index" 3980checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 3981dependencies = [ 3982 "proc-macro2", 3983 "quote", 3984 "syn 2.0.111", 3985] 3986 3987[[package]] 3988name = "openssl-probe" 3989version = "0.1.6" 3990source = "registry+https://github.com/rust-lang/crates.io-index" 3991checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" 3992 3993[[package]] 3994name = "openssl-sys" 3995version = "0.9.111" 3996source = "registry+https://github.com/rust-lang/crates.io-index" 3997checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321" 3998dependencies = [ 3999 "cc", 4000 "libc", 4001 "pkg-config", 4002 "vcpkg", 4003] 4004 4005[[package]] 4006name = "ouroboros" 4007version = "0.18.5" 4008source = "registry+https://github.com/rust-lang/crates.io-index" 4009checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59" 4010dependencies = [ 4011 "aliasable", 4012 "ouroboros_macro", 4013 "static_assertions", 4014] 4015 4016[[package]] 4017name = "ouroboros_macro" 4018version = "0.18.5" 4019source = "registry+https://github.com/rust-lang/crates.io-index" 4020checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0" 4021dependencies = [ 4022 "heck 0.4.1", 4023 "proc-macro2", 4024 "proc-macro2-diagnostics", 4025 "quote", 4026 "syn 2.0.111", 4027] 4028 4029[[package]] 4030name = "outref" 4031version = "0.5.2" 4032source = "registry+https://github.com/rust-lang/crates.io-index" 4033checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e" 4034 4035[[package]] 4036name = "p256" 4037version = "0.11.1" 4038source = "registry+https://github.com/rust-lang/crates.io-index" 4039checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" 4040dependencies = [ 4041 "ecdsa 0.14.8", 4042 "elliptic-curve 0.12.3", 4043 "sha2", 4044] 4045 4046[[package]] 4047name = "p256" 4048version = "0.13.2" 4049source = "registry+https://github.com/rust-lang/crates.io-index" 4050checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 4051dependencies = [ 4052 "ecdsa 0.16.9", 4053 "elliptic-curve 0.13.8", 4054 "primeorder", 4055 "sha2", 4056] 4057 4058[[package]] 4059name = "p384" 4060version = "0.13.1" 4061source = "registry+https://github.com/rust-lang/crates.io-index" 4062checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" 4063dependencies = [ 4064 "ecdsa 0.16.9", 4065 "elliptic-curve 0.13.8", 4066 "primeorder", 4067 "sha2", 4068] 4069 4070[[package]] 4071name = "parking" 4072version = "2.2.1" 4073source = "registry+https://github.com/rust-lang/crates.io-index" 4074checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 4075 4076[[package]] 4077name = "parking_lot" 4078version = "0.12.5" 4079source = "registry+https://github.com/rust-lang/crates.io-index" 4080checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 4081dependencies = [ 4082 "lock_api", 4083 "parking_lot_core", 4084] 4085 4086[[package]] 4087name = "parking_lot_core" 4088version = "0.9.12" 4089source = "registry+https://github.com/rust-lang/crates.io-index" 4090checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 4091dependencies = [ 4092 "cfg-if", 4093 "libc", 4094 "redox_syscall 0.5.18", 4095 "smallvec", 4096 "windows-link", 4097] 4098 4099[[package]] 4100name = "parse-display" 4101version = "0.9.1" 4102source = "registry+https://github.com/rust-lang/crates.io-index" 4103checksum = "914a1c2265c98e2446911282c6ac86d8524f495792c38c5bd884f80499c7538a" 4104dependencies = [ 4105 "parse-display-derive", 4106 "regex", 4107 "regex-syntax", 4108] 4109 4110[[package]] 4111name = "parse-display-derive" 4112version = "0.9.1" 4113source = "registry+https://github.com/rust-lang/crates.io-index" 4114checksum = "2ae7800a4c974efd12df917266338e79a7a74415173caf7e70aa0a0707345281" 4115dependencies = [ 4116 "proc-macro2", 4117 "quote", 4118 "regex", 4119 "regex-syntax", 4120 "structmeta", 4121 "syn 2.0.111", 4122] 4123 4124[[package]] 4125name = "pastey" 4126version = "0.1.1" 4127source = "registry+https://github.com/rust-lang/crates.io-index" 4128checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec" 4129 4130[[package]] 4131name = "pem" 4132version = "3.0.6" 4133source = "registry+https://github.com/rust-lang/crates.io-index" 4134checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" 4135dependencies = [ 4136 "base64 0.22.1", 4137 "serde_core", 4138] 4139 4140[[package]] 4141name = "pem-rfc7468" 4142version = "0.7.0" 4143source = "registry+https://github.com/rust-lang/crates.io-index" 4144checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 4145dependencies = [ 4146 "base64ct", 4147] 4148 4149[[package]] 4150name = "percent-encoding" 4151version = "2.3.2" 4152source = "registry+https://github.com/rust-lang/crates.io-index" 4153checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 4154 4155[[package]] 4156name = "phf" 4157version = "0.11.3" 4158source = "registry+https://github.com/rust-lang/crates.io-index" 4159checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" 4160dependencies = [ 4161 "phf_shared", 4162] 4163 4164[[package]] 4165name = "phf_codegen" 4166version = "0.11.3" 4167source = "registry+https://github.com/rust-lang/crates.io-index" 4168checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" 4169dependencies = [ 4170 "phf_generator", 4171 "phf_shared", 4172] 4173 4174[[package]] 4175name = "phf_generator" 4176version = "0.11.3" 4177source = "registry+https://github.com/rust-lang/crates.io-index" 4178checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" 4179dependencies = [ 4180 "phf_shared", 4181 "rand 0.8.5", 4182] 4183 4184[[package]] 4185name = "phf_shared" 4186version = "0.11.3" 4187source = "registry+https://github.com/rust-lang/crates.io-index" 4188checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" 4189dependencies = [ 4190 "siphasher", 4191] 4192 4193[[package]] 4194name = "pin-project" 4195version = "1.1.10" 4196source = "registry+https://github.com/rust-lang/crates.io-index" 4197checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" 4198dependencies = [ 4199 "pin-project-internal", 4200] 4201 4202[[package]] 4203name = "pin-project-internal" 4204version = "1.1.10" 4205source = "registry+https://github.com/rust-lang/crates.io-index" 4206checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" 4207dependencies = [ 4208 "proc-macro2", 4209 "quote", 4210 "syn 2.0.111", 4211] 4212 4213[[package]] 4214name = "pin-project-lite" 4215version = "0.2.16" 4216source = "registry+https://github.com/rust-lang/crates.io-index" 4217checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 4218 4219[[package]] 4220name = "pin-utils" 4221version = "0.1.0" 4222source = "registry+https://github.com/rust-lang/crates.io-index" 4223checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 4224 4225[[package]] 4226name = "pkcs1" 4227version = "0.7.5" 4228source = "registry+https://github.com/rust-lang/crates.io-index" 4229checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 4230dependencies = [ 4231 "der 0.7.10", 4232 "pkcs8 0.10.2", 4233 "spki 0.7.3", 4234] 4235 4236[[package]] 4237name = "pkcs8" 4238version = "0.9.0" 4239source = "registry+https://github.com/rust-lang/crates.io-index" 4240checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" 4241dependencies = [ 4242 "der 0.6.1", 4243 "spki 0.6.0", 4244] 4245 4246[[package]] 4247name = "pkcs8" 4248version = "0.10.2" 4249source = "registry+https://github.com/rust-lang/crates.io-index" 4250checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 4251dependencies = [ 4252 "der 0.7.10", 4253 "spki 0.7.3", 4254] 4255 4256[[package]] 4257name = "pkg-config" 4258version = "0.3.32" 4259source = "registry+https://github.com/rust-lang/crates.io-index" 4260checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 4261 4262[[package]] 4263name = "png" 4264version = "0.18.0" 4265source = "registry+https://github.com/rust-lang/crates.io-index" 4266checksum = "97baced388464909d42d89643fe4361939af9b7ce7a31ee32a168f832a70f2a0" 4267dependencies = [ 4268 "bitflags", 4269 "crc32fast", 4270 "fdeflate", 4271 "flate2", 4272 "miniz_oxide", 4273] 4274 4275[[package]] 4276name = "polyval" 4277version = "0.6.2" 4278source = "registry+https://github.com/rust-lang/crates.io-index" 4279checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" 4280dependencies = [ 4281 "cfg-if", 4282 "cpufeatures", 4283 "opaque-debug", 4284 "universal-hash", 4285] 4286 4287[[package]] 4288name = "portable-atomic" 4289version = "1.12.0" 4290source = "registry+https://github.com/rust-lang/crates.io-index" 4291checksum = "f59e70c4aef1e55797c2e8fd94a4f2a973fc972cfde0e0b05f683667b0cd39dd" 4292 4293[[package]] 4294name = "postcard" 4295version = "1.1.3" 4296source = "registry+https://github.com/rust-lang/crates.io-index" 4297checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" 4298dependencies = [ 4299 "cobs", 4300 "embedded-io 0.4.0", 4301 "embedded-io 0.6.1", 4302 "heapless", 4303 "serde", 4304] 4305 4306[[package]] 4307name = "potential_utf" 4308version = "0.1.4" 4309source = "registry+https://github.com/rust-lang/crates.io-index" 4310checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" 4311dependencies = [ 4312 "zerovec", 4313] 4314 4315[[package]] 4316name = "powerfmt" 4317version = "0.2.0" 4318source = "registry+https://github.com/rust-lang/crates.io-index" 4319checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 4320 4321[[package]] 4322name = "ppv-lite86" 4323version = "0.2.21" 4324source = "registry+https://github.com/rust-lang/crates.io-index" 4325checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 4326dependencies = [ 4327 "zerocopy", 4328] 4329 4330[[package]] 4331name = "precomputed-hash" 4332version = "0.1.1" 4333source = "registry+https://github.com/rust-lang/crates.io-index" 4334checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 4335 4336[[package]] 4337name = "prettyplease" 4338version = "0.2.37" 4339source = "registry+https://github.com/rust-lang/crates.io-index" 4340checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" 4341dependencies = [ 4342 "proc-macro2", 4343 "syn 2.0.111", 4344] 4345 4346[[package]] 4347name = "primeorder" 4348version = "0.13.6" 4349source = "registry+https://github.com/rust-lang/crates.io-index" 4350checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 4351dependencies = [ 4352 "elliptic-curve 0.13.8", 4353] 4354 4355[[package]] 4356name = "proc-macro-error" 4357version = "1.0.4" 4358source = "registry+https://github.com/rust-lang/crates.io-index" 4359checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 4360dependencies = [ 4361 "proc-macro-error-attr", 4362 "proc-macro2", 4363 "quote", 4364 "syn 1.0.109", 4365 "version_check", 4366] 4367 4368[[package]] 4369name = "proc-macro-error-attr" 4370version = "1.0.4" 4371source = "registry+https://github.com/rust-lang/crates.io-index" 4372checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 4373dependencies = [ 4374 "proc-macro2", 4375 "quote", 4376 "version_check", 4377] 4378 4379[[package]] 4380name = "proc-macro2" 4381version = "1.0.103" 4382source = "registry+https://github.com/rust-lang/crates.io-index" 4383checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" 4384dependencies = [ 4385 "unicode-ident", 4386] 4387 4388[[package]] 4389name = "proc-macro2-diagnostics" 4390version = "0.10.1" 4391source = "registry+https://github.com/rust-lang/crates.io-index" 4392checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" 4393dependencies = [ 4394 "proc-macro2", 4395 "quote", 4396 "syn 2.0.111", 4397 "version_check", 4398 "yansi", 4399] 4400 4401[[package]] 4402name = "prost" 4403version = "0.14.1" 4404source = "registry+https://github.com/rust-lang/crates.io-index" 4405checksum = "7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d" 4406dependencies = [ 4407 "bytes", 4408 "prost-derive", 4409] 4410 4411[[package]] 4412name = "prost-derive" 4413version = "0.14.1" 4414source = "registry+https://github.com/rust-lang/crates.io-index" 4415checksum = "9120690fafc389a67ba3803df527d0ec9cbbc9cc45e4cc20b332996dfb672425" 4416dependencies = [ 4417 "anyhow", 4418 "itertools", 4419 "proc-macro2", 4420 "quote", 4421 "syn 2.0.111", 4422] 4423 4424[[package]] 4425name = "prost-types" 4426version = "0.14.1" 4427source = "registry+https://github.com/rust-lang/crates.io-index" 4428checksum = "b9b4db3d6da204ed77bb26ba83b6122a73aeb2e87e25fbf7ad2e84c4ccbf8f72" 4429dependencies = [ 4430 "prost", 4431] 4432 4433[[package]] 4434name = "pxfm" 4435version = "0.1.27" 4436source = "registry+https://github.com/rust-lang/crates.io-index" 4437checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8" 4438dependencies = [ 4439 "num-traits", 4440] 4441 4442[[package]] 4443name = "qrcodegen" 4444version = "1.8.0" 4445source = "registry+https://github.com/rust-lang/crates.io-index" 4446checksum = "4339fc7a1021c9c1621d87f5e3505f2805c8c105420ba2f2a4df86814590c142" 4447 4448[[package]] 4449name = "qrcodegen-image" 4450version = "1.5.0" 4451source = "registry+https://github.com/rust-lang/crates.io-index" 4452checksum = "221b7eace1aef8c95d65dbe09fb7a1a43d006045394a89afba6997721fcb7708" 4453dependencies = [ 4454 "base64 0.22.1", 4455 "image", 4456 "qrcodegen", 4457] 4458 4459[[package]] 4460name = "quanta" 4461version = "0.12.6" 4462source = "registry+https://github.com/rust-lang/crates.io-index" 4463checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7" 4464dependencies = [ 4465 "crossbeam-utils", 4466 "libc", 4467 "once_cell", 4468 "raw-cpuid", 4469 "wasi", 4470 "web-sys", 4471 "winapi", 4472] 4473 4474[[package]] 4475name = "quick-error" 4476version = "2.0.1" 4477source = "registry+https://github.com/rust-lang/crates.io-index" 4478checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 4479 4480[[package]] 4481name = "quinn" 4482version = "0.11.9" 4483source = "registry+https://github.com/rust-lang/crates.io-index" 4484checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 4485dependencies = [ 4486 "bytes", 4487 "cfg_aliases", 4488 "pin-project-lite", 4489 "quinn-proto", 4490 "quinn-udp", 4491 "rustc-hash", 4492 "rustls 0.23.35", 4493 "socket2 0.6.1", 4494 "thiserror 2.0.17", 4495 "tokio", 4496 "tracing", 4497 "web-time", 4498] 4499 4500[[package]] 4501name = "quinn-proto" 4502version = "0.11.13" 4503source = "registry+https://github.com/rust-lang/crates.io-index" 4504checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" 4505dependencies = [ 4506 "bytes", 4507 "getrandom 0.3.4", 4508 "lru-slab", 4509 "rand 0.9.2", 4510 "ring", 4511 "rustc-hash", 4512 "rustls 0.23.35", 4513 "rustls-pki-types", 4514 "slab", 4515 "thiserror 2.0.17", 4516 "tinyvec", 4517 "tracing", 4518 "web-time", 4519] 4520 4521[[package]] 4522name = "quinn-udp" 4523version = "0.5.14" 4524source = "registry+https://github.com/rust-lang/crates.io-index" 4525checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 4526dependencies = [ 4527 "cfg_aliases", 4528 "libc", 4529 "once_cell", 4530 "socket2 0.6.1", 4531 "tracing", 4532 "windows-sys 0.60.2", 4533] 4534 4535[[package]] 4536name = "quote" 4537version = "1.0.42" 4538source = "registry+https://github.com/rust-lang/crates.io-index" 4539checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" 4540dependencies = [ 4541 "proc-macro2", 4542] 4543 4544[[package]] 4545name = "r-efi" 4546version = "5.3.0" 4547source = "registry+https://github.com/rust-lang/crates.io-index" 4548checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 4549 4550[[package]] 4551name = "rand" 4552version = "0.8.5" 4553source = "registry+https://github.com/rust-lang/crates.io-index" 4554checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 4555dependencies = [ 4556 "libc", 4557 "rand_chacha 0.3.1", 4558 "rand_core 0.6.4", 4559] 4560 4561[[package]] 4562name = "rand" 4563version = "0.9.2" 4564source = "registry+https://github.com/rust-lang/crates.io-index" 4565checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 4566dependencies = [ 4567 "rand_chacha 0.9.0", 4568 "rand_core 0.9.3", 4569] 4570 4571[[package]] 4572name = "rand_chacha" 4573version = "0.3.1" 4574source = "registry+https://github.com/rust-lang/crates.io-index" 4575checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 4576dependencies = [ 4577 "ppv-lite86", 4578 "rand_core 0.6.4", 4579] 4580 4581[[package]] 4582name = "rand_chacha" 4583version = "0.9.0" 4584source = "registry+https://github.com/rust-lang/crates.io-index" 4585checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 4586dependencies = [ 4587 "ppv-lite86", 4588 "rand_core 0.9.3", 4589] 4590 4591[[package]] 4592name = "rand_core" 4593version = "0.6.4" 4594source = "registry+https://github.com/rust-lang/crates.io-index" 4595checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 4596dependencies = [ 4597 "getrandom 0.2.16", 4598] 4599 4600[[package]] 4601name = "rand_core" 4602version = "0.9.3" 4603source = "registry+https://github.com/rust-lang/crates.io-index" 4604checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 4605dependencies = [ 4606 "getrandom 0.3.4", 4607] 4608 4609[[package]] 4610name = "rand_xoshiro" 4611version = "0.7.0" 4612source = "registry+https://github.com/rust-lang/crates.io-index" 4613checksum = "f703f4665700daf5512dcca5f43afa6af89f09db47fb56be587f80636bda2d41" 4614dependencies = [ 4615 "rand_core 0.9.3", 4616] 4617 4618[[package]] 4619name = "range-traits" 4620version = "0.3.2" 4621source = "registry+https://github.com/rust-lang/crates.io-index" 4622checksum = "d20581732dd76fa913c7dff1a2412b714afe3573e94d41c34719de73337cc8ab" 4623 4624[[package]] 4625name = "raw-cpuid" 4626version = "11.6.0" 4627source = "registry+https://github.com/rust-lang/crates.io-index" 4628checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186" 4629dependencies = [ 4630 "bitflags", 4631] 4632 4633[[package]] 4634name = "redis" 4635version = "1.0.1" 4636source = "registry+https://github.com/rust-lang/crates.io-index" 4637checksum = "e2dc509b442812959ab125c74be2a930dd9b603038b6da9df9ec013aa23a4e9c" 4638dependencies = [ 4639 "arc-swap", 4640 "arcstr", 4641 "backon", 4642 "bytes", 4643 "cfg-if", 4644 "combine", 4645 "futures-channel", 4646 "futures-util", 4647 "itoa", 4648 "num-bigint", 4649 "percent-encoding", 4650 "pin-project-lite", 4651 "ryu", 4652 "sha1_smol", 4653 "socket2 0.6.1", 4654 "tokio", 4655 "tokio-util", 4656 "url", 4657 "xxhash-rust", 4658] 4659 4660[[package]] 4661name = "redox_syscall" 4662version = "0.5.18" 4663source = "registry+https://github.com/rust-lang/crates.io-index" 4664checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 4665dependencies = [ 4666 "bitflags", 4667] 4668 4669[[package]] 4670name = "redox_syscall" 4671version = "0.6.0" 4672source = "registry+https://github.com/rust-lang/crates.io-index" 4673checksum = "ec96166dafa0886eb81fe1c0a388bece180fbef2135f97c1e2cf8302e74b43b5" 4674dependencies = [ 4675 "bitflags", 4676] 4677 4678[[package]] 4679name = "ref-cast" 4680version = "1.0.25" 4681source = "registry+https://github.com/rust-lang/crates.io-index" 4682checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" 4683dependencies = [ 4684 "ref-cast-impl", 4685] 4686 4687[[package]] 4688name = "ref-cast-impl" 4689version = "1.0.25" 4690source = "registry+https://github.com/rust-lang/crates.io-index" 4691checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" 4692dependencies = [ 4693 "proc-macro2", 4694 "quote", 4695 "syn 2.0.111", 4696] 4697 4698[[package]] 4699name = "regex" 4700version = "1.12.2" 4701source = "registry+https://github.com/rust-lang/crates.io-index" 4702checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" 4703dependencies = [ 4704 "aho-corasick", 4705 "memchr", 4706 "regex-automata", 4707 "regex-syntax", 4708] 4709 4710[[package]] 4711name = "regex-automata" 4712version = "0.4.13" 4713source = "registry+https://github.com/rust-lang/crates.io-index" 4714checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" 4715dependencies = [ 4716 "aho-corasick", 4717 "memchr", 4718 "regex-syntax", 4719] 4720 4721[[package]] 4722name = "regex-lite" 4723version = "0.1.8" 4724source = "registry+https://github.com/rust-lang/crates.io-index" 4725checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da" 4726 4727[[package]] 4728name = "regex-syntax" 4729version = "0.8.8" 4730source = "registry+https://github.com/rust-lang/crates.io-index" 4731checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" 4732 4733[[package]] 4734name = "reqwest" 4735version = "0.12.28" 4736source = "registry+https://github.com/rust-lang/crates.io-index" 4737checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" 4738dependencies = [ 4739 "base64 0.22.1", 4740 "bytes", 4741 "encoding_rs", 4742 "futures-core", 4743 "h2 0.4.12", 4744 "http 1.4.0", 4745 "http-body 1.0.1", 4746 "http-body-util", 4747 "hyper 1.8.1", 4748 "hyper-rustls 0.27.7", 4749 "hyper-tls", 4750 "hyper-util", 4751 "js-sys", 4752 "log", 4753 "mime", 4754 "native-tls", 4755 "percent-encoding", 4756 "pin-project-lite", 4757 "quinn", 4758 "rustls 0.23.35", 4759 "rustls-pki-types", 4760 "serde", 4761 "serde_json", 4762 "serde_urlencoded", 4763 "sync_wrapper", 4764 "tokio", 4765 "tokio-native-tls", 4766 "tokio-rustls 0.26.4", 4767 "tower", 4768 "tower-http", 4769 "tower-service", 4770 "url", 4771 "wasm-bindgen", 4772 "wasm-bindgen-futures", 4773 "web-sys", 4774 "webpki-roots 1.0.4", 4775] 4776 4777[[package]] 4778name = "resolv-conf" 4779version = "0.7.6" 4780source = "registry+https://github.com/rust-lang/crates.io-index" 4781checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7" 4782 4783[[package]] 4784name = "rfc6979" 4785version = "0.3.1" 4786source = "registry+https://github.com/rust-lang/crates.io-index" 4787checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" 4788dependencies = [ 4789 "crypto-bigint 0.4.9", 4790 "hmac", 4791 "zeroize", 4792] 4793 4794[[package]] 4795name = "rfc6979" 4796version = "0.4.0" 4797source = "registry+https://github.com/rust-lang/crates.io-index" 4798checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 4799dependencies = [ 4800 "hmac", 4801 "subtle", 4802] 4803 4804[[package]] 4805name = "ring" 4806version = "0.17.14" 4807source = "registry+https://github.com/rust-lang/crates.io-index" 4808checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 4809dependencies = [ 4810 "cc", 4811 "cfg-if", 4812 "getrandom 0.2.16", 4813 "libc", 4814 "untrusted", 4815 "windows-sys 0.52.0", 4816] 4817 4818[[package]] 4819name = "rsa" 4820version = "0.9.9" 4821source = "registry+https://github.com/rust-lang/crates.io-index" 4822checksum = "40a0376c50d0358279d9d643e4bf7b7be212f1f4ff1da9070a7b54d22ef75c88" 4823dependencies = [ 4824 "const-oid", 4825 "digest", 4826 "num-bigint-dig", 4827 "num-integer", 4828 "num-traits", 4829 "pkcs1", 4830 "pkcs8 0.10.2", 4831 "rand_core 0.6.4", 4832 "signature 2.2.0", 4833 "spki 0.7.3", 4834 "subtle", 4835 "zeroize", 4836] 4837 4838[[package]] 4839name = "rustc-hash" 4840version = "2.1.1" 4841source = "registry+https://github.com/rust-lang/crates.io-index" 4842checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 4843 4844[[package]] 4845name = "rustc_version" 4846version = "0.4.1" 4847source = "registry+https://github.com/rust-lang/crates.io-index" 4848checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 4849dependencies = [ 4850 "semver", 4851] 4852 4853[[package]] 4854name = "rusticata-macros" 4855version = "4.1.0" 4856source = "registry+https://github.com/rust-lang/crates.io-index" 4857checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" 4858dependencies = [ 4859 "nom", 4860] 4861 4862[[package]] 4863name = "rustix" 4864version = "1.1.3" 4865source = "registry+https://github.com/rust-lang/crates.io-index" 4866checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" 4867dependencies = [ 4868 "bitflags", 4869 "errno", 4870 "libc", 4871 "linux-raw-sys", 4872 "windows-sys 0.61.2", 4873] 4874 4875[[package]] 4876name = "rustls" 4877version = "0.21.12" 4878source = "registry+https://github.com/rust-lang/crates.io-index" 4879checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" 4880dependencies = [ 4881 "log", 4882 "ring", 4883 "rustls-webpki 0.101.7", 4884 "sct", 4885] 4886 4887[[package]] 4888name = "rustls" 4889version = "0.23.35" 4890source = "registry+https://github.com/rust-lang/crates.io-index" 4891checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f" 4892dependencies = [ 4893 "aws-lc-rs", 4894 "log", 4895 "once_cell", 4896 "ring", 4897 "rustls-pki-types", 4898 "rustls-webpki 0.103.8", 4899 "subtle", 4900 "zeroize", 4901] 4902 4903[[package]] 4904name = "rustls-native-certs" 4905version = "0.8.2" 4906source = "registry+https://github.com/rust-lang/crates.io-index" 4907checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923" 4908dependencies = [ 4909 "openssl-probe", 4910 "rustls-pki-types", 4911 "schannel", 4912 "security-framework 3.5.1", 4913] 4914 4915[[package]] 4916name = "rustls-pemfile" 4917version = "2.2.0" 4918source = "registry+https://github.com/rust-lang/crates.io-index" 4919checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" 4920dependencies = [ 4921 "rustls-pki-types", 4922] 4923 4924[[package]] 4925name = "rustls-pki-types" 4926version = "1.13.2" 4927source = "registry+https://github.com/rust-lang/crates.io-index" 4928checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282" 4929dependencies = [ 4930 "web-time", 4931 "zeroize", 4932] 4933 4934[[package]] 4935name = "rustls-webpki" 4936version = "0.101.7" 4937source = "registry+https://github.com/rust-lang/crates.io-index" 4938checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 4939dependencies = [ 4940 "ring", 4941 "untrusted", 4942] 4943 4944[[package]] 4945name = "rustls-webpki" 4946version = "0.103.8" 4947source = "registry+https://github.com/rust-lang/crates.io-index" 4948checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" 4949dependencies = [ 4950 "aws-lc-rs", 4951 "ring", 4952 "rustls-pki-types", 4953 "untrusted", 4954] 4955 4956[[package]] 4957name = "rustversion" 4958version = "1.0.22" 4959source = "registry+https://github.com/rust-lang/crates.io-index" 4960checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 4961 4962[[package]] 4963name = "ryu" 4964version = "1.0.21" 4965source = "registry+https://github.com/rust-lang/crates.io-index" 4966checksum = "62049b2877bf12821e8f9ad256ee38fdc31db7387ec2d3b3f403024de2034aea" 4967 4968[[package]] 4969name = "schannel" 4970version = "0.1.28" 4971source = "registry+https://github.com/rust-lang/crates.io-index" 4972checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" 4973dependencies = [ 4974 "windows-sys 0.61.2", 4975] 4976 4977[[package]] 4978name = "schemars" 4979version = "0.9.0" 4980source = "registry+https://github.com/rust-lang/crates.io-index" 4981checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" 4982dependencies = [ 4983 "dyn-clone", 4984 "ref-cast", 4985 "serde", 4986 "serde_json", 4987] 4988 4989[[package]] 4990name = "schemars" 4991version = "1.1.0" 4992source = "registry+https://github.com/rust-lang/crates.io-index" 4993checksum = "9558e172d4e8533736ba97870c4b2cd63f84b382a3d6eb063da41b91cce17289" 4994dependencies = [ 4995 "dyn-clone", 4996 "ref-cast", 4997 "serde", 4998 "serde_json", 4999] 5000 5001[[package]] 5002name = "scoped-tls" 5003version = "1.0.1" 5004source = "registry+https://github.com/rust-lang/crates.io-index" 5005checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 5006 5007[[package]] 5008name = "scopeguard" 5009version = "1.2.0" 5010source = "registry+https://github.com/rust-lang/crates.io-index" 5011checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 5012 5013[[package]] 5014name = "sct" 5015version = "0.7.1" 5016source = "registry+https://github.com/rust-lang/crates.io-index" 5017checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 5018dependencies = [ 5019 "ring", 5020 "untrusted", 5021] 5022 5023[[package]] 5024name = "sec1" 5025version = "0.3.0" 5026source = "registry+https://github.com/rust-lang/crates.io-index" 5027checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" 5028dependencies = [ 5029 "base16ct 0.1.1", 5030 "der 0.6.1", 5031 "generic-array", 5032 "pkcs8 0.9.0", 5033 "subtle", 5034 "zeroize", 5035] 5036 5037[[package]] 5038name = "sec1" 5039version = "0.7.3" 5040source = "registry+https://github.com/rust-lang/crates.io-index" 5041checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 5042dependencies = [ 5043 "base16ct 0.2.0", 5044 "der 0.7.10", 5045 "generic-array", 5046 "pkcs8 0.10.2", 5047 "subtle", 5048 "zeroize", 5049] 5050 5051[[package]] 5052name = "security-framework" 5053version = "2.11.1" 5054source = "registry+https://github.com/rust-lang/crates.io-index" 5055checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 5056dependencies = [ 5057 "bitflags", 5058 "core-foundation 0.9.4", 5059 "core-foundation-sys", 5060 "libc", 5061 "security-framework-sys", 5062] 5063 5064[[package]] 5065name = "security-framework" 5066version = "3.5.1" 5067source = "registry+https://github.com/rust-lang/crates.io-index" 5068checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef" 5069dependencies = [ 5070 "bitflags", 5071 "core-foundation 0.10.1", 5072 "core-foundation-sys", 5073 "libc", 5074 "security-framework-sys", 5075] 5076 5077[[package]] 5078name = "security-framework-sys" 5079version = "2.15.0" 5080source = "registry+https://github.com/rust-lang/crates.io-index" 5081checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" 5082dependencies = [ 5083 "core-foundation-sys", 5084 "libc", 5085] 5086 5087[[package]] 5088name = "semver" 5089version = "1.0.27" 5090source = "registry+https://github.com/rust-lang/crates.io-index" 5091checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" 5092 5093[[package]] 5094name = "send_wrapper" 5095version = "0.6.0" 5096source = "registry+https://github.com/rust-lang/crates.io-index" 5097checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" 5098 5099[[package]] 5100name = "serde" 5101version = "1.0.228" 5102source = "registry+https://github.com/rust-lang/crates.io-index" 5103checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 5104dependencies = [ 5105 "serde_core", 5106 "serde_derive", 5107] 5108 5109[[package]] 5110name = "serde_bytes" 5111version = "0.11.19" 5112source = "registry+https://github.com/rust-lang/crates.io-index" 5113checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" 5114dependencies = [ 5115 "serde", 5116 "serde_core", 5117] 5118 5119[[package]] 5120name = "serde_cbor_2" 5121version = "0.13.0" 5122source = "registry+https://github.com/rust-lang/crates.io-index" 5123checksum = "34aec2709de9078e077090abd848e967abab63c9fb3fdb5d4799ad359d8d482c" 5124dependencies = [ 5125 "half", 5126 "serde", 5127] 5128 5129[[package]] 5130name = "serde_core" 5131version = "1.0.228" 5132source = "registry+https://github.com/rust-lang/crates.io-index" 5133checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 5134dependencies = [ 5135 "serde_derive", 5136] 5137 5138[[package]] 5139name = "serde_derive" 5140version = "1.0.228" 5141source = "registry+https://github.com/rust-lang/crates.io-index" 5142checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 5143dependencies = [ 5144 "proc-macro2", 5145 "quote", 5146 "syn 2.0.111", 5147] 5148 5149[[package]] 5150name = "serde_html_form" 5151version = "0.2.8" 5152source = "registry+https://github.com/rust-lang/crates.io-index" 5153checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f" 5154dependencies = [ 5155 "form_urlencoded", 5156 "indexmap 2.12.1", 5157 "itoa", 5158 "ryu", 5159 "serde_core", 5160] 5161 5162[[package]] 5163name = "serde_ipld_dagcbor" 5164version = "0.6.4" 5165source = "registry+https://github.com/rust-lang/crates.io-index" 5166checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778" 5167dependencies = [ 5168 "cbor4ii", 5169 "ipld-core", 5170 "scopeguard", 5171 "serde", 5172] 5173 5174[[package]] 5175name = "serde_json" 5176version = "1.0.146" 5177source = "registry+https://github.com/rust-lang/crates.io-index" 5178checksum = "217ca874ae0207aac254aa02c957ded05585a90892cc8d87f9e5fa49669dadd8" 5179dependencies = [ 5180 "itoa", 5181 "memchr", 5182 "ryu", 5183 "serde", 5184 "serde_core", 5185] 5186 5187[[package]] 5188name = "serde_path_to_error" 5189version = "0.1.20" 5190source = "registry+https://github.com/rust-lang/crates.io-index" 5191checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" 5192dependencies = [ 5193 "itoa", 5194 "serde", 5195 "serde_core", 5196] 5197 5198[[package]] 5199name = "serde_repr" 5200version = "0.1.20" 5201source = "registry+https://github.com/rust-lang/crates.io-index" 5202checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 5203dependencies = [ 5204 "proc-macro2", 5205 "quote", 5206 "syn 2.0.111", 5207] 5208 5209[[package]] 5210name = "serde_urlencoded" 5211version = "0.7.1" 5212source = "registry+https://github.com/rust-lang/crates.io-index" 5213checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 5214dependencies = [ 5215 "form_urlencoded", 5216 "itoa", 5217 "ryu", 5218 "serde", 5219] 5220 5221[[package]] 5222name = "serde_with" 5223version = "3.16.1" 5224source = "registry+https://github.com/rust-lang/crates.io-index" 5225checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7" 5226dependencies = [ 5227 "base64 0.22.1", 5228 "chrono", 5229 "hex", 5230 "indexmap 1.9.3", 5231 "indexmap 2.12.1", 5232 "schemars 0.9.0", 5233 "schemars 1.1.0", 5234 "serde_core", 5235 "serde_json", 5236 "serde_with_macros", 5237 "time", 5238] 5239 5240[[package]] 5241name = "serde_with_macros" 5242version = "3.16.1" 5243source = "registry+https://github.com/rust-lang/crates.io-index" 5244checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c" 5245dependencies = [ 5246 "darling", 5247 "proc-macro2", 5248 "quote", 5249 "syn 2.0.111", 5250] 5251 5252[[package]] 5253name = "sha1" 5254version = "0.10.6" 5255source = "registry+https://github.com/rust-lang/crates.io-index" 5256checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 5257dependencies = [ 5258 "cfg-if", 5259 "cpufeatures", 5260 "digest", 5261] 5262 5263[[package]] 5264name = "sha1_smol" 5265version = "1.0.1" 5266source = "registry+https://github.com/rust-lang/crates.io-index" 5267checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" 5268 5269[[package]] 5270name = "sha2" 5271version = "0.10.9" 5272source = "registry+https://github.com/rust-lang/crates.io-index" 5273checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 5274dependencies = [ 5275 "cfg-if", 5276 "cpufeatures", 5277 "digest", 5278] 5279 5280[[package]] 5281name = "sharded-slab" 5282version = "0.1.7" 5283source = "registry+https://github.com/rust-lang/crates.io-index" 5284checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 5285dependencies = [ 5286 "lazy_static", 5287] 5288 5289[[package]] 5290name = "shlex" 5291version = "1.3.0" 5292source = "registry+https://github.com/rust-lang/crates.io-index" 5293checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 5294 5295[[package]] 5296name = "signal-hook-registry" 5297version = "1.4.7" 5298source = "registry+https://github.com/rust-lang/crates.io-index" 5299checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad" 5300dependencies = [ 5301 "libc", 5302] 5303 5304[[package]] 5305name = "signature" 5306version = "1.6.4" 5307source = "registry+https://github.com/rust-lang/crates.io-index" 5308checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" 5309dependencies = [ 5310 "digest", 5311 "rand_core 0.6.4", 5312] 5313 5314[[package]] 5315name = "signature" 5316version = "2.2.0" 5317source = "registry+https://github.com/rust-lang/crates.io-index" 5318checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 5319dependencies = [ 5320 "digest", 5321 "rand_core 0.6.4", 5322] 5323 5324[[package]] 5325name = "simd-adler32" 5326version = "0.3.8" 5327source = "registry+https://github.com/rust-lang/crates.io-index" 5328checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" 5329 5330[[package]] 5331name = "simple_asn1" 5332version = "0.6.3" 5333source = "registry+https://github.com/rust-lang/crates.io-index" 5334checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" 5335dependencies = [ 5336 "num-bigint", 5337 "num-traits", 5338 "thiserror 2.0.17", 5339 "time", 5340] 5341 5342[[package]] 5343name = "siphasher" 5344version = "1.0.1" 5345source = "registry+https://github.com/rust-lang/crates.io-index" 5346checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 5347 5348[[package]] 5349name = "sketches-ddsketch" 5350version = "0.3.0" 5351source = "registry+https://github.com/rust-lang/crates.io-index" 5352checksum = "c1e9a774a6c28142ac54bb25d25562e6bcf957493a184f15ad4eebccb23e410a" 5353 5354[[package]] 5355name = "slab" 5356version = "0.4.11" 5357source = "registry+https://github.com/rust-lang/crates.io-index" 5358checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 5359 5360[[package]] 5361name = "smallvec" 5362version = "1.15.1" 5363source = "registry+https://github.com/rust-lang/crates.io-index" 5364checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 5365dependencies = [ 5366 "serde", 5367] 5368 5369[[package]] 5370name = "smol_str" 5371version = "0.3.4" 5372source = "registry+https://github.com/rust-lang/crates.io-index" 5373checksum = "3498b0a27f93ef1402f20eefacfaa1691272ac4eca1cdc8c596cb0a245d6cbf5" 5374dependencies = [ 5375 "borsh", 5376 "serde_core", 5377] 5378 5379[[package]] 5380name = "socket2" 5381version = "0.5.10" 5382source = "registry+https://github.com/rust-lang/crates.io-index" 5383checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 5384dependencies = [ 5385 "libc", 5386 "windows-sys 0.52.0", 5387] 5388 5389[[package]] 5390name = "socket2" 5391version = "0.6.1" 5392source = "registry+https://github.com/rust-lang/crates.io-index" 5393checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" 5394dependencies = [ 5395 "libc", 5396 "windows-sys 0.60.2", 5397] 5398 5399[[package]] 5400name = "spin" 5401version = "0.9.8" 5402source = "registry+https://github.com/rust-lang/crates.io-index" 5403checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 5404dependencies = [ 5405 "lock_api", 5406] 5407 5408[[package]] 5409name = "spin" 5410version = "0.10.0" 5411source = "registry+https://github.com/rust-lang/crates.io-index" 5412checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" 5413 5414[[package]] 5415name = "spinning_top" 5416version = "0.3.0" 5417source = "registry+https://github.com/rust-lang/crates.io-index" 5418checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" 5419dependencies = [ 5420 "lock_api", 5421] 5422 5423[[package]] 5424name = "spki" 5425version = "0.6.0" 5426source = "registry+https://github.com/rust-lang/crates.io-index" 5427checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" 5428dependencies = [ 5429 "base64ct", 5430 "der 0.6.1", 5431] 5432 5433[[package]] 5434name = "spki" 5435version = "0.7.3" 5436source = "registry+https://github.com/rust-lang/crates.io-index" 5437checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 5438dependencies = [ 5439 "base64ct", 5440 "der 0.7.10", 5441] 5442 5443[[package]] 5444name = "sqlx" 5445version = "0.8.6" 5446source = "registry+https://github.com/rust-lang/crates.io-index" 5447checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc" 5448dependencies = [ 5449 "sqlx-core", 5450 "sqlx-macros", 5451 "sqlx-mysql", 5452 "sqlx-postgres", 5453 "sqlx-sqlite", 5454] 5455 5456[[package]] 5457name = "sqlx-core" 5458version = "0.8.6" 5459source = "registry+https://github.com/rust-lang/crates.io-index" 5460checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6" 5461dependencies = [ 5462 "base64 0.22.1", 5463 "bytes", 5464 "chrono", 5465 "crc", 5466 "crossbeam-queue", 5467 "either", 5468 "event-listener", 5469 "futures-core", 5470 "futures-intrusive", 5471 "futures-io", 5472 "futures-util", 5473 "hashbrown 0.15.5", 5474 "hashlink", 5475 "indexmap 2.12.1", 5476 "log", 5477 "memchr", 5478 "once_cell", 5479 "percent-encoding", 5480 "rustls 0.23.35", 5481 "serde", 5482 "serde_json", 5483 "sha2", 5484 "smallvec", 5485 "thiserror 2.0.17", 5486 "tokio", 5487 "tokio-stream", 5488 "tracing", 5489 "url", 5490 "uuid", 5491 "webpki-roots 0.26.11", 5492] 5493 5494[[package]] 5495name = "sqlx-macros" 5496version = "0.8.6" 5497source = "registry+https://github.com/rust-lang/crates.io-index" 5498checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d" 5499dependencies = [ 5500 "proc-macro2", 5501 "quote", 5502 "sqlx-core", 5503 "sqlx-macros-core", 5504 "syn 2.0.111", 5505] 5506 5507[[package]] 5508name = "sqlx-macros-core" 5509version = "0.8.6" 5510source = "registry+https://github.com/rust-lang/crates.io-index" 5511checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b" 5512dependencies = [ 5513 "dotenvy", 5514 "either", 5515 "heck 0.5.0", 5516 "hex", 5517 "once_cell", 5518 "proc-macro2", 5519 "quote", 5520 "serde", 5521 "serde_json", 5522 "sha2", 5523 "sqlx-core", 5524 "sqlx-mysql", 5525 "sqlx-postgres", 5526 "sqlx-sqlite", 5527 "syn 2.0.111", 5528 "tokio", 5529 "url", 5530] 5531 5532[[package]] 5533name = "sqlx-mysql" 5534version = "0.8.6" 5535source = "registry+https://github.com/rust-lang/crates.io-index" 5536checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526" 5537dependencies = [ 5538 "atoi", 5539 "base64 0.22.1", 5540 "bitflags", 5541 "byteorder", 5542 "bytes", 5543 "chrono", 5544 "crc", 5545 "digest", 5546 "dotenvy", 5547 "either", 5548 "futures-channel", 5549 "futures-core", 5550 "futures-io", 5551 "futures-util", 5552 "generic-array", 5553 "hex", 5554 "hkdf", 5555 "hmac", 5556 "itoa", 5557 "log", 5558 "md-5", 5559 "memchr", 5560 "once_cell", 5561 "percent-encoding", 5562 "rand 0.8.5", 5563 "rsa", 5564 "serde", 5565 "sha1", 5566 "sha2", 5567 "smallvec", 5568 "sqlx-core", 5569 "stringprep", 5570 "thiserror 2.0.17", 5571 "tracing", 5572 "uuid", 5573 "whoami", 5574] 5575 5576[[package]] 5577name = "sqlx-postgres" 5578version = "0.8.6" 5579source = "registry+https://github.com/rust-lang/crates.io-index" 5580checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46" 5581dependencies = [ 5582 "atoi", 5583 "base64 0.22.1", 5584 "bitflags", 5585 "byteorder", 5586 "chrono", 5587 "crc", 5588 "dotenvy", 5589 "etcetera 0.8.0", 5590 "futures-channel", 5591 "futures-core", 5592 "futures-util", 5593 "hex", 5594 "hkdf", 5595 "hmac", 5596 "home", 5597 "itoa", 5598 "log", 5599 "md-5", 5600 "memchr", 5601 "once_cell", 5602 "rand 0.8.5", 5603 "serde", 5604 "serde_json", 5605 "sha2", 5606 "smallvec", 5607 "sqlx-core", 5608 "stringprep", 5609 "thiserror 2.0.17", 5610 "tracing", 5611 "uuid", 5612 "whoami", 5613] 5614 5615[[package]] 5616name = "sqlx-sqlite" 5617version = "0.8.6" 5618source = "registry+https://github.com/rust-lang/crates.io-index" 5619checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea" 5620dependencies = [ 5621 "atoi", 5622 "chrono", 5623 "flume", 5624 "futures-channel", 5625 "futures-core", 5626 "futures-executor", 5627 "futures-intrusive", 5628 "futures-util", 5629 "libsqlite3-sys", 5630 "log", 5631 "percent-encoding", 5632 "serde", 5633 "serde_urlencoded", 5634 "sqlx-core", 5635 "thiserror 2.0.17", 5636 "tracing", 5637 "url", 5638 "uuid", 5639] 5640 5641[[package]] 5642name = "stable_deref_trait" 5643version = "1.2.1" 5644source = "registry+https://github.com/rust-lang/crates.io-index" 5645checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 5646 5647[[package]] 5648name = "static-regular-grammar" 5649version = "2.0.2" 5650source = "registry+https://github.com/rust-lang/crates.io-index" 5651checksum = "4f4a6c40247579acfbb138c3cd7de3dab113ab4ac6227f1b7de7d626ee667957" 5652dependencies = [ 5653 "abnf", 5654 "btree-range-map", 5655 "ciborium", 5656 "hex_fmt", 5657 "indoc", 5658 "proc-macro-error", 5659 "proc-macro2", 5660 "quote", 5661 "serde", 5662 "sha2", 5663 "syn 2.0.111", 5664 "thiserror 1.0.69", 5665] 5666 5667[[package]] 5668name = "static_assertions" 5669version = "1.1.0" 5670source = "registry+https://github.com/rust-lang/crates.io-index" 5671checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 5672 5673[[package]] 5674name = "string_cache" 5675version = "0.8.9" 5676source = "registry+https://github.com/rust-lang/crates.io-index" 5677checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" 5678dependencies = [ 5679 "new_debug_unreachable", 5680 "parking_lot", 5681 "phf_shared", 5682 "precomputed-hash", 5683 "serde", 5684] 5685 5686[[package]] 5687name = "string_cache_codegen" 5688version = "0.5.4" 5689source = "registry+https://github.com/rust-lang/crates.io-index" 5690checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" 5691dependencies = [ 5692 "phf_generator", 5693 "phf_shared", 5694 "proc-macro2", 5695 "quote", 5696] 5697 5698[[package]] 5699name = "stringprep" 5700version = "0.1.5" 5701source = "registry+https://github.com/rust-lang/crates.io-index" 5702checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" 5703dependencies = [ 5704 "unicode-bidi", 5705 "unicode-normalization", 5706 "unicode-properties", 5707] 5708 5709[[package]] 5710name = "strsim" 5711version = "0.11.1" 5712source = "registry+https://github.com/rust-lang/crates.io-index" 5713checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 5714 5715[[package]] 5716name = "structmeta" 5717version = "0.3.0" 5718source = "registry+https://github.com/rust-lang/crates.io-index" 5719checksum = "2e1575d8d40908d70f6fd05537266b90ae71b15dbbe7a8b7dffa2b759306d329" 5720dependencies = [ 5721 "proc-macro2", 5722 "quote", 5723 "structmeta-derive", 5724 "syn 2.0.111", 5725] 5726 5727[[package]] 5728name = "structmeta-derive" 5729version = "0.3.0" 5730source = "registry+https://github.com/rust-lang/crates.io-index" 5731checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc" 5732dependencies = [ 5733 "proc-macro2", 5734 "quote", 5735 "syn 2.0.111", 5736] 5737 5738[[package]] 5739name = "subtle" 5740version = "2.6.1" 5741source = "registry+https://github.com/rust-lang/crates.io-index" 5742checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 5743 5744[[package]] 5745name = "syn" 5746version = "1.0.109" 5747source = "registry+https://github.com/rust-lang/crates.io-index" 5748checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 5749dependencies = [ 5750 "proc-macro2", 5751 "quote", 5752 "unicode-ident", 5753] 5754 5755[[package]] 5756name = "syn" 5757version = "2.0.111" 5758source = "registry+https://github.com/rust-lang/crates.io-index" 5759checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87" 5760dependencies = [ 5761 "proc-macro2", 5762 "quote", 5763 "unicode-ident", 5764] 5765 5766[[package]] 5767name = "sync_wrapper" 5768version = "1.0.2" 5769source = "registry+https://github.com/rust-lang/crates.io-index" 5770checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 5771dependencies = [ 5772 "futures-core", 5773] 5774 5775[[package]] 5776name = "synstructure" 5777version = "0.13.2" 5778source = "registry+https://github.com/rust-lang/crates.io-index" 5779checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 5780dependencies = [ 5781 "proc-macro2", 5782 "quote", 5783 "syn 2.0.111", 5784] 5785 5786[[package]] 5787name = "system-configuration" 5788version = "0.6.1" 5789source = "registry+https://github.com/rust-lang/crates.io-index" 5790checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" 5791dependencies = [ 5792 "bitflags", 5793 "core-foundation 0.9.4", 5794 "system-configuration-sys", 5795] 5796 5797[[package]] 5798name = "system-configuration-sys" 5799version = "0.6.0" 5800source = "registry+https://github.com/rust-lang/crates.io-index" 5801checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 5802dependencies = [ 5803 "core-foundation-sys", 5804 "libc", 5805] 5806 5807[[package]] 5808name = "tagptr" 5809version = "0.2.0" 5810source = "registry+https://github.com/rust-lang/crates.io-index" 5811checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" 5812 5813[[package]] 5814name = "tempfile" 5815version = "3.23.0" 5816source = "registry+https://github.com/rust-lang/crates.io-index" 5817checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" 5818dependencies = [ 5819 "fastrand", 5820 "getrandom 0.3.4", 5821 "once_cell", 5822 "rustix", 5823 "windows-sys 0.61.2", 5824] 5825 5826[[package]] 5827name = "tendril" 5828version = "0.4.3" 5829source = "registry+https://github.com/rust-lang/crates.io-index" 5830checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 5831dependencies = [ 5832 "futf", 5833 "mac", 5834 "utf-8", 5835] 5836 5837[[package]] 5838name = "testcontainers" 5839version = "0.26.2" 5840source = "registry+https://github.com/rust-lang/crates.io-index" 5841checksum = "1483605f58b2fff80d786eb56a0b6b4e8b1e5423fbc9ec2e3e562fa2040d6f27" 5842dependencies = [ 5843 "astral-tokio-tar", 5844 "async-trait", 5845 "bollard", 5846 "bytes", 5847 "docker_credential", 5848 "either", 5849 "etcetera 0.11.0", 5850 "ferroid", 5851 "futures", 5852 "itertools", 5853 "log", 5854 "memchr", 5855 "parse-display", 5856 "pin-project-lite", 5857 "serde", 5858 "serde_json", 5859 "serde_with", 5860 "thiserror 2.0.17", 5861 "tokio", 5862 "tokio-stream", 5863 "tokio-util", 5864 "url", 5865] 5866 5867[[package]] 5868name = "testcontainers-modules" 5869version = "0.14.0" 5870source = "registry+https://github.com/rust-lang/crates.io-index" 5871checksum = "5e75e78ff453128a2c7da9a5d5a3325ea34ea214d4bf51eab3417de23a4e5147" 5872dependencies = [ 5873 "testcontainers", 5874] 5875 5876[[package]] 5877name = "thiserror" 5878version = "1.0.69" 5879source = "registry+https://github.com/rust-lang/crates.io-index" 5880checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 5881dependencies = [ 5882 "thiserror-impl 1.0.69", 5883] 5884 5885[[package]] 5886name = "thiserror" 5887version = "2.0.17" 5888source = "registry+https://github.com/rust-lang/crates.io-index" 5889checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 5890dependencies = [ 5891 "thiserror-impl 2.0.17", 5892] 5893 5894[[package]] 5895name = "thiserror-impl" 5896version = "1.0.69" 5897source = "registry+https://github.com/rust-lang/crates.io-index" 5898checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 5899dependencies = [ 5900 "proc-macro2", 5901 "quote", 5902 "syn 2.0.111", 5903] 5904 5905[[package]] 5906name = "thiserror-impl" 5907version = "2.0.17" 5908source = "registry+https://github.com/rust-lang/crates.io-index" 5909checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 5910dependencies = [ 5911 "proc-macro2", 5912 "quote", 5913 "syn 2.0.111", 5914] 5915 5916[[package]] 5917name = "thread_local" 5918version = "1.1.9" 5919source = "registry+https://github.com/rust-lang/crates.io-index" 5920checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 5921dependencies = [ 5922 "cfg-if", 5923] 5924 5925[[package]] 5926name = "time" 5927version = "0.3.44" 5928source = "registry+https://github.com/rust-lang/crates.io-index" 5929checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" 5930dependencies = [ 5931 "deranged", 5932 "itoa", 5933 "num-conv", 5934 "powerfmt", 5935 "serde", 5936 "time-core", 5937 "time-macros", 5938] 5939 5940[[package]] 5941name = "time-core" 5942version = "0.1.6" 5943source = "registry+https://github.com/rust-lang/crates.io-index" 5944checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" 5945 5946[[package]] 5947name = "time-macros" 5948version = "0.2.24" 5949source = "registry+https://github.com/rust-lang/crates.io-index" 5950checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" 5951dependencies = [ 5952 "num-conv", 5953 "time-core", 5954] 5955 5956[[package]] 5957name = "tinystr" 5958version = "0.8.2" 5959source = "registry+https://github.com/rust-lang/crates.io-index" 5960checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" 5961dependencies = [ 5962 "displaydoc", 5963 "zerovec", 5964] 5965 5966[[package]] 5967name = "tinyvec" 5968version = "1.10.0" 5969source = "registry+https://github.com/rust-lang/crates.io-index" 5970checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" 5971dependencies = [ 5972 "tinyvec_macros", 5973] 5974 5975[[package]] 5976name = "tinyvec_macros" 5977version = "0.1.1" 5978source = "registry+https://github.com/rust-lang/crates.io-index" 5979checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 5980 5981[[package]] 5982name = "tokio" 5983version = "1.48.0" 5984source = "registry+https://github.com/rust-lang/crates.io-index" 5985checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" 5986dependencies = [ 5987 "bytes", 5988 "libc", 5989 "mio", 5990 "pin-project-lite", 5991 "signal-hook-registry", 5992 "socket2 0.6.1", 5993 "tokio-macros", 5994 "windows-sys 0.61.2", 5995] 5996 5997[[package]] 5998name = "tokio-macros" 5999version = "2.6.0" 6000source = "registry+https://github.com/rust-lang/crates.io-index" 6001checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" 6002dependencies = [ 6003 "proc-macro2", 6004 "quote", 6005 "syn 2.0.111", 6006] 6007 6008[[package]] 6009name = "tokio-native-tls" 6010version = "0.3.1" 6011source = "registry+https://github.com/rust-lang/crates.io-index" 6012checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 6013dependencies = [ 6014 "native-tls", 6015 "tokio", 6016] 6017 6018[[package]] 6019name = "tokio-rustls" 6020version = "0.24.1" 6021source = "registry+https://github.com/rust-lang/crates.io-index" 6022checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 6023dependencies = [ 6024 "rustls 0.21.12", 6025 "tokio", 6026] 6027 6028[[package]] 6029name = "tokio-rustls" 6030version = "0.26.4" 6031source = "registry+https://github.com/rust-lang/crates.io-index" 6032checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 6033dependencies = [ 6034 "rustls 0.23.35", 6035 "tokio", 6036] 6037 6038[[package]] 6039name = "tokio-stream" 6040version = "0.1.17" 6041source = "registry+https://github.com/rust-lang/crates.io-index" 6042checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" 6043dependencies = [ 6044 "futures-core", 6045 "pin-project-lite", 6046 "tokio", 6047] 6048 6049[[package]] 6050name = "tokio-tungstenite" 6051version = "0.28.0" 6052source = "registry+https://github.com/rust-lang/crates.io-index" 6053checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857" 6054dependencies = [ 6055 "futures-util", 6056 "log", 6057 "native-tls", 6058 "tokio", 6059 "tokio-native-tls", 6060 "tungstenite", 6061] 6062 6063[[package]] 6064name = "tokio-util" 6065version = "0.7.17" 6066source = "registry+https://github.com/rust-lang/crates.io-index" 6067checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" 6068dependencies = [ 6069 "bytes", 6070 "futures-core", 6071 "futures-sink", 6072 "futures-util", 6073 "pin-project-lite", 6074 "tokio", 6075] 6076 6077[[package]] 6078name = "tonic" 6079version = "0.14.2" 6080source = "registry+https://github.com/rust-lang/crates.io-index" 6081checksum = "eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203" 6082dependencies = [ 6083 "async-trait", 6084 "axum", 6085 "base64 0.22.1", 6086 "bytes", 6087 "h2 0.4.12", 6088 "http 1.4.0", 6089 "http-body 1.0.1", 6090 "http-body-util", 6091 "hyper 1.8.1", 6092 "hyper-timeout", 6093 "hyper-util", 6094 "percent-encoding", 6095 "pin-project", 6096 "socket2 0.6.1", 6097 "sync_wrapper", 6098 "tokio", 6099 "tokio-stream", 6100 "tower", 6101 "tower-layer", 6102 "tower-service", 6103 "tracing", 6104] 6105 6106[[package]] 6107name = "tonic-prost" 6108version = "0.14.2" 6109source = "registry+https://github.com/rust-lang/crates.io-index" 6110checksum = "66bd50ad6ce1252d87ef024b3d64fe4c3cf54a86fb9ef4c631fdd0ded7aeaa67" 6111dependencies = [ 6112 "bytes", 6113 "prost", 6114 "tonic", 6115] 6116 6117[[package]] 6118name = "totp-rs" 6119version = "5.7.0" 6120source = "registry+https://github.com/rust-lang/crates.io-index" 6121checksum = "f124352108f58ef88299e909f6e9470f1cdc8d2a1397963901b4a6366206bf72" 6122dependencies = [ 6123 "base32", 6124 "constant_time_eq", 6125 "hmac", 6126 "qrcodegen-image", 6127 "sha1", 6128 "sha2", 6129 "url", 6130 "urlencoding", 6131] 6132 6133[[package]] 6134name = "tower" 6135version = "0.5.2" 6136source = "registry+https://github.com/rust-lang/crates.io-index" 6137checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 6138dependencies = [ 6139 "futures-core", 6140 "futures-util", 6141 "indexmap 2.12.1", 6142 "pin-project-lite", 6143 "slab", 6144 "sync_wrapper", 6145 "tokio", 6146 "tokio-util", 6147 "tower-layer", 6148 "tower-service", 6149 "tracing", 6150] 6151 6152[[package]] 6153name = "tower-http" 6154version = "0.6.8" 6155source = "registry+https://github.com/rust-lang/crates.io-index" 6156checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" 6157dependencies = [ 6158 "async-compression", 6159 "bitflags", 6160 "bytes", 6161 "futures-core", 6162 "futures-util", 6163 "http 1.4.0", 6164 "http-body 1.0.1", 6165 "http-body-util", 6166 "http-range-header", 6167 "httpdate", 6168 "iri-string", 6169 "mime", 6170 "mime_guess", 6171 "percent-encoding", 6172 "pin-project-lite", 6173 "tokio", 6174 "tokio-util", 6175 "tower", 6176 "tower-layer", 6177 "tower-service", 6178 "tracing", 6179] 6180 6181[[package]] 6182name = "tower-layer" 6183version = "0.3.3" 6184source = "registry+https://github.com/rust-lang/crates.io-index" 6185checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 6186 6187[[package]] 6188name = "tower-service" 6189version = "0.3.3" 6190source = "registry+https://github.com/rust-lang/crates.io-index" 6191checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 6192 6193[[package]] 6194name = "tracing" 6195version = "0.1.44" 6196source = "registry+https://github.com/rust-lang/crates.io-index" 6197checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 6198dependencies = [ 6199 "log", 6200 "pin-project-lite", 6201 "tracing-attributes", 6202 "tracing-core", 6203] 6204 6205[[package]] 6206name = "tracing-attributes" 6207version = "0.1.31" 6208source = "registry+https://github.com/rust-lang/crates.io-index" 6209checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 6210dependencies = [ 6211 "proc-macro2", 6212 "quote", 6213 "syn 2.0.111", 6214] 6215 6216[[package]] 6217name = "tracing-core" 6218version = "0.1.36" 6219source = "registry+https://github.com/rust-lang/crates.io-index" 6220checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 6221dependencies = [ 6222 "once_cell", 6223 "valuable", 6224] 6225 6226[[package]] 6227name = "tracing-log" 6228version = "0.2.0" 6229source = "registry+https://github.com/rust-lang/crates.io-index" 6230checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 6231dependencies = [ 6232 "log", 6233 "once_cell", 6234 "tracing-core", 6235] 6236 6237[[package]] 6238name = "tracing-subscriber" 6239version = "0.3.22" 6240source = "registry+https://github.com/rust-lang/crates.io-index" 6241checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e" 6242dependencies = [ 6243 "matchers", 6244 "nu-ansi-term", 6245 "once_cell", 6246 "regex-automata", 6247 "sharded-slab", 6248 "smallvec", 6249 "thread_local", 6250 "tracing", 6251 "tracing-core", 6252 "tracing-log", 6253] 6254 6255[[package]] 6256name = "trait-variant" 6257version = "0.1.2" 6258source = "registry+https://github.com/rust-lang/crates.io-index" 6259checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" 6260dependencies = [ 6261 "proc-macro2", 6262 "quote", 6263 "syn 2.0.111", 6264] 6265 6266[[package]] 6267name = "tranquil-pds" 6268version = "0.1.0" 6269dependencies = [ 6270 "aes-gcm", 6271 "anyhow", 6272 "async-trait", 6273 "aws-config", 6274 "aws-sdk-s3", 6275 "axum", 6276 "base32", 6277 "base64 0.22.1", 6278 "bcrypt", 6279 "bs58", 6280 "bytes", 6281 "chrono", 6282 "ciborium", 6283 "cid", 6284 "ctor", 6285 "dotenvy", 6286 "ed25519-dalek", 6287 "futures", 6288 "governor", 6289 "hickory-resolver", 6290 "hkdf", 6291 "hmac", 6292 "image", 6293 "ipld-core", 6294 "iroh-car", 6295 "jacquard", 6296 "jacquard-axum", 6297 "jacquard-repo", 6298 "jsonwebtoken", 6299 "k256", 6300 "metrics", 6301 "metrics-exporter-prometheus", 6302 "multibase", 6303 "multihash", 6304 "p256 0.13.2", 6305 "p384", 6306 "rand 0.8.5", 6307 "redis", 6308 "reqwest", 6309 "serde", 6310 "serde_bytes", 6311 "serde_ipld_dagcbor", 6312 "serde_json", 6313 "serde_urlencoded", 6314 "sha2", 6315 "sqlx", 6316 "subtle", 6317 "testcontainers", 6318 "testcontainers-modules", 6319 "thiserror 2.0.17", 6320 "tokio", 6321 "tokio-tungstenite", 6322 "totp-rs", 6323 "tower-http", 6324 "tracing", 6325 "tracing-subscriber", 6326 "urlencoding", 6327 "uuid", 6328 "webauthn-rs", 6329 "webauthn-rs-proto", 6330 "wiremock", 6331] 6332 6333[[package]] 6334name = "triomphe" 6335version = "0.1.15" 6336source = "registry+https://github.com/rust-lang/crates.io-index" 6337checksum = "dd69c5aa8f924c7519d6372789a74eac5b94fb0f8fcf0d4a97eb0bfc3e785f39" 6338 6339[[package]] 6340name = "try-lock" 6341version = "0.2.5" 6342source = "registry+https://github.com/rust-lang/crates.io-index" 6343checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 6344 6345[[package]] 6346name = "tungstenite" 6347version = "0.28.0" 6348source = "registry+https://github.com/rust-lang/crates.io-index" 6349checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442" 6350dependencies = [ 6351 "bytes", 6352 "data-encoding", 6353 "http 1.4.0", 6354 "httparse", 6355 "log", 6356 "native-tls", 6357 "rand 0.9.2", 6358 "sha1", 6359 "thiserror 2.0.17", 6360 "utf-8", 6361] 6362 6363[[package]] 6364name = "typenum" 6365version = "1.19.0" 6366source = "registry+https://github.com/rust-lang/crates.io-index" 6367checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 6368 6369[[package]] 6370name = "unicase" 6371version = "2.8.1" 6372source = "registry+https://github.com/rust-lang/crates.io-index" 6373checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" 6374 6375[[package]] 6376name = "unicode-bidi" 6377version = "0.3.18" 6378source = "registry+https://github.com/rust-lang/crates.io-index" 6379checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" 6380 6381[[package]] 6382name = "unicode-ident" 6383version = "1.0.22" 6384source = "registry+https://github.com/rust-lang/crates.io-index" 6385checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 6386 6387[[package]] 6388name = "unicode-normalization" 6389version = "0.1.25" 6390source = "registry+https://github.com/rust-lang/crates.io-index" 6391checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" 6392dependencies = [ 6393 "tinyvec", 6394] 6395 6396[[package]] 6397name = "unicode-properties" 6398version = "0.1.4" 6399source = "registry+https://github.com/rust-lang/crates.io-index" 6400checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d" 6401 6402[[package]] 6403name = "unicode-segmentation" 6404version = "1.12.0" 6405source = "registry+https://github.com/rust-lang/crates.io-index" 6406checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 6407 6408[[package]] 6409name = "unicode-width" 6410version = "0.1.14" 6411source = "registry+https://github.com/rust-lang/crates.io-index" 6412checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 6413 6414[[package]] 6415name = "unicode-xid" 6416version = "0.2.6" 6417source = "registry+https://github.com/rust-lang/crates.io-index" 6418checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 6419 6420[[package]] 6421name = "universal-hash" 6422version = "0.5.1" 6423source = "registry+https://github.com/rust-lang/crates.io-index" 6424checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 6425dependencies = [ 6426 "crypto-common", 6427 "subtle", 6428] 6429 6430[[package]] 6431name = "unsigned-varint" 6432version = "0.7.2" 6433source = "registry+https://github.com/rust-lang/crates.io-index" 6434checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105" 6435 6436[[package]] 6437name = "unsigned-varint" 6438version = "0.8.0" 6439source = "registry+https://github.com/rust-lang/crates.io-index" 6440checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 6441 6442[[package]] 6443name = "untrusted" 6444version = "0.9.0" 6445source = "registry+https://github.com/rust-lang/crates.io-index" 6446checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 6447 6448[[package]] 6449name = "ureq" 6450version = "3.1.4" 6451source = "registry+https://github.com/rust-lang/crates.io-index" 6452checksum = "d39cb1dbab692d82a977c0392ffac19e188bd9186a9f32806f0aaa859d75585a" 6453dependencies = [ 6454 "base64 0.22.1", 6455 "log", 6456 "percent-encoding", 6457 "rustls 0.23.35", 6458 "rustls-pki-types", 6459 "ureq-proto", 6460 "utf-8", 6461 "webpki-roots 1.0.4", 6462] 6463 6464[[package]] 6465name = "ureq-proto" 6466version = "0.5.3" 6467source = "registry+https://github.com/rust-lang/crates.io-index" 6468checksum = "d81f9efa9df032be5934a46a068815a10a042b494b6a58cb0a1a97bb5467ed6f" 6469dependencies = [ 6470 "base64 0.22.1", 6471 "http 1.4.0", 6472 "httparse", 6473 "log", 6474] 6475 6476[[package]] 6477name = "url" 6478version = "2.5.7" 6479source = "registry+https://github.com/rust-lang/crates.io-index" 6480checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" 6481dependencies = [ 6482 "form_urlencoded", 6483 "idna", 6484 "percent-encoding", 6485 "serde", 6486] 6487 6488[[package]] 6489name = "urlencoding" 6490version = "2.1.3" 6491source = "registry+https://github.com/rust-lang/crates.io-index" 6492checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 6493 6494[[package]] 6495name = "utf-8" 6496version = "0.7.6" 6497source = "registry+https://github.com/rust-lang/crates.io-index" 6498checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 6499 6500[[package]] 6501name = "utf8_iter" 6502version = "1.0.4" 6503source = "registry+https://github.com/rust-lang/crates.io-index" 6504checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 6505 6506[[package]] 6507name = "uuid" 6508version = "1.19.0" 6509source = "registry+https://github.com/rust-lang/crates.io-index" 6510checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" 6511dependencies = [ 6512 "getrandom 0.3.4", 6513 "js-sys", 6514 "rand 0.9.2", 6515 "serde_core", 6516 "sha1_smol", 6517 "wasm-bindgen", 6518] 6519 6520[[package]] 6521name = "valuable" 6522version = "0.1.1" 6523source = "registry+https://github.com/rust-lang/crates.io-index" 6524checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 6525 6526[[package]] 6527name = "vcpkg" 6528version = "0.2.15" 6529source = "registry+https://github.com/rust-lang/crates.io-index" 6530checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 6531 6532[[package]] 6533name = "version_check" 6534version = "0.9.5" 6535source = "registry+https://github.com/rust-lang/crates.io-index" 6536checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 6537 6538[[package]] 6539name = "vsimd" 6540version = "0.8.0" 6541source = "registry+https://github.com/rust-lang/crates.io-index" 6542checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64" 6543 6544[[package]] 6545name = "want" 6546version = "0.3.1" 6547source = "registry+https://github.com/rust-lang/crates.io-index" 6548checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 6549dependencies = [ 6550 "try-lock", 6551] 6552 6553[[package]] 6554name = "wasi" 6555version = "0.11.1+wasi-snapshot-preview1" 6556source = "registry+https://github.com/rust-lang/crates.io-index" 6557checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 6558 6559[[package]] 6560name = "wasip2" 6561version = "1.0.1+wasi-0.2.4" 6562source = "registry+https://github.com/rust-lang/crates.io-index" 6563checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 6564dependencies = [ 6565 "wit-bindgen", 6566] 6567 6568[[package]] 6569name = "wasite" 6570version = "0.1.0" 6571source = "registry+https://github.com/rust-lang/crates.io-index" 6572checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 6573 6574[[package]] 6575name = "wasm-bindgen" 6576version = "0.2.106" 6577source = "registry+https://github.com/rust-lang/crates.io-index" 6578checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" 6579dependencies = [ 6580 "cfg-if", 6581 "once_cell", 6582 "rustversion", 6583 "wasm-bindgen-macro", 6584 "wasm-bindgen-shared", 6585] 6586 6587[[package]] 6588name = "wasm-bindgen-futures" 6589version = "0.4.56" 6590source = "registry+https://github.com/rust-lang/crates.io-index" 6591checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c" 6592dependencies = [ 6593 "cfg-if", 6594 "js-sys", 6595 "once_cell", 6596 "wasm-bindgen", 6597 "web-sys", 6598] 6599 6600[[package]] 6601name = "wasm-bindgen-macro" 6602version = "0.2.106" 6603source = "registry+https://github.com/rust-lang/crates.io-index" 6604checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" 6605dependencies = [ 6606 "quote", 6607 "wasm-bindgen-macro-support", 6608] 6609 6610[[package]] 6611name = "wasm-bindgen-macro-support" 6612version = "0.2.106" 6613source = "registry+https://github.com/rust-lang/crates.io-index" 6614checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" 6615dependencies = [ 6616 "bumpalo", 6617 "proc-macro2", 6618 "quote", 6619 "syn 2.0.111", 6620 "wasm-bindgen-shared", 6621] 6622 6623[[package]] 6624name = "wasm-bindgen-shared" 6625version = "0.2.106" 6626source = "registry+https://github.com/rust-lang/crates.io-index" 6627checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" 6628dependencies = [ 6629 "unicode-ident", 6630] 6631 6632[[package]] 6633name = "web-sys" 6634version = "0.3.83" 6635source = "registry+https://github.com/rust-lang/crates.io-index" 6636checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac" 6637dependencies = [ 6638 "js-sys", 6639 "wasm-bindgen", 6640] 6641 6642[[package]] 6643name = "web-time" 6644version = "1.1.0" 6645source = "registry+https://github.com/rust-lang/crates.io-index" 6646checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 6647dependencies = [ 6648 "js-sys", 6649 "wasm-bindgen", 6650] 6651 6652[[package]] 6653name = "webauthn-attestation-ca" 6654version = "0.5.4" 6655source = "registry+https://github.com/rust-lang/crates.io-index" 6656checksum = "fafcf13f7dc1fb292ed4aea22cdd3757c285d7559e9748950ee390249da4da6b" 6657dependencies = [ 6658 "base64urlsafedata", 6659 "openssl", 6660 "openssl-sys", 6661 "serde", 6662 "tracing", 6663 "uuid", 6664] 6665 6666[[package]] 6667name = "webauthn-rs" 6668version = "0.5.4" 6669source = "registry+https://github.com/rust-lang/crates.io-index" 6670checksum = "1b24d082d3360258fefb6ffe56123beef7d6868c765c779f97b7a2fcf06727f8" 6671dependencies = [ 6672 "base64urlsafedata", 6673 "serde", 6674 "tracing", 6675 "url", 6676 "uuid", 6677 "webauthn-rs-core", 6678] 6679 6680[[package]] 6681name = "webauthn-rs-core" 6682version = "0.5.4" 6683source = "registry+https://github.com/rust-lang/crates.io-index" 6684checksum = "15784340a24c170ce60567282fb956a0938742dbfbf9eff5df793a686a009b8b" 6685dependencies = [ 6686 "base64 0.21.7", 6687 "base64urlsafedata", 6688 "der-parser", 6689 "hex", 6690 "nom", 6691 "openssl", 6692 "openssl-sys", 6693 "rand 0.9.2", 6694 "rand_chacha 0.9.0", 6695 "serde", 6696 "serde_cbor_2", 6697 "serde_json", 6698 "thiserror 1.0.69", 6699 "tracing", 6700 "url", 6701 "uuid", 6702 "webauthn-attestation-ca", 6703 "webauthn-rs-proto", 6704 "x509-parser", 6705] 6706 6707[[package]] 6708name = "webauthn-rs-proto" 6709version = "0.5.4" 6710source = "registry+https://github.com/rust-lang/crates.io-index" 6711checksum = "16a1fb2580ce73baa42d3011a24de2ceab0d428de1879ece06e02e8c416e497c" 6712dependencies = [ 6713 "base64 0.21.7", 6714 "base64urlsafedata", 6715 "serde", 6716 "serde_json", 6717 "url", 6718] 6719 6720[[package]] 6721name = "webpage" 6722version = "2.0.1" 6723source = "registry+https://github.com/rust-lang/crates.io-index" 6724checksum = "70862efc041d46e6bbaa82bb9c34ae0596d090e86cbd14bd9e93b36ee6802eac" 6725dependencies = [ 6726 "html5ever", 6727 "markup5ever_rcdom", 6728 "serde_json", 6729 "url", 6730] 6731 6732[[package]] 6733name = "webpki-roots" 6734version = "0.26.11" 6735source = "registry+https://github.com/rust-lang/crates.io-index" 6736checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" 6737dependencies = [ 6738 "webpki-roots 1.0.4", 6739] 6740 6741[[package]] 6742name = "webpki-roots" 6743version = "1.0.4" 6744source = "registry+https://github.com/rust-lang/crates.io-index" 6745checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e" 6746dependencies = [ 6747 "rustls-pki-types", 6748] 6749 6750[[package]] 6751name = "weezl" 6752version = "0.1.12" 6753source = "registry+https://github.com/rust-lang/crates.io-index" 6754checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88" 6755 6756[[package]] 6757name = "whoami" 6758version = "1.6.1" 6759source = "registry+https://github.com/rust-lang/crates.io-index" 6760checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d" 6761dependencies = [ 6762 "libredox", 6763 "wasite", 6764] 6765 6766[[package]] 6767name = "widestring" 6768version = "1.2.1" 6769source = "registry+https://github.com/rust-lang/crates.io-index" 6770checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" 6771 6772[[package]] 6773name = "winapi" 6774version = "0.3.9" 6775source = "registry+https://github.com/rust-lang/crates.io-index" 6776checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 6777dependencies = [ 6778 "winapi-i686-pc-windows-gnu", 6779 "winapi-x86_64-pc-windows-gnu", 6780] 6781 6782[[package]] 6783name = "winapi-i686-pc-windows-gnu" 6784version = "0.4.0" 6785source = "registry+https://github.com/rust-lang/crates.io-index" 6786checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 6787 6788[[package]] 6789name = "winapi-x86_64-pc-windows-gnu" 6790version = "0.4.0" 6791source = "registry+https://github.com/rust-lang/crates.io-index" 6792checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 6793 6794[[package]] 6795name = "windows-core" 6796version = "0.62.2" 6797source = "registry+https://github.com/rust-lang/crates.io-index" 6798checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 6799dependencies = [ 6800 "windows-implement", 6801 "windows-interface", 6802 "windows-link", 6803 "windows-result", 6804 "windows-strings", 6805] 6806 6807[[package]] 6808name = "windows-implement" 6809version = "0.60.2" 6810source = "registry+https://github.com/rust-lang/crates.io-index" 6811checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 6812dependencies = [ 6813 "proc-macro2", 6814 "quote", 6815 "syn 2.0.111", 6816] 6817 6818[[package]] 6819name = "windows-interface" 6820version = "0.59.3" 6821source = "registry+https://github.com/rust-lang/crates.io-index" 6822checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 6823dependencies = [ 6824 "proc-macro2", 6825 "quote", 6826 "syn 2.0.111", 6827] 6828 6829[[package]] 6830name = "windows-link" 6831version = "0.2.1" 6832source = "registry+https://github.com/rust-lang/crates.io-index" 6833checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 6834 6835[[package]] 6836name = "windows-registry" 6837version = "0.6.1" 6838source = "registry+https://github.com/rust-lang/crates.io-index" 6839checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" 6840dependencies = [ 6841 "windows-link", 6842 "windows-result", 6843 "windows-strings", 6844] 6845 6846[[package]] 6847name = "windows-result" 6848version = "0.4.1" 6849source = "registry+https://github.com/rust-lang/crates.io-index" 6850checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 6851dependencies = [ 6852 "windows-link", 6853] 6854 6855[[package]] 6856name = "windows-strings" 6857version = "0.5.1" 6858source = "registry+https://github.com/rust-lang/crates.io-index" 6859checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 6860dependencies = [ 6861 "windows-link", 6862] 6863 6864[[package]] 6865name = "windows-sys" 6866version = "0.48.0" 6867source = "registry+https://github.com/rust-lang/crates.io-index" 6868checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 6869dependencies = [ 6870 "windows-targets 0.48.5", 6871] 6872 6873[[package]] 6874name = "windows-sys" 6875version = "0.52.0" 6876source = "registry+https://github.com/rust-lang/crates.io-index" 6877checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 6878dependencies = [ 6879 "windows-targets 0.52.6", 6880] 6881 6882[[package]] 6883name = "windows-sys" 6884version = "0.60.2" 6885source = "registry+https://github.com/rust-lang/crates.io-index" 6886checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 6887dependencies = [ 6888 "windows-targets 0.53.5", 6889] 6890 6891[[package]] 6892name = "windows-sys" 6893version = "0.61.2" 6894source = "registry+https://github.com/rust-lang/crates.io-index" 6895checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 6896dependencies = [ 6897 "windows-link", 6898] 6899 6900[[package]] 6901name = "windows-targets" 6902version = "0.48.5" 6903source = "registry+https://github.com/rust-lang/crates.io-index" 6904checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 6905dependencies = [ 6906 "windows_aarch64_gnullvm 0.48.5", 6907 "windows_aarch64_msvc 0.48.5", 6908 "windows_i686_gnu 0.48.5", 6909 "windows_i686_msvc 0.48.5", 6910 "windows_x86_64_gnu 0.48.5", 6911 "windows_x86_64_gnullvm 0.48.5", 6912 "windows_x86_64_msvc 0.48.5", 6913] 6914 6915[[package]] 6916name = "windows-targets" 6917version = "0.52.6" 6918source = "registry+https://github.com/rust-lang/crates.io-index" 6919checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 6920dependencies = [ 6921 "windows_aarch64_gnullvm 0.52.6", 6922 "windows_aarch64_msvc 0.52.6", 6923 "windows_i686_gnu 0.52.6", 6924 "windows_i686_gnullvm 0.52.6", 6925 "windows_i686_msvc 0.52.6", 6926 "windows_x86_64_gnu 0.52.6", 6927 "windows_x86_64_gnullvm 0.52.6", 6928 "windows_x86_64_msvc 0.52.6", 6929] 6930 6931[[package]] 6932name = "windows-targets" 6933version = "0.53.5" 6934source = "registry+https://github.com/rust-lang/crates.io-index" 6935checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 6936dependencies = [ 6937 "windows-link", 6938 "windows_aarch64_gnullvm 0.53.1", 6939 "windows_aarch64_msvc 0.53.1", 6940 "windows_i686_gnu 0.53.1", 6941 "windows_i686_gnullvm 0.53.1", 6942 "windows_i686_msvc 0.53.1", 6943 "windows_x86_64_gnu 0.53.1", 6944 "windows_x86_64_gnullvm 0.53.1", 6945 "windows_x86_64_msvc 0.53.1", 6946] 6947 6948[[package]] 6949name = "windows_aarch64_gnullvm" 6950version = "0.48.5" 6951source = "registry+https://github.com/rust-lang/crates.io-index" 6952checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 6953 6954[[package]] 6955name = "windows_aarch64_gnullvm" 6956version = "0.52.6" 6957source = "registry+https://github.com/rust-lang/crates.io-index" 6958checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 6959 6960[[package]] 6961name = "windows_aarch64_gnullvm" 6962version = "0.53.1" 6963source = "registry+https://github.com/rust-lang/crates.io-index" 6964checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 6965 6966[[package]] 6967name = "windows_aarch64_msvc" 6968version = "0.48.5" 6969source = "registry+https://github.com/rust-lang/crates.io-index" 6970checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 6971 6972[[package]] 6973name = "windows_aarch64_msvc" 6974version = "0.52.6" 6975source = "registry+https://github.com/rust-lang/crates.io-index" 6976checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 6977 6978[[package]] 6979name = "windows_aarch64_msvc" 6980version = "0.53.1" 6981source = "registry+https://github.com/rust-lang/crates.io-index" 6982checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 6983 6984[[package]] 6985name = "windows_i686_gnu" 6986version = "0.48.5" 6987source = "registry+https://github.com/rust-lang/crates.io-index" 6988checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 6989 6990[[package]] 6991name = "windows_i686_gnu" 6992version = "0.52.6" 6993source = "registry+https://github.com/rust-lang/crates.io-index" 6994checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 6995 6996[[package]] 6997name = "windows_i686_gnu" 6998version = "0.53.1" 6999source = "registry+https://github.com/rust-lang/crates.io-index" 7000checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 7001 7002[[package]] 7003name = "windows_i686_gnullvm" 7004version = "0.52.6" 7005source = "registry+https://github.com/rust-lang/crates.io-index" 7006checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 7007 7008[[package]] 7009name = "windows_i686_gnullvm" 7010version = "0.53.1" 7011source = "registry+https://github.com/rust-lang/crates.io-index" 7012checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 7013 7014[[package]] 7015name = "windows_i686_msvc" 7016version = "0.48.5" 7017source = "registry+https://github.com/rust-lang/crates.io-index" 7018checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 7019 7020[[package]] 7021name = "windows_i686_msvc" 7022version = "0.52.6" 7023source = "registry+https://github.com/rust-lang/crates.io-index" 7024checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 7025 7026[[package]] 7027name = "windows_i686_msvc" 7028version = "0.53.1" 7029source = "registry+https://github.com/rust-lang/crates.io-index" 7030checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 7031 7032[[package]] 7033name = "windows_x86_64_gnu" 7034version = "0.48.5" 7035source = "registry+https://github.com/rust-lang/crates.io-index" 7036checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 7037 7038[[package]] 7039name = "windows_x86_64_gnu" 7040version = "0.52.6" 7041source = "registry+https://github.com/rust-lang/crates.io-index" 7042checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 7043 7044[[package]] 7045name = "windows_x86_64_gnu" 7046version = "0.53.1" 7047source = "registry+https://github.com/rust-lang/crates.io-index" 7048checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 7049 7050[[package]] 7051name = "windows_x86_64_gnullvm" 7052version = "0.48.5" 7053source = "registry+https://github.com/rust-lang/crates.io-index" 7054checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 7055 7056[[package]] 7057name = "windows_x86_64_gnullvm" 7058version = "0.52.6" 7059source = "registry+https://github.com/rust-lang/crates.io-index" 7060checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 7061 7062[[package]] 7063name = "windows_x86_64_gnullvm" 7064version = "0.53.1" 7065source = "registry+https://github.com/rust-lang/crates.io-index" 7066checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 7067 7068[[package]] 7069name = "windows_x86_64_msvc" 7070version = "0.48.5" 7071source = "registry+https://github.com/rust-lang/crates.io-index" 7072checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 7073 7074[[package]] 7075name = "windows_x86_64_msvc" 7076version = "0.52.6" 7077source = "registry+https://github.com/rust-lang/crates.io-index" 7078checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 7079 7080[[package]] 7081name = "windows_x86_64_msvc" 7082version = "0.53.1" 7083source = "registry+https://github.com/rust-lang/crates.io-index" 7084checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 7085 7086[[package]] 7087name = "winreg" 7088version = "0.50.0" 7089source = "registry+https://github.com/rust-lang/crates.io-index" 7090checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 7091dependencies = [ 7092 "cfg-if", 7093 "windows-sys 0.48.0", 7094] 7095 7096[[package]] 7097name = "wiremock" 7098version = "0.6.5" 7099source = "registry+https://github.com/rust-lang/crates.io-index" 7100checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031" 7101dependencies = [ 7102 "assert-json-diff", 7103 "base64 0.22.1", 7104 "deadpool", 7105 "futures", 7106 "http 1.4.0", 7107 "http-body-util", 7108 "hyper 1.8.1", 7109 "hyper-util", 7110 "log", 7111 "once_cell", 7112 "regex", 7113 "serde", 7114 "serde_json", 7115 "tokio", 7116 "url", 7117] 7118 7119[[package]] 7120name = "wit-bindgen" 7121version = "0.46.0" 7122source = "registry+https://github.com/rust-lang/crates.io-index" 7123checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 7124 7125[[package]] 7126name = "writeable" 7127version = "0.6.2" 7128source = "registry+https://github.com/rust-lang/crates.io-index" 7129checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" 7130 7131[[package]] 7132name = "x509-parser" 7133version = "0.16.0" 7134source = "registry+https://github.com/rust-lang/crates.io-index" 7135checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69" 7136dependencies = [ 7137 "asn1-rs", 7138 "data-encoding", 7139 "der-parser", 7140 "lazy_static", 7141 "nom", 7142 "oid-registry", 7143 "rusticata-macros", 7144 "thiserror 1.0.69", 7145 "time", 7146] 7147 7148[[package]] 7149name = "xattr" 7150version = "1.6.1" 7151source = "registry+https://github.com/rust-lang/crates.io-index" 7152checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" 7153dependencies = [ 7154 "libc", 7155 "rustix", 7156] 7157 7158[[package]] 7159name = "xml5ever" 7160version = "0.18.1" 7161source = "registry+https://github.com/rust-lang/crates.io-index" 7162checksum = "9bbb26405d8e919bc1547a5aa9abc95cbfa438f04844f5fdd9dc7596b748bf69" 7163dependencies = [ 7164 "log", 7165 "mac", 7166 "markup5ever", 7167] 7168 7169[[package]] 7170name = "xmlparser" 7171version = "0.13.6" 7172source = "registry+https://github.com/rust-lang/crates.io-index" 7173checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" 7174 7175[[package]] 7176name = "xxhash-rust" 7177version = "0.8.15" 7178source = "registry+https://github.com/rust-lang/crates.io-index" 7179checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3" 7180 7181[[package]] 7182name = "yansi" 7183version = "1.0.1" 7184source = "registry+https://github.com/rust-lang/crates.io-index" 7185checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 7186 7187[[package]] 7188name = "yoke" 7189version = "0.8.1" 7190source = "registry+https://github.com/rust-lang/crates.io-index" 7191checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" 7192dependencies = [ 7193 "stable_deref_trait", 7194 "yoke-derive", 7195 "zerofrom", 7196] 7197 7198[[package]] 7199name = "yoke-derive" 7200version = "0.8.1" 7201source = "registry+https://github.com/rust-lang/crates.io-index" 7202checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" 7203dependencies = [ 7204 "proc-macro2", 7205 "quote", 7206 "syn 2.0.111", 7207 "synstructure", 7208] 7209 7210[[package]] 7211name = "zerocopy" 7212version = "0.8.31" 7213source = "registry+https://github.com/rust-lang/crates.io-index" 7214checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3" 7215dependencies = [ 7216 "zerocopy-derive", 7217] 7218 7219[[package]] 7220name = "zerocopy-derive" 7221version = "0.8.31" 7222source = "registry+https://github.com/rust-lang/crates.io-index" 7223checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a" 7224dependencies = [ 7225 "proc-macro2", 7226 "quote", 7227 "syn 2.0.111", 7228] 7229 7230[[package]] 7231name = "zerofrom" 7232version = "0.1.6" 7233source = "registry+https://github.com/rust-lang/crates.io-index" 7234checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 7235dependencies = [ 7236 "zerofrom-derive", 7237] 7238 7239[[package]] 7240name = "zerofrom-derive" 7241version = "0.1.6" 7242source = "registry+https://github.com/rust-lang/crates.io-index" 7243checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 7244dependencies = [ 7245 "proc-macro2", 7246 "quote", 7247 "syn 2.0.111", 7248 "synstructure", 7249] 7250 7251[[package]] 7252name = "zeroize" 7253version = "1.8.2" 7254source = "registry+https://github.com/rust-lang/crates.io-index" 7255checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 7256dependencies = [ 7257 "serde", 7258] 7259 7260[[package]] 7261name = "zerotrie" 7262version = "0.2.3" 7263source = "registry+https://github.com/rust-lang/crates.io-index" 7264checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" 7265dependencies = [ 7266 "displaydoc", 7267 "yoke", 7268 "zerofrom", 7269] 7270 7271[[package]] 7272name = "zerovec" 7273version = "0.11.5" 7274source = "registry+https://github.com/rust-lang/crates.io-index" 7275checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" 7276dependencies = [ 7277 "yoke", 7278 "zerofrom", 7279 "zerovec-derive", 7280] 7281 7282[[package]] 7283name = "zerovec-derive" 7284version = "0.11.2" 7285source = "registry+https://github.com/rust-lang/crates.io-index" 7286checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" 7287dependencies = [ 7288 "proc-macro2", 7289 "quote", 7290 "syn 2.0.111", 7291] 7292 7293[[package]] 7294name = "zune-core" 7295version = "0.5.0" 7296source = "registry+https://github.com/rust-lang/crates.io-index" 7297checksum = "111f7d9820f05fd715df3144e254d6fc02ee4088b0644c0ffd0efc9e6d9d2773" 7298 7299[[package]] 7300name = "zune-jpeg" 7301version = "0.5.8" 7302source = "registry+https://github.com/rust-lang/crates.io-index" 7303checksum = "e35aee689668bf9bd6f6f3a6c60bb29ba1244b3b43adfd50edd554a371da37d5" 7304dependencies = [ 7305 "zune-core", 7306]