Our Personal Data Server from scratch!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 9322 lines 218 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "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 0.2.17", 49 "zeroize", 50] 51 52[[package]] 53name = "aes-gcm" 54version = "0.10.3" 55source = "registry+https://github.com/rust-lang/crates.io-index" 56checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 57dependencies = [ 58 "aead", 59 "aes", 60 "cipher", 61 "ctr", 62 "ghash", 63 "subtle", 64] 65 66[[package]] 67name = "aes-gcm-siv" 68version = "0.11.1" 69source = "registry+https://github.com/rust-lang/crates.io-index" 70checksum = "ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d" 71dependencies = [ 72 "aead", 73 "aes", 74 "cipher", 75 "ctr", 76 "polyval", 77 "subtle", 78 "zeroize", 79] 80 81[[package]] 82name = "ahash" 83version = "0.8.12" 84source = "registry+https://github.com/rust-lang/crates.io-index" 85checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" 86dependencies = [ 87 "cfg-if", 88 "once_cell", 89 "version_check", 90 "zerocopy", 91] 92 93[[package]] 94name = "aho-corasick" 95version = "1.1.4" 96source = "registry+https://github.com/rust-lang/crates.io-index" 97checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 98dependencies = [ 99 "memchr", 100] 101 102[[package]] 103name = "aliasable" 104version = "0.1.3" 105source = "registry+https://github.com/rust-lang/crates.io-index" 106checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" 107 108[[package]] 109name = "allocator-api2" 110version = "0.2.21" 111source = "registry+https://github.com/rust-lang/crates.io-index" 112checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 113 114[[package]] 115name = "android_system_properties" 116version = "0.1.5" 117source = "registry+https://github.com/rust-lang/crates.io-index" 118checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 119dependencies = [ 120 "libc", 121] 122 123[[package]] 124name = "anstream" 125version = "1.0.0" 126source = "registry+https://github.com/rust-lang/crates.io-index" 127checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" 128dependencies = [ 129 "anstyle", 130 "anstyle-parse", 131 "anstyle-query", 132 "anstyle-wincon", 133 "colorchoice", 134 "is_terminal_polyfill", 135 "utf8parse", 136] 137 138[[package]] 139name = "anstyle" 140version = "1.0.14" 141source = "registry+https://github.com/rust-lang/crates.io-index" 142checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" 143 144[[package]] 145name = "anstyle-parse" 146version = "1.0.0" 147source = "registry+https://github.com/rust-lang/crates.io-index" 148checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" 149dependencies = [ 150 "utf8parse", 151] 152 153[[package]] 154name = "anstyle-query" 155version = "1.1.5" 156source = "registry+https://github.com/rust-lang/crates.io-index" 157checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" 158dependencies = [ 159 "windows-sys 0.61.2", 160] 161 162[[package]] 163name = "anstyle-wincon" 164version = "3.0.11" 165source = "registry+https://github.com/rust-lang/crates.io-index" 166checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" 167dependencies = [ 168 "anstyle", 169 "once_cell_polyfill", 170 "windows-sys 0.61.2", 171] 172 173[[package]] 174name = "anyhow" 175version = "1.0.102" 176source = "registry+https://github.com/rust-lang/crates.io-index" 177checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" 178 179[[package]] 180name = "arc-swap" 181version = "1.9.0" 182source = "registry+https://github.com/rust-lang/crates.io-index" 183checksum = "a07d1f37ff60921c83bdfc7407723bdefe89b44b98a9b772f225c8f9d67141a6" 184dependencies = [ 185 "rustversion", 186] 187 188[[package]] 189name = "arcstr" 190version = "1.2.0" 191source = "registry+https://github.com/rust-lang/crates.io-index" 192checksum = "03918c3dbd7701a85c6b9887732e2921175f26c350b4563841d0958c21d57e6d" 193 194[[package]] 195name = "argon2" 196version = "0.5.3" 197source = "registry+https://github.com/rust-lang/crates.io-index" 198checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072" 199dependencies = [ 200 "base64ct", 201 "blake2", 202 "cpufeatures 0.2.17", 203 "password-hash", 204 "zeroize", 205] 206 207[[package]] 208name = "asn1-rs" 209version = "0.6.2" 210source = "registry+https://github.com/rust-lang/crates.io-index" 211checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" 212dependencies = [ 213 "asn1-rs-derive", 214 "asn1-rs-impl", 215 "displaydoc", 216 "nom", 217 "num-traits", 218 "rusticata-macros", 219 "thiserror 1.0.69", 220 "time", 221] 222 223[[package]] 224name = "asn1-rs-derive" 225version = "0.5.1" 226source = "registry+https://github.com/rust-lang/crates.io-index" 227checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" 228dependencies = [ 229 "proc-macro2", 230 "quote", 231 "syn 2.0.117", 232 "synstructure", 233] 234 235[[package]] 236name = "asn1-rs-impl" 237version = "0.2.0" 238source = "registry+https://github.com/rust-lang/crates.io-index" 239checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" 240dependencies = [ 241 "proc-macro2", 242 "quote", 243 "syn 2.0.117", 244] 245 246[[package]] 247name = "assert-json-diff" 248version = "2.0.2" 249source = "registry+https://github.com/rust-lang/crates.io-index" 250checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12" 251dependencies = [ 252 "serde", 253 "serde_json", 254] 255 256[[package]] 257name = "assert_matches" 258version = "1.5.0" 259source = "registry+https://github.com/rust-lang/crates.io-index" 260checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" 261 262[[package]] 263name = "astral-tokio-tar" 264version = "0.5.6" 265source = "registry+https://github.com/rust-lang/crates.io-index" 266checksum = "ec179a06c1769b1e42e1e2cbe74c7dcdb3d6383c838454d063eaac5bbb7ebbe5" 267dependencies = [ 268 "filetime", 269 "futures-core", 270 "libc", 271 "portable-atomic", 272 "rustc-hash", 273 "tokio", 274 "tokio-stream", 275 "xattr", 276] 277 278[[package]] 279name = "async-compression" 280version = "0.4.41" 281source = "registry+https://github.com/rust-lang/crates.io-index" 282checksum = "d0f9ee0f6e02ffd7ad5816e9464499fba7b3effd01123b515c41d1697c43dad1" 283dependencies = [ 284 "compression-codecs", 285 "compression-core", 286 "pin-project-lite", 287 "tokio", 288] 289 290[[package]] 291name = "async-lock" 292version = "3.4.2" 293source = "registry+https://github.com/rust-lang/crates.io-index" 294checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" 295dependencies = [ 296 "event-listener", 297 "event-listener-strategy", 298 "pin-project-lite", 299] 300 301[[package]] 302name = "async-stream" 303version = "0.3.6" 304source = "registry+https://github.com/rust-lang/crates.io-index" 305checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" 306dependencies = [ 307 "async-stream-impl", 308 "futures-core", 309 "pin-project-lite", 310] 311 312[[package]] 313name = "async-stream-impl" 314version = "0.3.6" 315source = "registry+https://github.com/rust-lang/crates.io-index" 316checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" 317dependencies = [ 318 "proc-macro2", 319 "quote", 320 "syn 2.0.117", 321] 322 323[[package]] 324name = "async-trait" 325version = "0.1.89" 326source = "registry+https://github.com/rust-lang/crates.io-index" 327checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 328dependencies = [ 329 "proc-macro2", 330 "quote", 331 "syn 2.0.117", 332] 333 334[[package]] 335name = "async-tungstenite" 336version = "0.28.2" 337source = "registry+https://github.com/rust-lang/crates.io-index" 338checksum = "1c348fb0b6d132c596eca3dcd941df48fb597aafcb07a738ec41c004b087dc99" 339dependencies = [ 340 "atomic-waker", 341 "futures-core", 342 "futures-io", 343 "futures-task", 344 "futures-util", 345 "log", 346 "pin-project-lite", 347 "tungstenite 0.24.0", 348] 349 350[[package]] 351name = "atoi" 352version = "2.0.0" 353source = "registry+https://github.com/rust-lang/crates.io-index" 354checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" 355dependencies = [ 356 "num-traits", 357] 358 359[[package]] 360name = "atomic-polyfill" 361version = "1.0.3" 362source = "registry+https://github.com/rust-lang/crates.io-index" 363checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4" 364dependencies = [ 365 "critical-section", 366] 367 368[[package]] 369name = "atomic-waker" 370version = "1.1.2" 371source = "registry+https://github.com/rust-lang/crates.io-index" 372checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 373 374[[package]] 375name = "autocfg" 376version = "1.5.0" 377source = "registry+https://github.com/rust-lang/crates.io-index" 378checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 379 380[[package]] 381name = "aws-config" 382version = "1.8.15" 383source = "registry+https://github.com/rust-lang/crates.io-index" 384checksum = "11493b0bad143270fb8ad284a096dd529ba91924c5409adeac856cc1bf047dbc" 385dependencies = [ 386 "aws-credential-types", 387 "aws-runtime", 388 "aws-sdk-sso", 389 "aws-sdk-ssooidc", 390 "aws-sdk-sts", 391 "aws-smithy-async", 392 "aws-smithy-http 0.63.6", 393 "aws-smithy-json 0.62.5", 394 "aws-smithy-runtime", 395 "aws-smithy-runtime-api", 396 "aws-smithy-types", 397 "aws-types", 398 "bytes", 399 "fastrand", 400 "hex", 401 "http 1.4.0", 402 "sha1", 403 "time", 404 "tokio", 405 "tracing", 406 "url", 407 "zeroize", 408] 409 410[[package]] 411name = "aws-credential-types" 412version = "1.2.14" 413source = "registry+https://github.com/rust-lang/crates.io-index" 414checksum = "8f20799b373a1be121fe3005fba0c2090af9411573878f224df44b42727fcaf7" 415dependencies = [ 416 "aws-smithy-async", 417 "aws-smithy-runtime-api", 418 "aws-smithy-types", 419 "zeroize", 420] 421 422[[package]] 423name = "aws-lc-rs" 424version = "1.16.2" 425source = "registry+https://github.com/rust-lang/crates.io-index" 426checksum = "a054912289d18629dc78375ba2c3726a3afe3ff71b4edba9dedfca0e3446d1fc" 427dependencies = [ 428 "aws-lc-sys", 429 "zeroize", 430] 431 432[[package]] 433name = "aws-lc-sys" 434version = "0.39.0" 435source = "registry+https://github.com/rust-lang/crates.io-index" 436checksum = "1fa7e52a4c5c547c741610a2c6f123f3881e409b714cd27e6798ef020c514f0a" 437dependencies = [ 438 "cc", 439 "cmake", 440 "dunce", 441 "fs_extra", 442] 443 444[[package]] 445name = "aws-runtime" 446version = "1.7.2" 447source = "registry+https://github.com/rust-lang/crates.io-index" 448checksum = "5fc0651c57e384202e47153c1260b84a9936e19803d747615edf199dc3b98d17" 449dependencies = [ 450 "aws-credential-types", 451 "aws-sigv4", 452 "aws-smithy-async", 453 "aws-smithy-eventstream", 454 "aws-smithy-http 0.63.6", 455 "aws-smithy-runtime", 456 "aws-smithy-runtime-api", 457 "aws-smithy-types", 458 "aws-types", 459 "bytes", 460 "bytes-utils", 461 "fastrand", 462 "http 0.2.12", 463 "http 1.4.0", 464 "http-body 0.4.6", 465 "http-body 1.0.1", 466 "percent-encoding", 467 "pin-project-lite", 468 "tracing", 469 "uuid", 470] 471 472[[package]] 473name = "aws-sdk-s3" 474version = "1.119.0" 475source = "registry+https://github.com/rust-lang/crates.io-index" 476checksum = "1d65fddc3844f902dfe1864acb8494db5f9342015ee3ab7890270d36fbd2e01c" 477dependencies = [ 478 "aws-credential-types", 479 "aws-runtime", 480 "aws-sigv4", 481 "aws-smithy-async", 482 "aws-smithy-checksums", 483 "aws-smithy-eventstream", 484 "aws-smithy-http 0.62.6", 485 "aws-smithy-json 0.61.9", 486 "aws-smithy-runtime", 487 "aws-smithy-runtime-api", 488 "aws-smithy-types", 489 "aws-smithy-xml", 490 "aws-types", 491 "bytes", 492 "fastrand", 493 "hex", 494 "hmac", 495 "http 0.2.12", 496 "http 1.4.0", 497 "http-body 0.4.6", 498 "lru", 499 "percent-encoding", 500 "regex-lite", 501 "sha2", 502 "tracing", 503 "url", 504] 505 506[[package]] 507name = "aws-sdk-sso" 508version = "1.97.0" 509source = "registry+https://github.com/rust-lang/crates.io-index" 510checksum = "9aadc669e184501caaa6beafb28c6267fc1baef0810fb58f9b205485ca3f2567" 511dependencies = [ 512 "aws-credential-types", 513 "aws-runtime", 514 "aws-smithy-async", 515 "aws-smithy-http 0.63.6", 516 "aws-smithy-json 0.62.5", 517 "aws-smithy-observability", 518 "aws-smithy-runtime", 519 "aws-smithy-runtime-api", 520 "aws-smithy-types", 521 "aws-types", 522 "bytes", 523 "fastrand", 524 "http 0.2.12", 525 "http 1.4.0", 526 "regex-lite", 527 "tracing", 528] 529 530[[package]] 531name = "aws-sdk-ssooidc" 532version = "1.99.0" 533source = "registry+https://github.com/rust-lang/crates.io-index" 534checksum = "1342a7db8f358d3de0aed2007a0b54e875458e39848d54cc1d46700b2bfcb0a8" 535dependencies = [ 536 "aws-credential-types", 537 "aws-runtime", 538 "aws-smithy-async", 539 "aws-smithy-http 0.63.6", 540 "aws-smithy-json 0.62.5", 541 "aws-smithy-observability", 542 "aws-smithy-runtime", 543 "aws-smithy-runtime-api", 544 "aws-smithy-types", 545 "aws-types", 546 "bytes", 547 "fastrand", 548 "http 0.2.12", 549 "http 1.4.0", 550 "regex-lite", 551 "tracing", 552] 553 554[[package]] 555name = "aws-sdk-sts" 556version = "1.101.0" 557source = "registry+https://github.com/rust-lang/crates.io-index" 558checksum = "ab41ad64e4051ecabeea802d6a17845a91e83287e1dd249e6963ea1ba78c428a" 559dependencies = [ 560 "aws-credential-types", 561 "aws-runtime", 562 "aws-smithy-async", 563 "aws-smithy-http 0.63.6", 564 "aws-smithy-json 0.62.5", 565 "aws-smithy-observability", 566 "aws-smithy-query", 567 "aws-smithy-runtime", 568 "aws-smithy-runtime-api", 569 "aws-smithy-types", 570 "aws-smithy-xml", 571 "aws-types", 572 "fastrand", 573 "http 0.2.12", 574 "http 1.4.0", 575 "regex-lite", 576 "tracing", 577] 578 579[[package]] 580name = "aws-sigv4" 581version = "1.4.2" 582source = "registry+https://github.com/rust-lang/crates.io-index" 583checksum = "b0b660013a6683ab23797778e21f1f854744fdf05f68204b4cca4c8c04b5d1f4" 584dependencies = [ 585 "aws-credential-types", 586 "aws-smithy-eventstream", 587 "aws-smithy-http 0.63.6", 588 "aws-smithy-runtime-api", 589 "aws-smithy-types", 590 "bytes", 591 "crypto-bigint 0.5.5", 592 "form_urlencoded", 593 "hex", 594 "hmac", 595 "http 0.2.12", 596 "http 1.4.0", 597 "p256 0.11.1", 598 "percent-encoding", 599 "ring", 600 "sha2", 601 "subtle", 602 "time", 603 "tracing", 604 "zeroize", 605] 606 607[[package]] 608name = "aws-smithy-async" 609version = "1.2.14" 610source = "registry+https://github.com/rust-lang/crates.io-index" 611checksum = "2ffcaf626bdda484571968400c326a244598634dc75fd451325a54ad1a59acfc" 612dependencies = [ 613 "futures-util", 614 "pin-project-lite", 615 "tokio", 616] 617 618[[package]] 619name = "aws-smithy-checksums" 620version = "0.63.12" 621source = "registry+https://github.com/rust-lang/crates.io-index" 622checksum = "87294a084b43d649d967efe58aa1f9e0adc260e13a6938eb904c0ae9b45824ae" 623dependencies = [ 624 "aws-smithy-http 0.62.6", 625 "aws-smithy-types", 626 "bytes", 627 "crc-fast", 628 "hex", 629 "http 0.2.12", 630 "http-body 0.4.6", 631 "md-5", 632 "pin-project-lite", 633 "sha1", 634 "sha2", 635 "tracing", 636] 637 638[[package]] 639name = "aws-smithy-eventstream" 640version = "0.60.20" 641source = "registry+https://github.com/rust-lang/crates.io-index" 642checksum = "faf09d74e5e32f76b8762da505a3cd59303e367a664ca67295387baa8c1d7548" 643dependencies = [ 644 "aws-smithy-types", 645 "bytes", 646 "crc32fast", 647] 648 649[[package]] 650name = "aws-smithy-http" 651version = "0.62.6" 652source = "registry+https://github.com/rust-lang/crates.io-index" 653checksum = "826141069295752372f8203c17f28e30c464d22899a43a0c9fd9c458d469c88b" 654dependencies = [ 655 "aws-smithy-eventstream", 656 "aws-smithy-runtime-api", 657 "aws-smithy-types", 658 "bytes", 659 "bytes-utils", 660 "futures-core", 661 "futures-util", 662 "http 0.2.12", 663 "http 1.4.0", 664 "http-body 0.4.6", 665 "percent-encoding", 666 "pin-project-lite", 667 "pin-utils", 668 "tracing", 669] 670 671[[package]] 672name = "aws-smithy-http" 673version = "0.63.6" 674source = "registry+https://github.com/rust-lang/crates.io-index" 675checksum = "ba1ab2dc1c2c3749ead27180d333c42f11be8b0e934058fb4b2258ee8dbe5231" 676dependencies = [ 677 "aws-smithy-runtime-api", 678 "aws-smithy-types", 679 "bytes", 680 "bytes-utils", 681 "futures-core", 682 "futures-util", 683 "http 1.4.0", 684 "http-body 1.0.1", 685 "http-body-util", 686 "percent-encoding", 687 "pin-project-lite", 688 "pin-utils", 689 "tracing", 690] 691 692[[package]] 693name = "aws-smithy-http-client" 694version = "1.1.12" 695source = "registry+https://github.com/rust-lang/crates.io-index" 696checksum = "6a2f165a7feee6f263028b899d0a181987f4fa7179a6411a32a439fba7c5f769" 697dependencies = [ 698 "aws-smithy-async", 699 "aws-smithy-runtime-api", 700 "aws-smithy-types", 701 "h2 0.3.27", 702 "h2 0.4.13", 703 "http 0.2.12", 704 "http 1.4.0", 705 "http-body 0.4.6", 706 "hyper 0.14.32", 707 "hyper 1.8.1", 708 "hyper-rustls 0.24.2", 709 "hyper-rustls 0.27.7", 710 "hyper-util", 711 "pin-project-lite", 712 "rustls 0.21.12", 713 "rustls 0.23.37", 714 "rustls-native-certs", 715 "rustls-pki-types", 716 "tokio", 717 "tokio-rustls 0.26.4", 718 "tower", 719 "tracing", 720] 721 722[[package]] 723name = "aws-smithy-json" 724version = "0.61.9" 725source = "registry+https://github.com/rust-lang/crates.io-index" 726checksum = "49fa1213db31ac95288d981476f78d05d9cbb0353d22cdf3472cc05bb02f6551" 727dependencies = [ 728 "aws-smithy-types", 729] 730 731[[package]] 732name = "aws-smithy-json" 733version = "0.62.5" 734source = "registry+https://github.com/rust-lang/crates.io-index" 735checksum = "9648b0bb82a2eedd844052c6ad2a1a822d1f8e3adee5fbf668366717e428856a" 736dependencies = [ 737 "aws-smithy-types", 738] 739 740[[package]] 741name = "aws-smithy-observability" 742version = "0.2.6" 743source = "registry+https://github.com/rust-lang/crates.io-index" 744checksum = "a06c2315d173edbf1920da8ba3a7189695827002e4c0fc961973ab1c54abca9c" 745dependencies = [ 746 "aws-smithy-runtime-api", 747] 748 749[[package]] 750name = "aws-smithy-query" 751version = "0.60.15" 752source = "registry+https://github.com/rust-lang/crates.io-index" 753checksum = "1a56d79744fb3edb5d722ef79d86081e121d3b9422cb209eb03aea6aa4f21ebd" 754dependencies = [ 755 "aws-smithy-types", 756 "urlencoding", 757] 758 759[[package]] 760name = "aws-smithy-runtime" 761version = "1.10.3" 762source = "registry+https://github.com/rust-lang/crates.io-index" 763checksum = "028999056d2d2fd58a697232f9eec4a643cf73a71cf327690a7edad1d2af2110" 764dependencies = [ 765 "aws-smithy-async", 766 "aws-smithy-http 0.63.6", 767 "aws-smithy-http-client", 768 "aws-smithy-observability", 769 "aws-smithy-runtime-api", 770 "aws-smithy-types", 771 "bytes", 772 "fastrand", 773 "http 0.2.12", 774 "http 1.4.0", 775 "http-body 0.4.6", 776 "http-body 1.0.1", 777 "http-body-util", 778 "pin-project-lite", 779 "pin-utils", 780 "tokio", 781 "tracing", 782] 783 784[[package]] 785name = "aws-smithy-runtime-api" 786version = "1.11.6" 787source = "registry+https://github.com/rust-lang/crates.io-index" 788checksum = "876ab3c9c29791ba4ba02b780a3049e21ec63dabda09268b175272c3733a79e6" 789dependencies = [ 790 "aws-smithy-async", 791 "aws-smithy-types", 792 "bytes", 793 "http 0.2.12", 794 "http 1.4.0", 795 "pin-project-lite", 796 "tokio", 797 "tracing", 798 "zeroize", 799] 800 801[[package]] 802name = "aws-smithy-types" 803version = "1.4.7" 804source = "registry+https://github.com/rust-lang/crates.io-index" 805checksum = "9d73dbfbaa8e4bc57b9045137680b958d274823509a360abfd8e1d514d40c95c" 806dependencies = [ 807 "base64-simd", 808 "bytes", 809 "bytes-utils", 810 "futures-core", 811 "http 0.2.12", 812 "http 1.4.0", 813 "http-body 0.4.6", 814 "http-body 1.0.1", 815 "http-body-util", 816 "itoa", 817 "num-integer", 818 "pin-project-lite", 819 "pin-utils", 820 "ryu", 821 "serde", 822 "time", 823 "tokio", 824 "tokio-util", 825] 826 827[[package]] 828name = "aws-smithy-xml" 829version = "0.60.15" 830source = "registry+https://github.com/rust-lang/crates.io-index" 831checksum = "0ce02add1aa3677d022f8adf81dcbe3046a95f17a1b1e8979c145cd21d3d22b3" 832dependencies = [ 833 "xmlparser", 834] 835 836[[package]] 837name = "aws-types" 838version = "1.3.14" 839source = "registry+https://github.com/rust-lang/crates.io-index" 840checksum = "47c8323699dd9b3c8d5b3c13051ae9cdef58fd179957c882f8374dd8725962d9" 841dependencies = [ 842 "aws-credential-types", 843 "aws-smithy-async", 844 "aws-smithy-runtime-api", 845 "aws-smithy-types", 846 "rustc_version", 847 "tracing", 848] 849 850[[package]] 851name = "axum" 852version = "0.8.8" 853source = "registry+https://github.com/rust-lang/crates.io-index" 854checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" 855dependencies = [ 856 "axum-core", 857 "axum-macros", 858 "base64 0.22.1", 859 "bytes", 860 "form_urlencoded", 861 "futures-util", 862 "http 1.4.0", 863 "http-body 1.0.1", 864 "http-body-util", 865 "hyper 1.8.1", 866 "hyper-util", 867 "itoa", 868 "matchit", 869 "memchr", 870 "mime", 871 "percent-encoding", 872 "pin-project-lite", 873 "serde_core", 874 "serde_json", 875 "serde_path_to_error", 876 "serde_urlencoded", 877 "sha1", 878 "sync_wrapper", 879 "tokio", 880 "tokio-tungstenite", 881 "tower", 882 "tower-layer", 883 "tower-service", 884 "tracing", 885] 886 887[[package]] 888name = "axum-core" 889version = "0.5.6" 890source = "registry+https://github.com/rust-lang/crates.io-index" 891checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" 892dependencies = [ 893 "bytes", 894 "futures-core", 895 "http 1.4.0", 896 "http-body 1.0.1", 897 "http-body-util", 898 "mime", 899 "pin-project-lite", 900 "sync_wrapper", 901 "tower-layer", 902 "tower-service", 903 "tracing", 904] 905 906[[package]] 907name = "axum-macros" 908version = "0.5.0" 909source = "registry+https://github.com/rust-lang/crates.io-index" 910checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c" 911dependencies = [ 912 "proc-macro2", 913 "quote", 914 "syn 2.0.117", 915] 916 917[[package]] 918name = "backon" 919version = "1.6.0" 920source = "registry+https://github.com/rust-lang/crates.io-index" 921checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef" 922dependencies = [ 923 "fastrand", 924 "gloo-timers", 925 "tokio", 926] 927 928[[package]] 929name = "base-x" 930version = "0.2.11" 931source = "registry+https://github.com/rust-lang/crates.io-index" 932checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 933 934[[package]] 935name = "base16ct" 936version = "0.1.1" 937source = "registry+https://github.com/rust-lang/crates.io-index" 938checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" 939 940[[package]] 941name = "base16ct" 942version = "0.2.0" 943source = "registry+https://github.com/rust-lang/crates.io-index" 944checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 945 946[[package]] 947name = "base256emoji" 948version = "1.0.2" 949source = "registry+https://github.com/rust-lang/crates.io-index" 950checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c" 951dependencies = [ 952 "const-str 0.4.3", 953 "match-lookup", 954] 955 956[[package]] 957name = "base32" 958version = "0.5.1" 959source = "registry+https://github.com/rust-lang/crates.io-index" 960checksum = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076" 961 962[[package]] 963name = "base64" 964version = "0.21.7" 965source = "registry+https://github.com/rust-lang/crates.io-index" 966checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 967 968[[package]] 969name = "base64" 970version = "0.22.1" 971source = "registry+https://github.com/rust-lang/crates.io-index" 972checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 973 974[[package]] 975name = "base64-simd" 976version = "0.8.0" 977source = "registry+https://github.com/rust-lang/crates.io-index" 978checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" 979dependencies = [ 980 "outref", 981 "vsimd", 982] 983 984[[package]] 985name = "base64ct" 986version = "1.8.3" 987source = "registry+https://github.com/rust-lang/crates.io-index" 988checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" 989 990[[package]] 991name = "base64urlsafedata" 992version = "0.5.4" 993source = "registry+https://github.com/rust-lang/crates.io-index" 994checksum = "42f7f6be94fa637132933fd0a68b9140bcb60e3d46164cb68e82a2bb8d102b3a" 995dependencies = [ 996 "base64 0.21.7", 997 "pastey", 998 "serde", 999] 1000 1001[[package]] 1002name = "bcrypt" 1003version = "0.17.1" 1004source = "registry+https://github.com/rust-lang/crates.io-index" 1005checksum = "abaf6da45c74385272ddf00e1ac074c7d8a6c1a1dda376902bd6a427522a8b2c" 1006dependencies = [ 1007 "base64 0.22.1", 1008 "blowfish", 1009 "getrandom 0.3.4", 1010 "subtle", 1011 "zeroize", 1012] 1013 1014[[package]] 1015name = "bincode" 1016version = "1.3.3" 1017source = "registry+https://github.com/rust-lang/crates.io-index" 1018checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 1019dependencies = [ 1020 "serde", 1021] 1022 1023[[package]] 1024name = "bincode" 1025version = "2.0.1" 1026source = "registry+https://github.com/rust-lang/crates.io-index" 1027checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740" 1028dependencies = [ 1029 "bincode_derive", 1030 "serde", 1031 "unty", 1032] 1033 1034[[package]] 1035name = "bincode_derive" 1036version = "2.0.1" 1037source = "registry+https://github.com/rust-lang/crates.io-index" 1038checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09" 1039dependencies = [ 1040 "virtue", 1041] 1042 1043[[package]] 1044name = "bit-set" 1045version = "0.8.0" 1046source = "registry+https://github.com/rust-lang/crates.io-index" 1047checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" 1048dependencies = [ 1049 "bit-vec", 1050] 1051 1052[[package]] 1053name = "bit-vec" 1054version = "0.8.0" 1055source = "registry+https://github.com/rust-lang/crates.io-index" 1056checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" 1057 1058[[package]] 1059name = "bitflags" 1060version = "2.11.0" 1061source = "registry+https://github.com/rust-lang/crates.io-index" 1062checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" 1063dependencies = [ 1064 "serde_core", 1065] 1066 1067[[package]] 1068name = "blake2" 1069version = "0.10.6" 1070source = "registry+https://github.com/rust-lang/crates.io-index" 1071checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" 1072dependencies = [ 1073 "digest", 1074] 1075 1076[[package]] 1077name = "block-buffer" 1078version = "0.10.4" 1079source = "registry+https://github.com/rust-lang/crates.io-index" 1080checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 1081dependencies = [ 1082 "generic-array", 1083] 1084 1085[[package]] 1086name = "block-padding" 1087version = "0.3.3" 1088source = "registry+https://github.com/rust-lang/crates.io-index" 1089checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" 1090dependencies = [ 1091 "generic-array", 1092] 1093 1094[[package]] 1095name = "blowfish" 1096version = "0.9.1" 1097source = "registry+https://github.com/rust-lang/crates.io-index" 1098checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7" 1099dependencies = [ 1100 "byteorder", 1101 "cipher", 1102] 1103 1104[[package]] 1105name = "bollard" 1106version = "0.19.4" 1107source = "registry+https://github.com/rust-lang/crates.io-index" 1108checksum = "87a52479c9237eb04047ddb94788c41ca0d26eaff8b697ecfbb4c32f7fdc3b1b" 1109dependencies = [ 1110 "async-stream", 1111 "base64 0.22.1", 1112 "bitflags", 1113 "bollard-buildkit-proto", 1114 "bollard-stubs", 1115 "bytes", 1116 "chrono", 1117 "futures-core", 1118 "futures-util", 1119 "hex", 1120 "home", 1121 "http 1.4.0", 1122 "http-body-util", 1123 "hyper 1.8.1", 1124 "hyper-named-pipe", 1125 "hyper-rustls 0.27.7", 1126 "hyper-util", 1127 "hyperlocal", 1128 "log", 1129 "num", 1130 "pin-project-lite", 1131 "rand 0.9.2", 1132 "rustls 0.23.37", 1133 "rustls-native-certs", 1134 "rustls-pemfile", 1135 "rustls-pki-types", 1136 "serde", 1137 "serde_derive", 1138 "serde_json", 1139 "serde_repr", 1140 "serde_urlencoded", 1141 "thiserror 2.0.18", 1142 "tokio", 1143 "tokio-stream", 1144 "tokio-util", 1145 "tonic", 1146 "tower-service", 1147 "url", 1148 "winapi", 1149] 1150 1151[[package]] 1152name = "bollard-buildkit-proto" 1153version = "0.7.0" 1154source = "registry+https://github.com/rust-lang/crates.io-index" 1155checksum = "85a885520bf6249ab931a764ffdb87b0ceef48e6e7d807cfdb21b751e086e1ad" 1156dependencies = [ 1157 "prost 0.14.3", 1158 "prost-types 0.14.3", 1159 "tonic", 1160 "tonic-prost", 1161 "ureq", 1162] 1163 1164[[package]] 1165name = "bollard-stubs" 1166version = "1.49.1-rc.28.4.0" 1167source = "registry+https://github.com/rust-lang/crates.io-index" 1168checksum = "5731fe885755e92beff1950774068e0cae67ea6ec7587381536fca84f1779623" 1169dependencies = [ 1170 "base64 0.22.1", 1171 "bollard-buildkit-proto", 1172 "bytes", 1173 "chrono", 1174 "prost 0.14.3", 1175 "serde", 1176 "serde_json", 1177 "serde_repr", 1178 "serde_with", 1179] 1180 1181[[package]] 1182name = "bon" 1183version = "3.9.1" 1184source = "registry+https://github.com/rust-lang/crates.io-index" 1185checksum = "f47dbe92550676ee653353c310dfb9cf6ba17ee70396e1f7cf0a2020ad49b2fe" 1186dependencies = [ 1187 "bon-macros", 1188 "rustversion", 1189] 1190 1191[[package]] 1192name = "bon-macros" 1193version = "3.9.1" 1194source = "registry+https://github.com/rust-lang/crates.io-index" 1195checksum = "519bd3116aeeb42d5372c29d982d16d0170d3d4a5ed85fc7dd91642ffff3c67c" 1196dependencies = [ 1197 "darling", 1198 "ident_case", 1199 "prettyplease", 1200 "proc-macro2", 1201 "quote", 1202 "rustversion", 1203 "syn 2.0.117", 1204] 1205 1206[[package]] 1207name = "borsh" 1208version = "1.6.1" 1209source = "registry+https://github.com/rust-lang/crates.io-index" 1210checksum = "cfd1e3f8955a5d7de9fab72fc8373fade9fb8a703968cb200ae3dc6cf08e185a" 1211dependencies = [ 1212 "bytes", 1213 "cfg_aliases", 1214] 1215 1216[[package]] 1217name = "bs58" 1218version = "0.5.1" 1219source = "registry+https://github.com/rust-lang/crates.io-index" 1220checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" 1221dependencies = [ 1222 "tinyvec", 1223] 1224 1225[[package]] 1226name = "btree-range-map" 1227version = "0.7.2" 1228source = "registry+https://github.com/rust-lang/crates.io-index" 1229checksum = "1be5c9672446d3800bcbcaabaeba121fe22f1fb25700c4562b22faf76d377c33" 1230dependencies = [ 1231 "btree-slab", 1232 "cc-traits", 1233 "range-traits", 1234 "serde", 1235 "slab", 1236] 1237 1238[[package]] 1239name = "btree-slab" 1240version = "0.6.1" 1241source = "registry+https://github.com/rust-lang/crates.io-index" 1242checksum = "7a2b56d3029f075c4fa892428a098425b86cef5c89ae54073137ece416aef13c" 1243dependencies = [ 1244 "cc-traits", 1245 "slab", 1246 "smallvec", 1247] 1248 1249[[package]] 1250name = "bumpalo" 1251version = "3.20.2" 1252source = "registry+https://github.com/rust-lang/crates.io-index" 1253checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" 1254 1255[[package]] 1256name = "bytemuck" 1257version = "1.25.0" 1258source = "registry+https://github.com/rust-lang/crates.io-index" 1259checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec" 1260 1261[[package]] 1262name = "byteorder" 1263version = "1.5.0" 1264source = "registry+https://github.com/rust-lang/crates.io-index" 1265checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 1266 1267[[package]] 1268name = "byteorder-lite" 1269version = "0.1.0" 1270source = "registry+https://github.com/rust-lang/crates.io-index" 1271checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" 1272 1273[[package]] 1274name = "bytes" 1275version = "1.11.1" 1276source = "registry+https://github.com/rust-lang/crates.io-index" 1277checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" 1278dependencies = [ 1279 "serde", 1280] 1281 1282[[package]] 1283name = "bytes-utils" 1284version = "0.1.4" 1285source = "registry+https://github.com/rust-lang/crates.io-index" 1286checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35" 1287dependencies = [ 1288 "bytes", 1289 "either", 1290] 1291 1292[[package]] 1293name = "byteview" 1294version = "0.10.1" 1295source = "registry+https://github.com/rust-lang/crates.io-index" 1296checksum = "1c53ba0f290bfc610084c05582d9c5d421662128fc69f4bf236707af6fd321b9" 1297 1298[[package]] 1299name = "cbc" 1300version = "0.1.2" 1301source = "registry+https://github.com/rust-lang/crates.io-index" 1302checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" 1303dependencies = [ 1304 "cipher", 1305] 1306 1307[[package]] 1308name = "cbor4ii" 1309version = "0.2.14" 1310source = "registry+https://github.com/rust-lang/crates.io-index" 1311checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4" 1312dependencies = [ 1313 "serde", 1314] 1315 1316[[package]] 1317name = "cc" 1318version = "1.2.57" 1319source = "registry+https://github.com/rust-lang/crates.io-index" 1320checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423" 1321dependencies = [ 1322 "find-msvc-tools", 1323 "jobserver", 1324 "libc", 1325 "shlex", 1326] 1327 1328[[package]] 1329name = "cc-traits" 1330version = "2.0.0" 1331source = "registry+https://github.com/rust-lang/crates.io-index" 1332checksum = "060303ef31ef4a522737e1b1ab68c67916f2a787bb2f4f54f383279adba962b5" 1333dependencies = [ 1334 "slab", 1335] 1336 1337[[package]] 1338name = "cfb" 1339version = "0.7.3" 1340source = "registry+https://github.com/rust-lang/crates.io-index" 1341checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" 1342dependencies = [ 1343 "byteorder", 1344 "fnv", 1345 "uuid", 1346] 1347 1348[[package]] 1349name = "cfg-if" 1350version = "1.0.4" 1351source = "registry+https://github.com/rust-lang/crates.io-index" 1352checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 1353 1354[[package]] 1355name = "cfg_aliases" 1356version = "0.2.1" 1357source = "registry+https://github.com/rust-lang/crates.io-index" 1358checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 1359 1360[[package]] 1361name = "chacha20" 1362version = "0.10.0" 1363source = "registry+https://github.com/rust-lang/crates.io-index" 1364checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601" 1365dependencies = [ 1366 "cfg-if", 1367 "cpufeatures 0.3.0", 1368 "rand_core 0.10.0", 1369] 1370 1371[[package]] 1372name = "chrono" 1373version = "0.4.44" 1374source = "registry+https://github.com/rust-lang/crates.io-index" 1375checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" 1376dependencies = [ 1377 "iana-time-zone", 1378 "js-sys", 1379 "num-traits", 1380 "serde", 1381 "wasm-bindgen", 1382 "windows-link", 1383] 1384 1385[[package]] 1386name = "ciborium" 1387version = "0.2.2" 1388source = "registry+https://github.com/rust-lang/crates.io-index" 1389checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 1390dependencies = [ 1391 "ciborium-io", 1392 "ciborium-ll", 1393 "serde", 1394] 1395 1396[[package]] 1397name = "ciborium-io" 1398version = "0.2.2" 1399source = "registry+https://github.com/rust-lang/crates.io-index" 1400checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 1401 1402[[package]] 1403name = "ciborium-ll" 1404version = "0.2.2" 1405source = "registry+https://github.com/rust-lang/crates.io-index" 1406checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 1407dependencies = [ 1408 "ciborium-io", 1409 "half", 1410] 1411 1412[[package]] 1413name = "cid" 1414version = "0.11.1" 1415source = "registry+https://github.com/rust-lang/crates.io-index" 1416checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" 1417dependencies = [ 1418 "core2", 1419 "multibase", 1420 "multihash", 1421 "serde", 1422 "serde_bytes", 1423 "unsigned-varint 0.8.0", 1424] 1425 1426[[package]] 1427name = "cipher" 1428version = "0.4.4" 1429source = "registry+https://github.com/rust-lang/crates.io-index" 1430checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 1431dependencies = [ 1432 "crypto-common", 1433 "inout", 1434 "zeroize", 1435] 1436 1437[[package]] 1438name = "clap" 1439version = "4.6.0" 1440source = "registry+https://github.com/rust-lang/crates.io-index" 1441checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351" 1442dependencies = [ 1443 "clap_builder", 1444 "clap_derive", 1445] 1446 1447[[package]] 1448name = "clap_builder" 1449version = "4.6.0" 1450source = "registry+https://github.com/rust-lang/crates.io-index" 1451checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f" 1452dependencies = [ 1453 "anstream", 1454 "anstyle", 1455 "clap_lex", 1456 "strsim", 1457] 1458 1459[[package]] 1460name = "clap_derive" 1461version = "4.6.0" 1462source = "registry+https://github.com/rust-lang/crates.io-index" 1463checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a" 1464dependencies = [ 1465 "heck 0.5.0", 1466 "proc-macro2", 1467 "quote", 1468 "syn 2.0.117", 1469] 1470 1471[[package]] 1472name = "clap_lex" 1473version = "1.1.0" 1474source = "registry+https://github.com/rust-lang/crates.io-index" 1475checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" 1476 1477[[package]] 1478name = "cmake" 1479version = "0.1.57" 1480source = "registry+https://github.com/rust-lang/crates.io-index" 1481checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d" 1482dependencies = [ 1483 "cc", 1484] 1485 1486[[package]] 1487name = "cobs" 1488version = "0.3.0" 1489source = "registry+https://github.com/rust-lang/crates.io-index" 1490checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" 1491dependencies = [ 1492 "thiserror 2.0.18", 1493] 1494 1495[[package]] 1496name = "color_quant" 1497version = "1.1.0" 1498source = "registry+https://github.com/rust-lang/crates.io-index" 1499checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 1500 1501[[package]] 1502name = "colorchoice" 1503version = "1.0.5" 1504source = "registry+https://github.com/rust-lang/crates.io-index" 1505checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" 1506 1507[[package]] 1508name = "combine" 1509version = "4.6.7" 1510source = "registry+https://github.com/rust-lang/crates.io-index" 1511checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 1512dependencies = [ 1513 "bytes", 1514 "futures-core", 1515 "memchr", 1516 "pin-project-lite", 1517 "tokio", 1518 "tokio-util", 1519] 1520 1521[[package]] 1522name = "compare" 1523version = "0.0.6" 1524source = "registry+https://github.com/rust-lang/crates.io-index" 1525checksum = "ea0095f6103c2a8b44acd6fd15960c801dafebf02e21940360833e0673f48ba7" 1526 1527[[package]] 1528name = "compression-codecs" 1529version = "0.4.37" 1530source = "registry+https://github.com/rust-lang/crates.io-index" 1531checksum = "eb7b51a7d9c967fc26773061ba86150f19c50c0d65c887cb1fbe295fd16619b7" 1532dependencies = [ 1533 "compression-core", 1534 "flate2", 1535 "memchr", 1536] 1537 1538[[package]] 1539name = "compression-core" 1540version = "0.4.31" 1541source = "registry+https://github.com/rust-lang/crates.io-index" 1542checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d" 1543 1544[[package]] 1545name = "concurrent-queue" 1546version = "2.5.0" 1547source = "registry+https://github.com/rust-lang/crates.io-index" 1548checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 1549dependencies = [ 1550 "crossbeam-utils", 1551] 1552 1553[[package]] 1554name = "confique" 1555version = "0.4.0" 1556source = "registry+https://github.com/rust-lang/crates.io-index" 1557checksum = "06b4f5ec222421e22bb0a8cbaa36b1d2b50fd45cdd30c915ded34108da78b29f" 1558dependencies = [ 1559 "confique-macro", 1560 "serde", 1561 "toml 0.9.12+spec-1.1.0", 1562] 1563 1564[[package]] 1565name = "confique-macro" 1566version = "0.0.13" 1567source = "registry+https://github.com/rust-lang/crates.io-index" 1568checksum = "e4d1754680cd218e7bcb4c960cc9bae3444b5197d64563dccccfdf83cab9e1a7" 1569dependencies = [ 1570 "heck 0.5.0", 1571 "proc-macro2", 1572 "quote", 1573 "syn 2.0.117", 1574] 1575 1576[[package]] 1577name = "const-oid" 1578version = "0.9.6" 1579source = "registry+https://github.com/rust-lang/crates.io-index" 1580checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 1581 1582[[package]] 1583name = "const-str" 1584version = "0.4.3" 1585source = "registry+https://github.com/rust-lang/crates.io-index" 1586checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" 1587 1588[[package]] 1589name = "const-str" 1590version = "1.1.0" 1591source = "registry+https://github.com/rust-lang/crates.io-index" 1592checksum = "18f12cc9948ed9604230cdddc7c86e270f9401ccbe3c2e98a4378c5e7632212f" 1593 1594[[package]] 1595name = "constant_time_eq" 1596version = "0.3.1" 1597source = "registry+https://github.com/rust-lang/crates.io-index" 1598checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" 1599 1600[[package]] 1601name = "cordyceps" 1602version = "0.3.4" 1603source = "registry+https://github.com/rust-lang/crates.io-index" 1604checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a" 1605dependencies = [ 1606 "loom", 1607 "tracing", 1608] 1609 1610[[package]] 1611name = "core-foundation" 1612version = "0.9.4" 1613source = "registry+https://github.com/rust-lang/crates.io-index" 1614checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 1615dependencies = [ 1616 "core-foundation-sys", 1617 "libc", 1618] 1619 1620[[package]] 1621name = "core-foundation" 1622version = "0.10.1" 1623source = "registry+https://github.com/rust-lang/crates.io-index" 1624checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 1625dependencies = [ 1626 "core-foundation-sys", 1627 "libc", 1628] 1629 1630[[package]] 1631name = "core-foundation-sys" 1632version = "0.8.7" 1633source = "registry+https://github.com/rust-lang/crates.io-index" 1634checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 1635 1636[[package]] 1637name = "core-models" 1638version = "0.0.4" 1639source = "registry+https://github.com/rust-lang/crates.io-index" 1640checksum = "0940496e5c83c54f3b753d5317daec82e8edac71c33aaa1f666d76f518de2444" 1641dependencies = [ 1642 "hax-lib", 1643 "pastey", 1644 "rand 0.9.2", 1645] 1646 1647[[package]] 1648name = "core2" 1649version = "0.4.0" 1650source = "registry+https://github.com/rust-lang/crates.io-index" 1651checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 1652dependencies = [ 1653 "memchr", 1654] 1655 1656[[package]] 1657name = "cpufeatures" 1658version = "0.2.17" 1659source = "registry+https://github.com/rust-lang/crates.io-index" 1660checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 1661dependencies = [ 1662 "libc", 1663] 1664 1665[[package]] 1666name = "cpufeatures" 1667version = "0.3.0" 1668source = "registry+https://github.com/rust-lang/crates.io-index" 1669checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" 1670dependencies = [ 1671 "libc", 1672] 1673 1674[[package]] 1675name = "crc" 1676version = "3.4.0" 1677source = "registry+https://github.com/rust-lang/crates.io-index" 1678checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" 1679dependencies = [ 1680 "crc-catalog", 1681] 1682 1683[[package]] 1684name = "crc-catalog" 1685version = "2.4.0" 1686source = "registry+https://github.com/rust-lang/crates.io-index" 1687checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 1688 1689[[package]] 1690name = "crc-fast" 1691version = "1.6.0" 1692source = "registry+https://github.com/rust-lang/crates.io-index" 1693checksum = "6ddc2d09feefeee8bd78101665bd8645637828fa9317f9f292496dbbd8c65ff3" 1694dependencies = [ 1695 "crc", 1696 "digest", 1697 "rand 0.9.2", 1698 "regex", 1699 "rustversion", 1700] 1701 1702[[package]] 1703name = "crc32fast" 1704version = "1.5.0" 1705source = "registry+https://github.com/rust-lang/crates.io-index" 1706checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 1707dependencies = [ 1708 "cfg-if", 1709] 1710 1711[[package]] 1712name = "critical-section" 1713version = "1.2.0" 1714source = "registry+https://github.com/rust-lang/crates.io-index" 1715checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" 1716 1717[[package]] 1718name = "crossbeam-deque" 1719version = "0.8.6" 1720source = "registry+https://github.com/rust-lang/crates.io-index" 1721checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" 1722dependencies = [ 1723 "crossbeam-epoch", 1724 "crossbeam-utils", 1725] 1726 1727[[package]] 1728name = "crossbeam-epoch" 1729version = "0.9.18" 1730source = "registry+https://github.com/rust-lang/crates.io-index" 1731checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1732dependencies = [ 1733 "crossbeam-utils", 1734] 1735 1736[[package]] 1737name = "crossbeam-queue" 1738version = "0.3.12" 1739source = "registry+https://github.com/rust-lang/crates.io-index" 1740checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" 1741dependencies = [ 1742 "crossbeam-utils", 1743] 1744 1745[[package]] 1746name = "crossbeam-skiplist" 1747version = "0.1.3" 1748source = "registry+https://github.com/rust-lang/crates.io-index" 1749checksum = "df29de440c58ca2cc6e587ec3d22347551a32435fbde9d2bff64e78a9ffa151b" 1750dependencies = [ 1751 "crossbeam-epoch", 1752 "crossbeam-utils", 1753] 1754 1755[[package]] 1756name = "crossbeam-utils" 1757version = "0.8.21" 1758source = "registry+https://github.com/rust-lang/crates.io-index" 1759checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 1760 1761[[package]] 1762name = "crunchy" 1763version = "0.2.4" 1764source = "registry+https://github.com/rust-lang/crates.io-index" 1765checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 1766 1767[[package]] 1768name = "crypto-bigint" 1769version = "0.4.9" 1770source = "registry+https://github.com/rust-lang/crates.io-index" 1771checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" 1772dependencies = [ 1773 "generic-array", 1774 "rand_core 0.6.4", 1775 "subtle", 1776 "zeroize", 1777] 1778 1779[[package]] 1780name = "crypto-bigint" 1781version = "0.5.5" 1782source = "registry+https://github.com/rust-lang/crates.io-index" 1783checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 1784dependencies = [ 1785 "generic-array", 1786 "rand_core 0.6.4", 1787 "subtle", 1788 "zeroize", 1789] 1790 1791[[package]] 1792name = "crypto-common" 1793version = "0.1.7" 1794source = "registry+https://github.com/rust-lang/crates.io-index" 1795checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" 1796dependencies = [ 1797 "generic-array", 1798 "rand_core 0.6.4", 1799 "typenum", 1800] 1801 1802[[package]] 1803name = "ctor" 1804version = "0.6.3" 1805source = "registry+https://github.com/rust-lang/crates.io-index" 1806checksum = "424e0138278faeb2b401f174ad17e715c829512d74f3d1e81eb43365c2e0590e" 1807dependencies = [ 1808 "ctor-proc-macro", 1809 "dtor", 1810] 1811 1812[[package]] 1813name = "ctor-proc-macro" 1814version = "0.0.7" 1815source = "registry+https://github.com/rust-lang/crates.io-index" 1816checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1" 1817 1818[[package]] 1819name = "ctr" 1820version = "0.9.2" 1821source = "registry+https://github.com/rust-lang/crates.io-index" 1822checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 1823dependencies = [ 1824 "cipher", 1825] 1826 1827[[package]] 1828name = "curve25519-dalek" 1829version = "4.1.3" 1830source = "git+https://github.com/signalapp/curve25519-dalek?tag=signal-curve25519-4.1.3#7c6d34756355a3566a704da84dce7b1c039a6572" 1831dependencies = [ 1832 "cfg-if", 1833 "cpufeatures 0.2.17", 1834 "curve25519-dalek-derive", 1835 "digest", 1836 "fiat-crypto", 1837 "rand_core 0.6.4", 1838 "rustc_version", 1839 "serde", 1840 "subtle", 1841 "zeroize", 1842] 1843 1844[[package]] 1845name = "curve25519-dalek-derive" 1846version = "0.1.1" 1847source = "git+https://github.com/signalapp/curve25519-dalek?tag=signal-curve25519-4.1.3#7c6d34756355a3566a704da84dce7b1c039a6572" 1848dependencies = [ 1849 "proc-macro2", 1850 "quote", 1851 "syn 2.0.117", 1852] 1853 1854[[package]] 1855name = "darling" 1856version = "0.23.0" 1857source = "registry+https://github.com/rust-lang/crates.io-index" 1858checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d" 1859dependencies = [ 1860 "darling_core", 1861 "darling_macro", 1862] 1863 1864[[package]] 1865name = "darling_core" 1866version = "0.23.0" 1867source = "registry+https://github.com/rust-lang/crates.io-index" 1868checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0" 1869dependencies = [ 1870 "ident_case", 1871 "proc-macro2", 1872 "quote", 1873 "strsim", 1874 "syn 2.0.117", 1875] 1876 1877[[package]] 1878name = "darling_macro" 1879version = "0.23.0" 1880source = "registry+https://github.com/rust-lang/crates.io-index" 1881checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" 1882dependencies = [ 1883 "darling_core", 1884 "quote", 1885 "syn 2.0.117", 1886] 1887 1888[[package]] 1889name = "dashmap" 1890version = "6.1.0" 1891source = "registry+https://github.com/rust-lang/crates.io-index" 1892checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" 1893dependencies = [ 1894 "cfg-if", 1895 "crossbeam-utils", 1896 "hashbrown 0.14.5", 1897 "lock_api", 1898 "once_cell", 1899 "parking_lot_core", 1900] 1901 1902[[package]] 1903name = "data-encoding" 1904version = "2.10.0" 1905source = "registry+https://github.com/rust-lang/crates.io-index" 1906checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea" 1907 1908[[package]] 1909name = "data-encoding-macro" 1910version = "0.1.19" 1911source = "registry+https://github.com/rust-lang/crates.io-index" 1912checksum = "8142a83c17aa9461d637e649271eae18bf2edd00e91f2e105df36c3c16355bdb" 1913dependencies = [ 1914 "data-encoding", 1915 "data-encoding-macro-internal", 1916] 1917 1918[[package]] 1919name = "data-encoding-macro-internal" 1920version = "0.1.17" 1921source = "registry+https://github.com/rust-lang/crates.io-index" 1922checksum = "7ab67060fc6b8ef687992d439ca0fa36e7ed17e9a0b16b25b601e8757df720de" 1923dependencies = [ 1924 "data-encoding", 1925 "syn 2.0.117", 1926] 1927 1928[[package]] 1929name = "deadpool" 1930version = "0.12.3" 1931source = "registry+https://github.com/rust-lang/crates.io-index" 1932checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b" 1933dependencies = [ 1934 "deadpool-runtime", 1935 "lazy_static", 1936 "num_cpus", 1937 "tokio", 1938] 1939 1940[[package]] 1941name = "deadpool-runtime" 1942version = "0.1.4" 1943source = "registry+https://github.com/rust-lang/crates.io-index" 1944checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b" 1945 1946[[package]] 1947name = "der" 1948version = "0.6.1" 1949source = "registry+https://github.com/rust-lang/crates.io-index" 1950checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" 1951dependencies = [ 1952 "const-oid", 1953 "zeroize", 1954] 1955 1956[[package]] 1957name = "der" 1958version = "0.7.10" 1959source = "registry+https://github.com/rust-lang/crates.io-index" 1960checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 1961dependencies = [ 1962 "const-oid", 1963 "pem-rfc7468", 1964 "zeroize", 1965] 1966 1967[[package]] 1968name = "der-parser" 1969version = "9.0.0" 1970source = "registry+https://github.com/rust-lang/crates.io-index" 1971checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" 1972dependencies = [ 1973 "asn1-rs", 1974 "displaydoc", 1975 "nom", 1976 "num-bigint", 1977 "num-traits", 1978 "rusticata-macros", 1979] 1980 1981[[package]] 1982name = "deranged" 1983version = "0.5.8" 1984source = "registry+https://github.com/rust-lang/crates.io-index" 1985checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" 1986dependencies = [ 1987 "powerfmt", 1988 "serde_core", 1989] 1990 1991[[package]] 1992name = "derive-where" 1993version = "1.6.1" 1994source = "registry+https://github.com/rust-lang/crates.io-index" 1995checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534" 1996dependencies = [ 1997 "proc-macro2", 1998 "quote", 1999 "syn 2.0.117", 2000] 2001 2002[[package]] 2003name = "derive_more" 2004version = "1.0.0" 2005source = "registry+https://github.com/rust-lang/crates.io-index" 2006checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" 2007dependencies = [ 2008 "derive_more-impl 1.0.0", 2009] 2010 2011[[package]] 2012name = "derive_more" 2013version = "2.1.1" 2014source = "registry+https://github.com/rust-lang/crates.io-index" 2015checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" 2016dependencies = [ 2017 "derive_more-impl 2.1.1", 2018] 2019 2020[[package]] 2021name = "derive_more-impl" 2022version = "1.0.0" 2023source = "registry+https://github.com/rust-lang/crates.io-index" 2024checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" 2025dependencies = [ 2026 "proc-macro2", 2027 "quote", 2028 "syn 2.0.117", 2029 "unicode-xid", 2030] 2031 2032[[package]] 2033name = "derive_more-impl" 2034version = "2.1.1" 2035source = "registry+https://github.com/rust-lang/crates.io-index" 2036checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" 2037dependencies = [ 2038 "proc-macro2", 2039 "quote", 2040 "rustc_version", 2041 "syn 2.0.117", 2042 "unicode-xid", 2043] 2044 2045[[package]] 2046name = "diatomic-waker" 2047version = "0.2.3" 2048source = "registry+https://github.com/rust-lang/crates.io-index" 2049checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c" 2050 2051[[package]] 2052name = "digest" 2053version = "0.10.7" 2054source = "registry+https://github.com/rust-lang/crates.io-index" 2055checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 2056dependencies = [ 2057 "block-buffer", 2058 "const-oid", 2059 "crypto-common", 2060 "subtle", 2061] 2062 2063[[package]] 2064name = "displaydoc" 2065version = "0.2.5" 2066source = "registry+https://github.com/rust-lang/crates.io-index" 2067checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 2068dependencies = [ 2069 "proc-macro2", 2070 "quote", 2071 "syn 2.0.117", 2072] 2073 2074[[package]] 2075name = "docker_credential" 2076version = "1.3.2" 2077source = "registry+https://github.com/rust-lang/crates.io-index" 2078checksum = "1d89dfcba45b4afad7450a99b39e751590463e45c04728cf555d36bb66940de8" 2079dependencies = [ 2080 "base64 0.21.7", 2081 "serde", 2082 "serde_json", 2083] 2084 2085[[package]] 2086name = "dotenvy" 2087version = "0.15.7" 2088source = "registry+https://github.com/rust-lang/crates.io-index" 2089checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 2090 2091[[package]] 2092name = "dtor" 2093version = "0.1.1" 2094source = "registry+https://github.com/rust-lang/crates.io-index" 2095checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301" 2096dependencies = [ 2097 "dtor-proc-macro", 2098] 2099 2100[[package]] 2101name = "dtor-proc-macro" 2102version = "0.0.6" 2103source = "registry+https://github.com/rust-lang/crates.io-index" 2104checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5" 2105 2106[[package]] 2107name = "dunce" 2108version = "1.0.5" 2109source = "registry+https://github.com/rust-lang/crates.io-index" 2110checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" 2111 2112[[package]] 2113name = "dyn-clone" 2114version = "1.0.20" 2115source = "registry+https://github.com/rust-lang/crates.io-index" 2116checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" 2117 2118[[package]] 2119name = "ecdsa" 2120version = "0.14.8" 2121source = "registry+https://github.com/rust-lang/crates.io-index" 2122checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" 2123dependencies = [ 2124 "der 0.6.1", 2125 "elliptic-curve 0.12.3", 2126 "rfc6979 0.3.1", 2127 "signature 1.6.4", 2128] 2129 2130[[package]] 2131name = "ecdsa" 2132version = "0.16.9" 2133source = "registry+https://github.com/rust-lang/crates.io-index" 2134checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 2135dependencies = [ 2136 "der 0.7.10", 2137 "digest", 2138 "elliptic-curve 0.13.8", 2139 "rfc6979 0.4.0", 2140 "signature 2.2.0", 2141 "spki 0.7.3", 2142] 2143 2144[[package]] 2145name = "ed25519" 2146version = "2.2.3" 2147source = "registry+https://github.com/rust-lang/crates.io-index" 2148checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" 2149dependencies = [ 2150 "pkcs8 0.10.2", 2151 "signature 2.2.0", 2152] 2153 2154[[package]] 2155name = "ed25519-dalek" 2156version = "2.2.0" 2157source = "registry+https://github.com/rust-lang/crates.io-index" 2158checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9" 2159dependencies = [ 2160 "curve25519-dalek", 2161 "ed25519", 2162 "rand_core 0.6.4", 2163 "serde", 2164 "sha2", 2165 "subtle", 2166 "zeroize", 2167] 2168 2169[[package]] 2170name = "either" 2171version = "1.15.0" 2172source = "registry+https://github.com/rust-lang/crates.io-index" 2173checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 2174dependencies = [ 2175 "serde", 2176] 2177 2178[[package]] 2179name = "elliptic-curve" 2180version = "0.12.3" 2181source = "registry+https://github.com/rust-lang/crates.io-index" 2182checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" 2183dependencies = [ 2184 "base16ct 0.1.1", 2185 "crypto-bigint 0.4.9", 2186 "der 0.6.1", 2187 "digest", 2188 "ff 0.12.1", 2189 "generic-array", 2190 "group 0.12.1", 2191 "pkcs8 0.9.0", 2192 "rand_core 0.6.4", 2193 "sec1 0.3.0", 2194 "subtle", 2195 "zeroize", 2196] 2197 2198[[package]] 2199name = "elliptic-curve" 2200version = "0.13.8" 2201source = "registry+https://github.com/rust-lang/crates.io-index" 2202checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 2203dependencies = [ 2204 "base16ct 0.2.0", 2205 "crypto-bigint 0.5.5", 2206 "digest", 2207 "ff 0.13.1", 2208 "generic-array", 2209 "group 0.13.0", 2210 "hkdf", 2211 "pem-rfc7468", 2212 "pkcs8 0.10.2", 2213 "rand_core 0.6.4", 2214 "sec1 0.7.3", 2215 "subtle", 2216 "zeroize", 2217] 2218 2219[[package]] 2220name = "embedded-io" 2221version = "0.4.0" 2222source = "registry+https://github.com/rust-lang/crates.io-index" 2223checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" 2224 2225[[package]] 2226name = "embedded-io" 2227version = "0.6.1" 2228source = "registry+https://github.com/rust-lang/crates.io-index" 2229checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" 2230 2231[[package]] 2232name = "encoding_rs" 2233version = "0.8.35" 2234source = "registry+https://github.com/rust-lang/crates.io-index" 2235checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 2236dependencies = [ 2237 "cfg-if", 2238] 2239 2240[[package]] 2241name = "enum-as-inner" 2242version = "0.6.1" 2243source = "registry+https://github.com/rust-lang/crates.io-index" 2244checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" 2245dependencies = [ 2246 "heck 0.5.0", 2247 "proc-macro2", 2248 "quote", 2249 "syn 2.0.117", 2250] 2251 2252[[package]] 2253name = "enum_dispatch" 2254version = "0.3.13" 2255source = "registry+https://github.com/rust-lang/crates.io-index" 2256checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd" 2257dependencies = [ 2258 "once_cell", 2259 "proc-macro2", 2260 "quote", 2261 "syn 2.0.117", 2262] 2263 2264[[package]] 2265name = "equivalent" 2266version = "1.0.2" 2267source = "registry+https://github.com/rust-lang/crates.io-index" 2268checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 2269 2270[[package]] 2271name = "errno" 2272version = "0.3.14" 2273source = "registry+https://github.com/rust-lang/crates.io-index" 2274checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 2275dependencies = [ 2276 "libc", 2277 "windows-sys 0.61.2", 2278] 2279 2280[[package]] 2281name = "etcetera" 2282version = "0.8.0" 2283source = "registry+https://github.com/rust-lang/crates.io-index" 2284checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" 2285dependencies = [ 2286 "cfg-if", 2287 "home", 2288 "windows-sys 0.48.0", 2289] 2290 2291[[package]] 2292name = "etcetera" 2293version = "0.11.0" 2294source = "registry+https://github.com/rust-lang/crates.io-index" 2295checksum = "de48cc4d1c1d97a20fd819def54b890cadde72ed3ad0c614822a0a433361be96" 2296dependencies = [ 2297 "cfg-if", 2298 "windows-sys 0.61.2", 2299] 2300 2301[[package]] 2302name = "event-listener" 2303version = "5.4.1" 2304source = "registry+https://github.com/rust-lang/crates.io-index" 2305checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 2306dependencies = [ 2307 "concurrent-queue", 2308 "parking", 2309 "pin-project-lite", 2310] 2311 2312[[package]] 2313name = "event-listener-strategy" 2314version = "0.5.4" 2315source = "registry+https://github.com/rust-lang/crates.io-index" 2316checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 2317dependencies = [ 2318 "event-listener", 2319 "pin-project-lite", 2320] 2321 2322[[package]] 2323name = "fastrand" 2324version = "2.3.0" 2325source = "registry+https://github.com/rust-lang/crates.io-index" 2326checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 2327 2328[[package]] 2329name = "fdeflate" 2330version = "0.3.7" 2331source = "registry+https://github.com/rust-lang/crates.io-index" 2332checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" 2333dependencies = [ 2334 "simd-adler32", 2335] 2336 2337[[package]] 2338name = "ferroid" 2339version = "0.8.9" 2340source = "registry+https://github.com/rust-lang/crates.io-index" 2341checksum = "bb330bbd4cb7a5b9f559427f06f98a4f853a137c8298f3bd3f8ca57663e21986" 2342dependencies = [ 2343 "portable-atomic", 2344 "rand 0.9.2", 2345 "web-time", 2346] 2347 2348[[package]] 2349name = "ff" 2350version = "0.12.1" 2351source = "registry+https://github.com/rust-lang/crates.io-index" 2352checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" 2353dependencies = [ 2354 "rand_core 0.6.4", 2355 "subtle", 2356] 2357 2358[[package]] 2359name = "ff" 2360version = "0.13.1" 2361source = "registry+https://github.com/rust-lang/crates.io-index" 2362checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" 2363dependencies = [ 2364 "rand_core 0.6.4", 2365 "subtle", 2366] 2367 2368[[package]] 2369name = "fiat-crypto" 2370version = "0.2.9" 2371source = "registry+https://github.com/rust-lang/crates.io-index" 2372checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" 2373 2374[[package]] 2375name = "filetime" 2376version = "0.2.27" 2377source = "registry+https://github.com/rust-lang/crates.io-index" 2378checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db" 2379dependencies = [ 2380 "cfg-if", 2381 "libc", 2382 "libredox", 2383] 2384 2385[[package]] 2386name = "find-msvc-tools" 2387version = "0.1.9" 2388source = "registry+https://github.com/rust-lang/crates.io-index" 2389checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" 2390 2391[[package]] 2392name = "fixedbitset" 2393version = "0.5.7" 2394source = "registry+https://github.com/rust-lang/crates.io-index" 2395checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" 2396 2397[[package]] 2398name = "fjall" 2399version = "3.1.2" 2400source = "registry+https://github.com/rust-lang/crates.io-index" 2401checksum = "1a9530ff159bc3ad3a15da746da0f6e95375c2ac64708cbb85ec1ebd26761a84" 2402dependencies = [ 2403 "byteorder-lite", 2404 "byteview", 2405 "dashmap", 2406 "flume 0.12.0", 2407 "log", 2408 "lsm-tree", 2409 "lz4_flex", 2410 "tempfile", 2411 "xxhash-rust", 2412] 2413 2414[[package]] 2415name = "flate2" 2416version = "1.1.9" 2417source = "registry+https://github.com/rust-lang/crates.io-index" 2418checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" 2419dependencies = [ 2420 "crc32fast", 2421 "miniz_oxide", 2422 "zlib-rs", 2423] 2424 2425[[package]] 2426name = "flume" 2427version = "0.11.1" 2428source = "registry+https://github.com/rust-lang/crates.io-index" 2429checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" 2430dependencies = [ 2431 "futures-core", 2432 "futures-sink", 2433 "nanorand", 2434 "spin 0.9.8", 2435] 2436 2437[[package]] 2438name = "flume" 2439version = "0.12.0" 2440source = "registry+https://github.com/rust-lang/crates.io-index" 2441checksum = "5e139bc46ca777eb5efaf62df0ab8cc5fd400866427e56c68b22e414e53bd3be" 2442dependencies = [ 2443 "spin 0.9.8", 2444] 2445 2446[[package]] 2447name = "fnv" 2448version = "1.0.7" 2449source = "registry+https://github.com/rust-lang/crates.io-index" 2450checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 2451 2452[[package]] 2453name = "foca" 2454version = "1.0.0" 2455source = "registry+https://github.com/rust-lang/crates.io-index" 2456checksum = "1f59e967f3f675997e4a4a6b99d2a75148d59d64c46211b78b4f34ebb951b273" 2457dependencies = [ 2458 "bincode 2.0.1", 2459 "bytes", 2460 "rand 0.9.2", 2461 "serde", 2462 "tracing", 2463] 2464 2465[[package]] 2466name = "foldhash" 2467version = "0.1.5" 2468source = "registry+https://github.com/rust-lang/crates.io-index" 2469checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 2470 2471[[package]] 2472name = "foldhash" 2473version = "0.2.0" 2474source = "registry+https://github.com/rust-lang/crates.io-index" 2475checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" 2476 2477[[package]] 2478name = "foreign-types" 2479version = "0.3.2" 2480source = "registry+https://github.com/rust-lang/crates.io-index" 2481checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 2482dependencies = [ 2483 "foreign-types-shared", 2484] 2485 2486[[package]] 2487name = "foreign-types-shared" 2488version = "0.1.1" 2489source = "registry+https://github.com/rust-lang/crates.io-index" 2490checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 2491 2492[[package]] 2493name = "form_urlencoded" 2494version = "1.2.2" 2495source = "registry+https://github.com/rust-lang/crates.io-index" 2496checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 2497dependencies = [ 2498 "percent-encoding", 2499] 2500 2501[[package]] 2502name = "fs_extra" 2503version = "1.3.0" 2504source = "registry+https://github.com/rust-lang/crates.io-index" 2505checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" 2506 2507[[package]] 2508name = "futures" 2509version = "0.3.32" 2510source = "registry+https://github.com/rust-lang/crates.io-index" 2511checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" 2512dependencies = [ 2513 "futures-channel", 2514 "futures-core", 2515 "futures-executor", 2516 "futures-io", 2517 "futures-sink", 2518 "futures-task", 2519 "futures-util", 2520] 2521 2522[[package]] 2523name = "futures-buffered" 2524version = "0.2.13" 2525source = "registry+https://github.com/rust-lang/crates.io-index" 2526checksum = "4421cb78ee172b6b06080093479d3c50f058e7c81b7d577bbb8d118d551d4cd5" 2527dependencies = [ 2528 "cordyceps", 2529 "diatomic-waker", 2530 "futures-core", 2531 "pin-project-lite", 2532 "spin 0.10.0", 2533] 2534 2535[[package]] 2536name = "futures-channel" 2537version = "0.3.32" 2538source = "registry+https://github.com/rust-lang/crates.io-index" 2539checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" 2540dependencies = [ 2541 "futures-core", 2542 "futures-sink", 2543] 2544 2545[[package]] 2546name = "futures-core" 2547version = "0.3.32" 2548source = "registry+https://github.com/rust-lang/crates.io-index" 2549checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" 2550 2551[[package]] 2552name = "futures-executor" 2553version = "0.3.32" 2554source = "registry+https://github.com/rust-lang/crates.io-index" 2555checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" 2556dependencies = [ 2557 "futures-core", 2558 "futures-task", 2559 "futures-util", 2560] 2561 2562[[package]] 2563name = "futures-intrusive" 2564version = "0.5.0" 2565source = "registry+https://github.com/rust-lang/crates.io-index" 2566checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" 2567dependencies = [ 2568 "futures-core", 2569 "lock_api", 2570 "parking_lot", 2571] 2572 2573[[package]] 2574name = "futures-io" 2575version = "0.3.32" 2576source = "registry+https://github.com/rust-lang/crates.io-index" 2577checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" 2578 2579[[package]] 2580name = "futures-lite" 2581version = "2.6.1" 2582source = "registry+https://github.com/rust-lang/crates.io-index" 2583checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 2584dependencies = [ 2585 "fastrand", 2586 "futures-core", 2587 "futures-io", 2588 "parking", 2589 "pin-project-lite", 2590] 2591 2592[[package]] 2593name = "futures-macro" 2594version = "0.3.32" 2595source = "registry+https://github.com/rust-lang/crates.io-index" 2596checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" 2597dependencies = [ 2598 "proc-macro2", 2599 "quote", 2600 "syn 2.0.117", 2601] 2602 2603[[package]] 2604name = "futures-sink" 2605version = "0.3.32" 2606source = "registry+https://github.com/rust-lang/crates.io-index" 2607checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" 2608 2609[[package]] 2610name = "futures-task" 2611version = "0.3.32" 2612source = "registry+https://github.com/rust-lang/crates.io-index" 2613checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" 2614 2615[[package]] 2616name = "futures-timer" 2617version = "3.0.3" 2618source = "registry+https://github.com/rust-lang/crates.io-index" 2619checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" 2620 2621[[package]] 2622name = "futures-util" 2623version = "0.3.32" 2624source = "registry+https://github.com/rust-lang/crates.io-index" 2625checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" 2626dependencies = [ 2627 "futures-channel", 2628 "futures-core", 2629 "futures-io", 2630 "futures-macro", 2631 "futures-sink", 2632 "futures-task", 2633 "memchr", 2634 "pin-project-lite", 2635 "slab", 2636] 2637 2638[[package]] 2639name = "generator" 2640version = "0.8.8" 2641source = "registry+https://github.com/rust-lang/crates.io-index" 2642checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9" 2643dependencies = [ 2644 "cc", 2645 "cfg-if", 2646 "libc", 2647 "log", 2648 "rustversion", 2649 "windows-link", 2650 "windows-result", 2651] 2652 2653[[package]] 2654name = "generic-array" 2655version = "0.14.7" 2656source = "registry+https://github.com/rust-lang/crates.io-index" 2657checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 2658dependencies = [ 2659 "typenum", 2660 "version_check", 2661 "zeroize", 2662] 2663 2664[[package]] 2665name = "getrandom" 2666version = "0.2.17" 2667source = "registry+https://github.com/rust-lang/crates.io-index" 2668checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" 2669dependencies = [ 2670 "cfg-if", 2671 "js-sys", 2672 "libc", 2673 "wasi", 2674 "wasm-bindgen", 2675] 2676 2677[[package]] 2678name = "getrandom" 2679version = "0.3.4" 2680source = "registry+https://github.com/rust-lang/crates.io-index" 2681checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 2682dependencies = [ 2683 "cfg-if", 2684 "js-sys", 2685 "libc", 2686 "r-efi 5.3.0", 2687 "wasip2", 2688 "wasm-bindgen", 2689] 2690 2691[[package]] 2692name = "getrandom" 2693version = "0.4.2" 2694source = "registry+https://github.com/rust-lang/crates.io-index" 2695checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" 2696dependencies = [ 2697 "cfg-if", 2698 "libc", 2699 "r-efi 6.0.0", 2700 "rand_core 0.10.0", 2701 "wasip2", 2702 "wasip3", 2703] 2704 2705[[package]] 2706name = "ghash" 2707version = "0.5.1" 2708source = "registry+https://github.com/rust-lang/crates.io-index" 2709checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" 2710dependencies = [ 2711 "opaque-debug", 2712 "polyval", 2713 "zeroize", 2714] 2715 2716[[package]] 2717name = "gif" 2718version = "0.14.1" 2719source = "registry+https://github.com/rust-lang/crates.io-index" 2720checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e" 2721dependencies = [ 2722 "color_quant", 2723 "weezl", 2724] 2725 2726[[package]] 2727name = "gloo-timers" 2728version = "0.3.0" 2729source = "registry+https://github.com/rust-lang/crates.io-index" 2730checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994" 2731dependencies = [ 2732 "futures-channel", 2733 "futures-core", 2734 "js-sys", 2735 "wasm-bindgen", 2736] 2737 2738[[package]] 2739name = "governor" 2740version = "0.10.4" 2741source = "registry+https://github.com/rust-lang/crates.io-index" 2742checksum = "9efcab3c1958580ff1f25a2a41be1668f7603d849bb63af523b208a3cc1223b8" 2743dependencies = [ 2744 "cfg-if", 2745 "dashmap", 2746 "futures-sink", 2747 "futures-timer", 2748 "futures-util", 2749 "getrandom 0.3.4", 2750 "hashbrown 0.16.1", 2751 "nonzero_ext", 2752 "parking_lot", 2753 "portable-atomic", 2754 "quanta", 2755 "rand 0.9.2", 2756 "smallvec", 2757 "spinning_top", 2758 "web-time", 2759] 2760 2761[[package]] 2762name = "group" 2763version = "0.12.1" 2764source = "registry+https://github.com/rust-lang/crates.io-index" 2765checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" 2766dependencies = [ 2767 "ff 0.12.1", 2768 "rand_core 0.6.4", 2769 "subtle", 2770] 2771 2772[[package]] 2773name = "group" 2774version = "0.13.0" 2775source = "registry+https://github.com/rust-lang/crates.io-index" 2776checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 2777dependencies = [ 2778 "ff 0.13.1", 2779 "rand_core 0.6.4", 2780 "subtle", 2781] 2782 2783[[package]] 2784name = "h2" 2785version = "0.3.27" 2786source = "registry+https://github.com/rust-lang/crates.io-index" 2787checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d" 2788dependencies = [ 2789 "bytes", 2790 "fnv", 2791 "futures-core", 2792 "futures-sink", 2793 "futures-util", 2794 "http 0.2.12", 2795 "indexmap 2.13.0", 2796 "slab", 2797 "tokio", 2798 "tokio-util", 2799 "tracing", 2800] 2801 2802[[package]] 2803name = "h2" 2804version = "0.4.13" 2805source = "registry+https://github.com/rust-lang/crates.io-index" 2806checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" 2807dependencies = [ 2808 "atomic-waker", 2809 "bytes", 2810 "fnv", 2811 "futures-core", 2812 "futures-sink", 2813 "http 1.4.0", 2814 "indexmap 2.13.0", 2815 "slab", 2816 "tokio", 2817 "tokio-util", 2818 "tracing", 2819] 2820 2821[[package]] 2822name = "half" 2823version = "2.7.1" 2824source = "registry+https://github.com/rust-lang/crates.io-index" 2825checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" 2826dependencies = [ 2827 "cfg-if", 2828 "crunchy", 2829 "zerocopy", 2830] 2831 2832[[package]] 2833name = "hash32" 2834version = "0.2.1" 2835source = "registry+https://github.com/rust-lang/crates.io-index" 2836checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67" 2837dependencies = [ 2838 "byteorder", 2839] 2840 2841[[package]] 2842name = "hashbrown" 2843version = "0.12.3" 2844source = "registry+https://github.com/rust-lang/crates.io-index" 2845checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 2846 2847[[package]] 2848name = "hashbrown" 2849version = "0.14.5" 2850source = "registry+https://github.com/rust-lang/crates.io-index" 2851checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 2852 2853[[package]] 2854name = "hashbrown" 2855version = "0.15.5" 2856source = "registry+https://github.com/rust-lang/crates.io-index" 2857checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 2858dependencies = [ 2859 "allocator-api2", 2860 "equivalent", 2861 "foldhash 0.1.5", 2862] 2863 2864[[package]] 2865name = "hashbrown" 2866version = "0.16.1" 2867source = "registry+https://github.com/rust-lang/crates.io-index" 2868checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 2869dependencies = [ 2870 "allocator-api2", 2871 "equivalent", 2872 "foldhash 0.2.0", 2873] 2874 2875[[package]] 2876name = "hashlink" 2877version = "0.10.0" 2878source = "registry+https://github.com/rust-lang/crates.io-index" 2879checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1" 2880dependencies = [ 2881 "hashbrown 0.15.5", 2882] 2883 2884[[package]] 2885name = "hax-lib" 2886version = "0.3.5" 2887source = "registry+https://github.com/rust-lang/crates.io-index" 2888checksum = "74d9ba66d1739c68e0219b2b2238b5c4145f491ebf181b9c6ab561a19352ae86" 2889dependencies = [ 2890 "hax-lib-macros", 2891 "num-bigint", 2892 "num-traits", 2893] 2894 2895[[package]] 2896name = "hax-lib-macros" 2897version = "0.3.5" 2898source = "registry+https://github.com/rust-lang/crates.io-index" 2899checksum = "24ba777a231a58d1bce1d68313fa6b6afcc7966adef23d60f45b8a2b9b688bf1" 2900dependencies = [ 2901 "hax-lib-macros-types", 2902 "proc-macro-error2", 2903 "proc-macro2", 2904 "quote", 2905 "syn 2.0.117", 2906] 2907 2908[[package]] 2909name = "hax-lib-macros-types" 2910version = "0.3.5" 2911source = "registry+https://github.com/rust-lang/crates.io-index" 2912checksum = "867e19177d7425140b417cd27c2e05320e727ee682e98368f88b7194e80ad515" 2913dependencies = [ 2914 "proc-macro2", 2915 "quote", 2916 "serde", 2917 "serde_json", 2918 "uuid", 2919] 2920 2921[[package]] 2922name = "heapless" 2923version = "0.7.17" 2924source = "registry+https://github.com/rust-lang/crates.io-index" 2925checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f" 2926dependencies = [ 2927 "atomic-polyfill", 2928 "hash32", 2929 "rustc_version", 2930 "serde", 2931 "spin 0.9.8", 2932 "stable_deref_trait", 2933] 2934 2935[[package]] 2936name = "heck" 2937version = "0.4.1" 2938source = "registry+https://github.com/rust-lang/crates.io-index" 2939checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 2940 2941[[package]] 2942name = "heck" 2943version = "0.5.0" 2944source = "registry+https://github.com/rust-lang/crates.io-index" 2945checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 2946 2947[[package]] 2948name = "hermit-abi" 2949version = "0.5.2" 2950source = "registry+https://github.com/rust-lang/crates.io-index" 2951checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 2952 2953[[package]] 2954name = "hex" 2955version = "0.4.3" 2956source = "registry+https://github.com/rust-lang/crates.io-index" 2957checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2958 2959[[package]] 2960name = "hex_fmt" 2961version = "0.3.0" 2962source = "registry+https://github.com/rust-lang/crates.io-index" 2963checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f" 2964 2965[[package]] 2966name = "hickory-proto" 2967version = "0.24.4" 2968source = "registry+https://github.com/rust-lang/crates.io-index" 2969checksum = "92652067c9ce6f66ce53cc38d1169daa36e6e7eb7dd3b63b5103bd9d97117248" 2970dependencies = [ 2971 "async-trait", 2972 "cfg-if", 2973 "data-encoding", 2974 "enum-as-inner", 2975 "futures-channel", 2976 "futures-io", 2977 "futures-util", 2978 "idna", 2979 "ipnet", 2980 "once_cell", 2981 "rand 0.8.5", 2982 "thiserror 1.0.69", 2983 "tinyvec", 2984 "tokio", 2985 "tracing", 2986 "url", 2987] 2988 2989[[package]] 2990name = "hickory-resolver" 2991version = "0.24.4" 2992source = "registry+https://github.com/rust-lang/crates.io-index" 2993checksum = "cbb117a1ca520e111743ab2f6688eddee69db4e0ea242545a604dce8a66fd22e" 2994dependencies = [ 2995 "cfg-if", 2996 "futures-util", 2997 "hickory-proto", 2998 "ipconfig", 2999 "lru-cache", 3000 "once_cell", 3001 "parking_lot", 3002 "rand 0.8.5", 3003 "resolv-conf", 3004 "smallvec", 3005 "thiserror 1.0.69", 3006 "tokio", 3007 "tracing", 3008] 3009 3010[[package]] 3011name = "hkdf" 3012version = "0.12.4" 3013source = "registry+https://github.com/rust-lang/crates.io-index" 3014checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 3015dependencies = [ 3016 "hmac", 3017] 3018 3019[[package]] 3020name = "hmac" 3021version = "0.12.1" 3022source = "registry+https://github.com/rust-lang/crates.io-index" 3023checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 3024dependencies = [ 3025 "digest", 3026] 3027 3028[[package]] 3029name = "home" 3030version = "0.5.12" 3031source = "registry+https://github.com/rust-lang/crates.io-index" 3032checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" 3033dependencies = [ 3034 "windows-sys 0.61.2", 3035] 3036 3037[[package]] 3038name = "hpke-rs" 3039version = "0.5.0" 3040source = "registry+https://github.com/rust-lang/crates.io-index" 3041checksum = "c8c09b01d75373842d3123a4dd51bad5cb70e95d8b96e50bc20d08877a8d2443" 3042dependencies = [ 3043 "hpke-rs-crypto", 3044 "libcrux-sha3 0.0.4", 3045 "log", 3046 "rand_core 0.9.5", 3047 "zeroize", 3048] 3049 3050[[package]] 3051name = "hpke-rs-crypto" 3052version = "0.4.0" 3053source = "registry+https://github.com/rust-lang/crates.io-index" 3054checksum = "2dd92b7d7f0deaae59c152e01c01f5280ea92dfac82090e5c025879b32df9193" 3055dependencies = [ 3056 "rand_core 0.9.5", 3057] 3058 3059[[package]] 3060name = "http" 3061version = "0.2.12" 3062source = "registry+https://github.com/rust-lang/crates.io-index" 3063checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 3064dependencies = [ 3065 "bytes", 3066 "fnv", 3067 "itoa", 3068] 3069 3070[[package]] 3071name = "http" 3072version = "1.4.0" 3073source = "registry+https://github.com/rust-lang/crates.io-index" 3074checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" 3075dependencies = [ 3076 "bytes", 3077 "itoa", 3078] 3079 3080[[package]] 3081name = "http-body" 3082version = "0.4.6" 3083source = "registry+https://github.com/rust-lang/crates.io-index" 3084checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 3085dependencies = [ 3086 "bytes", 3087 "http 0.2.12", 3088 "pin-project-lite", 3089] 3090 3091[[package]] 3092name = "http-body" 3093version = "1.0.1" 3094source = "registry+https://github.com/rust-lang/crates.io-index" 3095checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 3096dependencies = [ 3097 "bytes", 3098 "http 1.4.0", 3099] 3100 3101[[package]] 3102name = "http-body-util" 3103version = "0.1.3" 3104source = "registry+https://github.com/rust-lang/crates.io-index" 3105checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 3106dependencies = [ 3107 "bytes", 3108 "futures-core", 3109 "http 1.4.0", 3110 "http-body 1.0.1", 3111 "pin-project-lite", 3112] 3113 3114[[package]] 3115name = "http-range-header" 3116version = "0.4.2" 3117source = "registry+https://github.com/rust-lang/crates.io-index" 3118checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c" 3119 3120[[package]] 3121name = "httparse" 3122version = "1.10.1" 3123source = "registry+https://github.com/rust-lang/crates.io-index" 3124checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 3125 3126[[package]] 3127name = "httpdate" 3128version = "1.0.3" 3129source = "registry+https://github.com/rust-lang/crates.io-index" 3130checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 3131 3132[[package]] 3133name = "hyper" 3134version = "0.14.32" 3135source = "registry+https://github.com/rust-lang/crates.io-index" 3136checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" 3137dependencies = [ 3138 "bytes", 3139 "futures-channel", 3140 "futures-core", 3141 "futures-util", 3142 "h2 0.3.27", 3143 "http 0.2.12", 3144 "http-body 0.4.6", 3145 "httparse", 3146 "httpdate", 3147 "itoa", 3148 "pin-project-lite", 3149 "socket2 0.5.10", 3150 "tokio", 3151 "tower-service", 3152 "tracing", 3153 "want", 3154] 3155 3156[[package]] 3157name = "hyper" 3158version = "1.8.1" 3159source = "registry+https://github.com/rust-lang/crates.io-index" 3160checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" 3161dependencies = [ 3162 "atomic-waker", 3163 "bytes", 3164 "futures-channel", 3165 "futures-core", 3166 "h2 0.4.13", 3167 "http 1.4.0", 3168 "http-body 1.0.1", 3169 "httparse", 3170 "httpdate", 3171 "itoa", 3172 "pin-project-lite", 3173 "pin-utils", 3174 "smallvec", 3175 "tokio", 3176 "want", 3177] 3178 3179[[package]] 3180name = "hyper-named-pipe" 3181version = "0.1.0" 3182source = "registry+https://github.com/rust-lang/crates.io-index" 3183checksum = "73b7d8abf35697b81a825e386fc151e0d503e8cb5fcb93cc8669c376dfd6f278" 3184dependencies = [ 3185 "hex", 3186 "hyper 1.8.1", 3187 "hyper-util", 3188 "pin-project-lite", 3189 "tokio", 3190 "tower-service", 3191 "winapi", 3192] 3193 3194[[package]] 3195name = "hyper-rustls" 3196version = "0.24.2" 3197source = "registry+https://github.com/rust-lang/crates.io-index" 3198checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 3199dependencies = [ 3200 "futures-util", 3201 "http 0.2.12", 3202 "hyper 0.14.32", 3203 "log", 3204 "rustls 0.21.12", 3205 "tokio", 3206 "tokio-rustls 0.24.1", 3207] 3208 3209[[package]] 3210name = "hyper-rustls" 3211version = "0.27.7" 3212source = "registry+https://github.com/rust-lang/crates.io-index" 3213checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 3214dependencies = [ 3215 "http 1.4.0", 3216 "hyper 1.8.1", 3217 "hyper-util", 3218 "rustls 0.23.37", 3219 "rustls-native-certs", 3220 "rustls-pki-types", 3221 "tokio", 3222 "tokio-rustls 0.26.4", 3223 "tower-service", 3224 "webpki-roots 1.0.6", 3225] 3226 3227[[package]] 3228name = "hyper-timeout" 3229version = "0.5.2" 3230source = "registry+https://github.com/rust-lang/crates.io-index" 3231checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" 3232dependencies = [ 3233 "hyper 1.8.1", 3234 "hyper-util", 3235 "pin-project-lite", 3236 "tokio", 3237 "tower-service", 3238] 3239 3240[[package]] 3241name = "hyper-util" 3242version = "0.1.20" 3243source = "registry+https://github.com/rust-lang/crates.io-index" 3244checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" 3245dependencies = [ 3246 "base64 0.22.1", 3247 "bytes", 3248 "futures-channel", 3249 "futures-util", 3250 "http 1.4.0", 3251 "http-body 1.0.1", 3252 "hyper 1.8.1", 3253 "ipnet", 3254 "libc", 3255 "percent-encoding", 3256 "pin-project-lite", 3257 "socket2 0.6.3", 3258 "system-configuration", 3259 "tokio", 3260 "tower-service", 3261 "tracing", 3262 "windows-registry", 3263] 3264 3265[[package]] 3266name = "hyperlocal" 3267version = "0.9.1" 3268source = "registry+https://github.com/rust-lang/crates.io-index" 3269checksum = "986c5ce3b994526b3cd75578e62554abd09f0899d6206de48b3e96ab34ccc8c7" 3270dependencies = [ 3271 "hex", 3272 "http-body-util", 3273 "hyper 1.8.1", 3274 "hyper-util", 3275 "pin-project-lite", 3276 "tokio", 3277 "tower-service", 3278] 3279 3280[[package]] 3281name = "iana-time-zone" 3282version = "0.1.65" 3283source = "registry+https://github.com/rust-lang/crates.io-index" 3284checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" 3285dependencies = [ 3286 "android_system_properties", 3287 "core-foundation-sys", 3288 "iana-time-zone-haiku", 3289 "js-sys", 3290 "log", 3291 "wasm-bindgen", 3292 "windows-core", 3293] 3294 3295[[package]] 3296name = "iana-time-zone-haiku" 3297version = "0.1.2" 3298source = "registry+https://github.com/rust-lang/crates.io-index" 3299checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 3300dependencies = [ 3301 "cc", 3302] 3303 3304[[package]] 3305name = "icu_collections" 3306version = "2.1.1" 3307source = "registry+https://github.com/rust-lang/crates.io-index" 3308checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" 3309dependencies = [ 3310 "displaydoc", 3311 "potential_utf", 3312 "yoke", 3313 "zerofrom", 3314 "zerovec", 3315] 3316 3317[[package]] 3318name = "icu_locale_core" 3319version = "2.1.1" 3320source = "registry+https://github.com/rust-lang/crates.io-index" 3321checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" 3322dependencies = [ 3323 "displaydoc", 3324 "litemap", 3325 "tinystr", 3326 "writeable", 3327 "zerovec", 3328] 3329 3330[[package]] 3331name = "icu_normalizer" 3332version = "2.1.1" 3333source = "registry+https://github.com/rust-lang/crates.io-index" 3334checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" 3335dependencies = [ 3336 "icu_collections", 3337 "icu_normalizer_data", 3338 "icu_properties", 3339 "icu_provider", 3340 "smallvec", 3341 "zerovec", 3342] 3343 3344[[package]] 3345name = "icu_normalizer_data" 3346version = "2.1.1" 3347source = "registry+https://github.com/rust-lang/crates.io-index" 3348checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" 3349 3350[[package]] 3351name = "icu_properties" 3352version = "2.1.2" 3353source = "registry+https://github.com/rust-lang/crates.io-index" 3354checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" 3355dependencies = [ 3356 "icu_collections", 3357 "icu_locale_core", 3358 "icu_properties_data", 3359 "icu_provider", 3360 "zerotrie", 3361 "zerovec", 3362] 3363 3364[[package]] 3365name = "icu_properties_data" 3366version = "2.1.2" 3367source = "registry+https://github.com/rust-lang/crates.io-index" 3368checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" 3369 3370[[package]] 3371name = "icu_provider" 3372version = "2.1.1" 3373source = "registry+https://github.com/rust-lang/crates.io-index" 3374checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" 3375dependencies = [ 3376 "displaydoc", 3377 "icu_locale_core", 3378 "writeable", 3379 "yoke", 3380 "zerofrom", 3381 "zerotrie", 3382 "zerovec", 3383] 3384 3385[[package]] 3386name = "id-arena" 3387version = "2.3.0" 3388source = "registry+https://github.com/rust-lang/crates.io-index" 3389checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" 3390 3391[[package]] 3392name = "ident_case" 3393version = "1.0.1" 3394source = "registry+https://github.com/rust-lang/crates.io-index" 3395checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 3396 3397[[package]] 3398name = "idna" 3399version = "1.1.0" 3400source = "registry+https://github.com/rust-lang/crates.io-index" 3401checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 3402dependencies = [ 3403 "idna_adapter", 3404 "smallvec", 3405 "utf8_iter", 3406] 3407 3408[[package]] 3409name = "idna_adapter" 3410version = "1.2.1" 3411source = "registry+https://github.com/rust-lang/crates.io-index" 3412checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 3413dependencies = [ 3414 "icu_normalizer", 3415 "icu_properties", 3416] 3417 3418[[package]] 3419name = "image" 3420version = "0.25.10" 3421source = "registry+https://github.com/rust-lang/crates.io-index" 3422checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104" 3423dependencies = [ 3424 "bytemuck", 3425 "byteorder-lite", 3426 "color_quant", 3427 "gif", 3428 "image-webp", 3429 "moxcms", 3430 "num-traits", 3431 "png", 3432 "zune-core", 3433 "zune-jpeg", 3434] 3435 3436[[package]] 3437name = "image-webp" 3438version = "0.2.4" 3439source = "registry+https://github.com/rust-lang/crates.io-index" 3440checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3" 3441dependencies = [ 3442 "byteorder-lite", 3443 "quick-error 2.0.1", 3444] 3445 3446[[package]] 3447name = "indexmap" 3448version = "1.9.3" 3449source = "registry+https://github.com/rust-lang/crates.io-index" 3450checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 3451dependencies = [ 3452 "autocfg", 3453 "hashbrown 0.12.3", 3454 "serde", 3455] 3456 3457[[package]] 3458name = "indexmap" 3459version = "2.13.0" 3460source = "registry+https://github.com/rust-lang/crates.io-index" 3461checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" 3462dependencies = [ 3463 "equivalent", 3464 "hashbrown 0.16.1", 3465 "serde", 3466 "serde_core", 3467] 3468 3469[[package]] 3470name = "indoc" 3471version = "2.0.7" 3472source = "registry+https://github.com/rust-lang/crates.io-index" 3473checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706" 3474dependencies = [ 3475 "rustversion", 3476] 3477 3478[[package]] 3479name = "infer" 3480version = "0.19.0" 3481source = "registry+https://github.com/rust-lang/crates.io-index" 3482checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" 3483dependencies = [ 3484 "cfb", 3485] 3486 3487[[package]] 3488name = "inout" 3489version = "0.1.4" 3490source = "registry+https://github.com/rust-lang/crates.io-index" 3491checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" 3492dependencies = [ 3493 "block-padding", 3494 "generic-array", 3495] 3496 3497[[package]] 3498name = "interval-heap" 3499version = "0.0.5" 3500source = "registry+https://github.com/rust-lang/crates.io-index" 3501checksum = "11274e5e8e89b8607cfedc2910b6626e998779b48a019151c7604d0adcb86ac6" 3502dependencies = [ 3503 "compare", 3504] 3505 3506[[package]] 3507name = "inventory" 3508version = "0.3.22" 3509source = "registry+https://github.com/rust-lang/crates.io-index" 3510checksum = "009ae045c87e7082cb72dab0ccd01ae075dd00141ddc108f43a0ea150a9e7227" 3511dependencies = [ 3512 "rustversion", 3513] 3514 3515[[package]] 3516name = "ipconfig" 3517version = "0.3.2" 3518source = "registry+https://github.com/rust-lang/crates.io-index" 3519checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 3520dependencies = [ 3521 "socket2 0.5.10", 3522 "widestring", 3523 "windows-sys 0.48.0", 3524 "winreg", 3525] 3526 3527[[package]] 3528name = "ipld-core" 3529version = "0.4.3" 3530source = "registry+https://github.com/rust-lang/crates.io-index" 3531checksum = "090f624976d72f0b0bb71b86d58dc16c15e069193067cb3a3a09d655246cbbda" 3532dependencies = [ 3533 "cid", 3534 "serde", 3535 "serde_bytes", 3536] 3537 3538[[package]] 3539name = "ipnet" 3540version = "2.12.0" 3541source = "registry+https://github.com/rust-lang/crates.io-index" 3542checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" 3543 3544[[package]] 3545name = "iri-string" 3546version = "0.7.11" 3547source = "registry+https://github.com/rust-lang/crates.io-index" 3548checksum = "d8e7418f59cc01c88316161279a7f665217ae316b388e58a0d10e29f54f1e5eb" 3549dependencies = [ 3550 "memchr", 3551 "serde", 3552] 3553 3554[[package]] 3555name = "iroh-car" 3556version = "0.5.1" 3557source = "registry+https://github.com/rust-lang/crates.io-index" 3558checksum = "cb7f8cd4cb9aa083fba8b52e921764252d0b4dcb1cd6d120b809dbfe1106e81a" 3559dependencies = [ 3560 "anyhow", 3561 "cid", 3562 "futures", 3563 "serde", 3564 "serde_ipld_dagcbor", 3565 "thiserror 1.0.69", 3566 "tokio", 3567 "unsigned-varint 0.7.2", 3568] 3569 3570[[package]] 3571name = "is_terminal_polyfill" 3572version = "1.70.2" 3573source = "registry+https://github.com/rust-lang/crates.io-index" 3574checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" 3575 3576[[package]] 3577name = "itertools" 3578version = "0.14.0" 3579source = "registry+https://github.com/rust-lang/crates.io-index" 3580checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 3581dependencies = [ 3582 "either", 3583] 3584 3585[[package]] 3586name = "itoa" 3587version = "1.0.18" 3588source = "registry+https://github.com/rust-lang/crates.io-index" 3589checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" 3590 3591[[package]] 3592name = "jacquard-common" 3593version = "0.9.5" 3594source = "registry+https://github.com/rust-lang/crates.io-index" 3595checksum = "1751921e0bdae5e0077afade6161545e9ef7698306c868f800916e99ecbcaae9" 3596dependencies = [ 3597 "base64 0.22.1", 3598 "bon", 3599 "bytes", 3600 "chrono", 3601 "cid", 3602 "ed25519-dalek", 3603 "getrandom 0.2.17", 3604 "getrandom 0.3.4", 3605 "http 1.4.0", 3606 "ipld-core", 3607 "k256", 3608 "langtag", 3609 "miette", 3610 "multibase", 3611 "multihash", 3612 "ouroboros", 3613 "p256 0.13.2", 3614 "postcard", 3615 "rand 0.9.2", 3616 "regex", 3617 "regex-lite", 3618 "reqwest", 3619 "serde", 3620 "serde_bytes", 3621 "serde_html_form", 3622 "serde_ipld_dagcbor", 3623 "serde_json", 3624 "signature 2.2.0", 3625 "smol_str", 3626 "thiserror 2.0.18", 3627 "tokio", 3628 "tokio-util", 3629 "trait-variant", 3630 "url", 3631] 3632 3633[[package]] 3634name = "jacquard-derive" 3635version = "0.9.5" 3636source = "registry+https://github.com/rust-lang/crates.io-index" 3637checksum = "9c8d73dfee07943fdab93569ed1c28b06c6921ed891c08b415c4a323ff67e593" 3638dependencies = [ 3639 "heck 0.5.0", 3640 "jacquard-lexicon", 3641 "proc-macro2", 3642 "quote", 3643 "syn 2.0.117", 3644] 3645 3646[[package]] 3647name = "jacquard-lexicon" 3648version = "0.9.5" 3649source = "registry+https://github.com/rust-lang/crates.io-index" 3650checksum = "8411aff546569b0a1e0ef669bed2380cec1c00d48f02f3fcd57a71545321b3d8" 3651dependencies = [ 3652 "cid", 3653 "dashmap", 3654 "heck 0.5.0", 3655 "inventory", 3656 "jacquard-common", 3657 "miette", 3658 "multihash", 3659 "prettyplease", 3660 "proc-macro2", 3661 "quote", 3662 "serde", 3663 "serde_ipld_dagcbor", 3664 "serde_json", 3665 "serde_repr", 3666 "serde_with", 3667 "sha2", 3668 "syn 2.0.117", 3669 "thiserror 2.0.18", 3670 "unicode-segmentation", 3671] 3672 3673[[package]] 3674name = "jacquard-repo" 3675version = "0.9.6" 3676source = "registry+https://github.com/rust-lang/crates.io-index" 3677checksum = "c59705c56678f4d57229ab7790313b9f7d8f244a658d01ad1f4344e7d2efe2a3" 3678dependencies = [ 3679 "bytes", 3680 "cid", 3681 "ed25519-dalek", 3682 "iroh-car", 3683 "jacquard-common", 3684 "jacquard-derive", 3685 "k256", 3686 "miette", 3687 "multihash", 3688 "n0-future", 3689 "p256 0.13.2", 3690 "serde", 3691 "serde_bytes", 3692 "serde_ipld_dagcbor", 3693 "sha2", 3694 "smol_str", 3695 "thiserror 2.0.18", 3696 "tokio", 3697 "trait-variant", 3698] 3699 3700[[package]] 3701name = "jobserver" 3702version = "0.1.34" 3703source = "registry+https://github.com/rust-lang/crates.io-index" 3704checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" 3705dependencies = [ 3706 "getrandom 0.3.4", 3707 "libc", 3708] 3709 3710[[package]] 3711name = "js-sys" 3712version = "0.3.91" 3713source = "registry+https://github.com/rust-lang/crates.io-index" 3714checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c" 3715dependencies = [ 3716 "once_cell", 3717 "wasm-bindgen", 3718] 3719 3720[[package]] 3721name = "jsonwebtoken" 3722version = "10.3.0" 3723source = "registry+https://github.com/rust-lang/crates.io-index" 3724checksum = "0529410abe238729a60b108898784df8984c87f6054c9c4fcacc47e4803c1ce1" 3725dependencies = [ 3726 "base64 0.22.1", 3727 "ed25519-dalek", 3728 "getrandom 0.2.17", 3729 "hmac", 3730 "js-sys", 3731 "p256 0.13.2", 3732 "p384", 3733 "pem", 3734 "rand 0.8.5", 3735 "rsa", 3736 "serde", 3737 "serde_json", 3738 "sha2", 3739 "signature 2.2.0", 3740 "simple_asn1", 3741] 3742 3743[[package]] 3744name = "k256" 3745version = "0.13.4" 3746source = "registry+https://github.com/rust-lang/crates.io-index" 3747checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" 3748dependencies = [ 3749 "cfg-if", 3750 "ecdsa 0.16.9", 3751 "elliptic-curve 0.13.8", 3752 "once_cell", 3753 "sha2", 3754 "signature 2.2.0", 3755] 3756 3757[[package]] 3758name = "langtag" 3759version = "0.4.0" 3760source = "registry+https://github.com/rust-lang/crates.io-index" 3761checksum = "9ecb4c689a30e48ebeaa14237f34037e300dd072e6ad21a9ec72e810ff3c6600" 3762dependencies = [ 3763 "serde", 3764 "static-regular-grammar", 3765 "thiserror 1.0.69", 3766] 3767 3768[[package]] 3769name = "lazy_static" 3770version = "1.5.0" 3771source = "registry+https://github.com/rust-lang/crates.io-index" 3772checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 3773dependencies = [ 3774 "spin 0.9.8", 3775] 3776 3777[[package]] 3778name = "leb128fmt" 3779version = "0.1.0" 3780source = "registry+https://github.com/rust-lang/crates.io-index" 3781checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" 3782 3783[[package]] 3784name = "libc" 3785version = "0.2.183" 3786source = "registry+https://github.com/rust-lang/crates.io-index" 3787checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d" 3788 3789[[package]] 3790name = "libcrux-hacl-rs" 3791version = "0.0.4" 3792source = "registry+https://github.com/rust-lang/crates.io-index" 3793checksum = "2637dc87d158e1f1b550fd9b226443e84153fded4de69028d897b534d16d22e6" 3794dependencies = [ 3795 "libcrux-macros", 3796] 3797 3798[[package]] 3799name = "libcrux-hmac" 3800version = "0.0.4" 3801source = "registry+https://github.com/rust-lang/crates.io-index" 3802checksum = "9f0e8011bfcdb6059127e673ec0e1fc7b2a3705c683ade9d708875ed4c26cd8d" 3803dependencies = [ 3804 "libcrux-hacl-rs", 3805 "libcrux-macros", 3806 "libcrux-sha2", 3807] 3808 3809[[package]] 3810name = "libcrux-intrinsics" 3811version = "0.0.4" 3812source = "registry+https://github.com/rust-lang/crates.io-index" 3813checksum = "bc9ee7ef66569dd7516454fe26de4e401c0c62073929803486b96744594b9632" 3814dependencies = [ 3815 "core-models", 3816 "hax-lib", 3817] 3818 3819[[package]] 3820name = "libcrux-macros" 3821version = "0.0.3" 3822source = "registry+https://github.com/rust-lang/crates.io-index" 3823checksum = "ffd6aa2dcd5be681662001b81d493f1569c6d49a32361f470b0c955465cd0338" 3824dependencies = [ 3825 "quote", 3826 "syn 2.0.117", 3827] 3828 3829[[package]] 3830name = "libcrux-ml-kem" 3831version = "0.0.5" 3832source = "registry+https://github.com/rust-lang/crates.io-index" 3833checksum = "22a36f21056e552438dbe6ce413b6682001795e53bd1f0e2c941d7e231238e5a" 3834dependencies = [ 3835 "hax-lib", 3836 "libcrux-intrinsics", 3837 "libcrux-platform 0.0.3", 3838 "libcrux-secrets", 3839 "libcrux-sha3 0.0.5", 3840 "libcrux-traits", 3841] 3842 3843[[package]] 3844name = "libcrux-platform" 3845version = "0.0.2" 3846source = "registry+https://github.com/rust-lang/crates.io-index" 3847checksum = "db82d058aa76ea315a3b2092f69dfbd67ddb0e462038a206e1dcd73f058c0778" 3848dependencies = [ 3849 "libc", 3850] 3851 3852[[package]] 3853name = "libcrux-platform" 3854version = "0.0.3" 3855source = "registry+https://github.com/rust-lang/crates.io-index" 3856checksum = "1d9e21d7ed31a92ac539bd69a8c970b183ee883872d2d19ce27036e24cb8ecc4" 3857dependencies = [ 3858 "libc", 3859] 3860 3861[[package]] 3862name = "libcrux-secrets" 3863version = "0.0.4" 3864source = "registry+https://github.com/rust-lang/crates.io-index" 3865checksum = "6e4dbbf6bc9f2bc0f20dc3bea3e5c99adff3bdccf6d2a40488963da69e2ec307" 3866dependencies = [ 3867 "hax-lib", 3868] 3869 3870[[package]] 3871name = "libcrux-sha2" 3872version = "0.0.4" 3873source = "registry+https://github.com/rust-lang/crates.io-index" 3874checksum = "649d9401e6e1954f58531b8eb13b12c800f85bbadc93362871b63a1f8a8d6d32" 3875dependencies = [ 3876 "libcrux-hacl-rs", 3877 "libcrux-macros", 3878 "libcrux-traits", 3879] 3880 3881[[package]] 3882name = "libcrux-sha3" 3883version = "0.0.4" 3884source = "registry+https://github.com/rust-lang/crates.io-index" 3885checksum = "2400bec764d1c75b8a496d5747cffe32f1fb864a12577f0aca2f55a92021c962" 3886dependencies = [ 3887 "hax-lib", 3888 "libcrux-intrinsics", 3889 "libcrux-platform 0.0.2", 3890 "libcrux-traits", 3891] 3892 3893[[package]] 3894name = "libcrux-sha3" 3895version = "0.0.5" 3896source = "registry+https://github.com/rust-lang/crates.io-index" 3897checksum = "18e869fdeb9af62c55c3fcd60ce407552eb282d727550ce986abac94a3474479" 3898dependencies = [ 3899 "hax-lib", 3900 "libcrux-intrinsics", 3901 "libcrux-platform 0.0.3", 3902 "libcrux-traits", 3903] 3904 3905[[package]] 3906name = "libcrux-traits" 3907version = "0.0.4" 3908source = "registry+https://github.com/rust-lang/crates.io-index" 3909checksum = "9adfd58e79d860f6b9e40e35127bfae9e5bd3ade33201d1347459011a2add034" 3910dependencies = [ 3911 "libcrux-secrets", 3912 "rand 0.9.2", 3913] 3914 3915[[package]] 3916name = "libm" 3917version = "0.2.16" 3918source = "registry+https://github.com/rust-lang/crates.io-index" 3919checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" 3920 3921[[package]] 3922name = "libredox" 3923version = "0.1.14" 3924source = "registry+https://github.com/rust-lang/crates.io-index" 3925checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a" 3926dependencies = [ 3927 "bitflags", 3928 "libc", 3929 "plain", 3930 "redox_syscall 0.7.3", 3931] 3932 3933[[package]] 3934name = "libsignal-account-keys" 3935version = "0.1.0" 3936source = "git+https://github.com/signalapp/libsignal?tag=v0.87.4#38514bdc8acaaffbccd5c96515c68deb2019abe0" 3937dependencies = [ 3938 "argon2", 3939 "derive_more 2.1.1", 3940 "displaydoc", 3941 "hkdf", 3942 "libsignal-core", 3943 "partial-default", 3944 "protobuf", 3945 "protobuf-codegen", 3946 "rand 0.9.2", 3947 "rand_core 0.9.5", 3948 "serde", 3949 "sha2", 3950 "signal-crypto", 3951 "static_assertions", 3952 "thiserror 2.0.18", 3953 "zerocopy", 3954] 3955 3956[[package]] 3957name = "libsignal-core" 3958version = "0.1.0" 3959source = "git+https://github.com/signalapp/libsignal?tag=v0.87.4#38514bdc8acaaffbccd5c96515c68deb2019abe0" 3960dependencies = [ 3961 "curve25519-dalek", 3962 "derive_more 2.1.1", 3963 "displaydoc", 3964 "log", 3965 "rand 0.9.2", 3966 "sha2", 3967 "subtle", 3968 "thiserror 2.0.18", 3969 "uuid", 3970 "x25519-dalek", 3971 "zerocopy", 3972] 3973 3974[[package]] 3975name = "libsignal-protocol" 3976version = "0.1.0" 3977source = "git+https://github.com/signalapp/libsignal?tag=v0.87.4#38514bdc8acaaffbccd5c96515c68deb2019abe0" 3978dependencies = [ 3979 "aes", 3980 "aes-gcm-siv", 3981 "assert_matches", 3982 "async-trait", 3983 "bitflags", 3984 "const-str 1.1.0", 3985 "ctr", 3986 "data-encoding-macro", 3987 "derive-where", 3988 "derive_more 2.1.1", 3989 "displaydoc", 3990 "hex", 3991 "hkdf", 3992 "hmac", 3993 "indexmap 2.13.0", 3994 "itertools", 3995 "libcrux-ml-kem", 3996 "libsignal-core", 3997 "log", 3998 "prost 0.14.3", 3999 "prost-build 0.14.3", 4000 "rand 0.9.2", 4001 "rayon", 4002 "serde", 4003 "sha2", 4004 "signal-crypto", 4005 "spqr", 4006 "subtle", 4007 "thiserror 2.0.18", 4008 "uuid", 4009 "zerocopy", 4010] 4011 4012[[package]] 4013name = "libsignal-service" 4014version = "0.1.0" 4015source = "git+https://github.com/whisperfish/libsignal-service-rs?rev=3d07d8df33482b2d191c075fdc2b750738a89384#3d07d8df33482b2d191c075fdc2b750738a89384" 4016dependencies = [ 4017 "aes", 4018 "aes-gcm", 4019 "async-trait", 4020 "base64 0.22.1", 4021 "bincode 1.3.3", 4022 "bytes", 4023 "cbc", 4024 "chrono", 4025 "ctr", 4026 "derive_more 2.1.1", 4027 "futures", 4028 "hex", 4029 "hkdf", 4030 "hmac", 4031 "libsignal-core", 4032 "libsignal-protocol", 4033 "phonenumber", 4034 "prost 0.13.5", 4035 "prost-build 0.13.5", 4036 "rand 0.9.2", 4037 "rand_core 0.6.4", 4038 "reqwest", 4039 "reqwest-websocket", 4040 "serde", 4041 "serde_json", 4042 "sha2", 4043 "signal-crypto", 4044 "thiserror 2.0.18", 4045 "tokio", 4046 "tracing", 4047 "tracing-futures", 4048 "url", 4049 "usernames", 4050 "uuid", 4051 "zkgroup", 4052] 4053 4054[[package]] 4055name = "libsqlite3-sys" 4056version = "0.30.1" 4057source = "registry+https://github.com/rust-lang/crates.io-index" 4058checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" 4059dependencies = [ 4060 "pkg-config", 4061 "vcpkg", 4062] 4063 4064[[package]] 4065name = "linked-hash-map" 4066version = "0.5.6" 4067source = "registry+https://github.com/rust-lang/crates.io-index" 4068checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 4069 4070[[package]] 4071name = "linux-raw-sys" 4072version = "0.4.15" 4073source = "registry+https://github.com/rust-lang/crates.io-index" 4074checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" 4075 4076[[package]] 4077name = "linux-raw-sys" 4078version = "0.12.1" 4079source = "registry+https://github.com/rust-lang/crates.io-index" 4080checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" 4081 4082[[package]] 4083name = "litemap" 4084version = "0.8.1" 4085source = "registry+https://github.com/rust-lang/crates.io-index" 4086checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" 4087 4088[[package]] 4089name = "lock_api" 4090version = "0.4.14" 4091source = "registry+https://github.com/rust-lang/crates.io-index" 4092checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 4093dependencies = [ 4094 "scopeguard", 4095] 4096 4097[[package]] 4098name = "log" 4099version = "0.4.29" 4100source = "registry+https://github.com/rust-lang/crates.io-index" 4101checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 4102 4103[[package]] 4104name = "loom" 4105version = "0.7.2" 4106source = "registry+https://github.com/rust-lang/crates.io-index" 4107checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" 4108dependencies = [ 4109 "cfg-if", 4110 "generator", 4111 "scoped-tls", 4112 "tracing", 4113 "tracing-subscriber", 4114] 4115 4116[[package]] 4117name = "lru" 4118version = "0.12.5" 4119source = "registry+https://github.com/rust-lang/crates.io-index" 4120checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" 4121dependencies = [ 4122 "hashbrown 0.15.5", 4123] 4124 4125[[package]] 4126name = "lru-cache" 4127version = "0.1.2" 4128source = "registry+https://github.com/rust-lang/crates.io-index" 4129checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 4130dependencies = [ 4131 "linked-hash-map", 4132] 4133 4134[[package]] 4135name = "lru-slab" 4136version = "0.1.2" 4137source = "registry+https://github.com/rust-lang/crates.io-index" 4138checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 4139 4140[[package]] 4141name = "lsm-tree" 4142version = "3.1.2" 4143source = "registry+https://github.com/rust-lang/crates.io-index" 4144checksum = "9d67f95fd716870329c30aaeedf87f23d426564e6ce46efa045a91444faf2a19" 4145dependencies = [ 4146 "byteorder-lite", 4147 "byteview", 4148 "crossbeam-skiplist", 4149 "enum_dispatch", 4150 "interval-heap", 4151 "log", 4152 "lz4_flex", 4153 "quick_cache", 4154 "rustc-hash", 4155 "self_cell", 4156 "sfa", 4157 "tempfile", 4158 "varint-rs", 4159 "xxhash-rust", 4160] 4161 4162[[package]] 4163name = "lz4_flex" 4164version = "0.13.0" 4165source = "registry+https://github.com/rust-lang/crates.io-index" 4166checksum = "db9a0d582c2874f68138a16ce1867e0ffde6c0bb0a0df85e1f36d04146db488a" 4167dependencies = [ 4168 "twox-hash", 4169] 4170 4171[[package]] 4172name = "match-lookup" 4173version = "0.1.2" 4174source = "registry+https://github.com/rust-lang/crates.io-index" 4175checksum = "757aee279b8bdbb9f9e676796fd459e4207a1f986e87886700abf589f5abf771" 4176dependencies = [ 4177 "proc-macro2", 4178 "quote", 4179 "syn 2.0.117", 4180] 4181 4182[[package]] 4183name = "matchers" 4184version = "0.2.0" 4185source = "registry+https://github.com/rust-lang/crates.io-index" 4186checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 4187dependencies = [ 4188 "regex-automata", 4189] 4190 4191[[package]] 4192name = "matchit" 4193version = "0.8.4" 4194source = "registry+https://github.com/rust-lang/crates.io-index" 4195checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 4196 4197[[package]] 4198name = "md-5" 4199version = "0.10.6" 4200source = "registry+https://github.com/rust-lang/crates.io-index" 4201checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 4202dependencies = [ 4203 "cfg-if", 4204 "digest", 4205] 4206 4207[[package]] 4208name = "memchr" 4209version = "2.8.0" 4210source = "registry+https://github.com/rust-lang/crates.io-index" 4211checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" 4212 4213[[package]] 4214name = "memmap2" 4215version = "0.9.10" 4216source = "registry+https://github.com/rust-lang/crates.io-index" 4217checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3" 4218dependencies = [ 4219 "libc", 4220] 4221 4222[[package]] 4223name = "metrics" 4224version = "0.24.3" 4225source = "registry+https://github.com/rust-lang/crates.io-index" 4226checksum = "5d5312e9ba3771cfa961b585728215e3d972c950a3eed9252aa093d6301277e8" 4227dependencies = [ 4228 "ahash", 4229 "portable-atomic", 4230] 4231 4232[[package]] 4233name = "metrics-exporter-prometheus" 4234version = "0.16.2" 4235source = "registry+https://github.com/rust-lang/crates.io-index" 4236checksum = "dd7399781913e5393588a8d8c6a2867bf85fb38eaf2502fdce465aad2dc6f034" 4237dependencies = [ 4238 "base64 0.22.1", 4239 "http-body-util", 4240 "hyper 1.8.1", 4241 "hyper-util", 4242 "indexmap 2.13.0", 4243 "ipnet", 4244 "metrics", 4245 "metrics-util", 4246 "quanta", 4247 "thiserror 1.0.69", 4248 "tokio", 4249 "tracing", 4250] 4251 4252[[package]] 4253name = "metrics-util" 4254version = "0.19.1" 4255source = "registry+https://github.com/rust-lang/crates.io-index" 4256checksum = "b8496cc523d1f94c1385dd8f0f0c2c480b2b8aeccb5b7e4485ad6365523ae376" 4257dependencies = [ 4258 "crossbeam-epoch", 4259 "crossbeam-utils", 4260 "hashbrown 0.15.5", 4261 "metrics", 4262 "quanta", 4263 "rand 0.9.2", 4264 "rand_xoshiro", 4265 "sketches-ddsketch", 4266] 4267 4268[[package]] 4269name = "miette" 4270version = "7.6.0" 4271source = "registry+https://github.com/rust-lang/crates.io-index" 4272checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7" 4273dependencies = [ 4274 "cfg-if", 4275 "miette-derive", 4276 "unicode-width", 4277] 4278 4279[[package]] 4280name = "miette-derive" 4281version = "7.6.0" 4282source = "registry+https://github.com/rust-lang/crates.io-index" 4283checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b" 4284dependencies = [ 4285 "proc-macro2", 4286 "quote", 4287 "syn 2.0.117", 4288] 4289 4290[[package]] 4291name = "mime" 4292version = "0.3.17" 4293source = "registry+https://github.com/rust-lang/crates.io-index" 4294checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 4295 4296[[package]] 4297name = "mime_guess" 4298version = "2.0.5" 4299source = "registry+https://github.com/rust-lang/crates.io-index" 4300checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 4301dependencies = [ 4302 "mime", 4303 "unicase", 4304] 4305 4306[[package]] 4307name = "minimal-lexical" 4308version = "0.2.1" 4309source = "registry+https://github.com/rust-lang/crates.io-index" 4310checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 4311 4312[[package]] 4313name = "miniz_oxide" 4314version = "0.8.9" 4315source = "registry+https://github.com/rust-lang/crates.io-index" 4316checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 4317dependencies = [ 4318 "adler2", 4319 "simd-adler32", 4320] 4321 4322[[package]] 4323name = "mio" 4324version = "1.1.1" 4325source = "registry+https://github.com/rust-lang/crates.io-index" 4326checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" 4327dependencies = [ 4328 "libc", 4329 "wasi", 4330 "windows-sys 0.61.2", 4331] 4332 4333[[package]] 4334name = "moxcms" 4335version = "0.8.1" 4336source = "registry+https://github.com/rust-lang/crates.io-index" 4337checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b" 4338dependencies = [ 4339 "num-traits", 4340 "pxfm", 4341] 4342 4343[[package]] 4344name = "multibase" 4345version = "0.9.2" 4346source = "registry+https://github.com/rust-lang/crates.io-index" 4347checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77" 4348dependencies = [ 4349 "base-x", 4350 "base256emoji", 4351 "data-encoding", 4352 "data-encoding-macro", 4353] 4354 4355[[package]] 4356name = "multihash" 4357version = "0.19.3" 4358source = "registry+https://github.com/rust-lang/crates.io-index" 4359checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" 4360dependencies = [ 4361 "core2", 4362 "serde", 4363 "unsigned-varint 0.8.0", 4364] 4365 4366[[package]] 4367name = "multimap" 4368version = "0.10.1" 4369source = "registry+https://github.com/rust-lang/crates.io-index" 4370checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084" 4371 4372[[package]] 4373name = "n0-future" 4374version = "0.1.3" 4375source = "registry+https://github.com/rust-lang/crates.io-index" 4376checksum = "7bb0e5d99e681ab3c938842b96fcb41bf8a7bb4bfdb11ccbd653a7e83e06c794" 4377dependencies = [ 4378 "cfg_aliases", 4379 "derive_more 1.0.0", 4380 "futures-buffered", 4381 "futures-lite", 4382 "futures-util", 4383 "js-sys", 4384 "pin-project", 4385 "send_wrapper", 4386 "tokio", 4387 "tokio-util", 4388 "wasm-bindgen", 4389 "wasm-bindgen-futures", 4390 "web-time", 4391] 4392 4393[[package]] 4394name = "nanorand" 4395version = "0.7.0" 4396source = "registry+https://github.com/rust-lang/crates.io-index" 4397checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 4398dependencies = [ 4399 "getrandom 0.2.17", 4400] 4401 4402[[package]] 4403name = "nom" 4404version = "7.1.3" 4405source = "registry+https://github.com/rust-lang/crates.io-index" 4406checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 4407dependencies = [ 4408 "memchr", 4409 "minimal-lexical", 4410] 4411 4412[[package]] 4413name = "nonzero_ext" 4414version = "0.3.0" 4415source = "registry+https://github.com/rust-lang/crates.io-index" 4416checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" 4417 4418[[package]] 4419name = "nu-ansi-term" 4420version = "0.50.3" 4421source = "registry+https://github.com/rust-lang/crates.io-index" 4422checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" 4423dependencies = [ 4424 "windows-sys 0.61.2", 4425] 4426 4427[[package]] 4428name = "num" 4429version = "0.4.3" 4430source = "registry+https://github.com/rust-lang/crates.io-index" 4431checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" 4432dependencies = [ 4433 "num-bigint", 4434 "num-complex", 4435 "num-integer", 4436 "num-iter", 4437 "num-rational", 4438 "num-traits", 4439] 4440 4441[[package]] 4442name = "num-bigint" 4443version = "0.4.6" 4444source = "registry+https://github.com/rust-lang/crates.io-index" 4445checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 4446dependencies = [ 4447 "num-integer", 4448 "num-traits", 4449] 4450 4451[[package]] 4452name = "num-bigint-dig" 4453version = "0.8.6" 4454source = "registry+https://github.com/rust-lang/crates.io-index" 4455checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" 4456dependencies = [ 4457 "lazy_static", 4458 "libm", 4459 "num-integer", 4460 "num-iter", 4461 "num-traits", 4462 "rand 0.8.5", 4463 "smallvec", 4464 "zeroize", 4465] 4466 4467[[package]] 4468name = "num-complex" 4469version = "0.4.6" 4470source = "registry+https://github.com/rust-lang/crates.io-index" 4471checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" 4472dependencies = [ 4473 "num-traits", 4474] 4475 4476[[package]] 4477name = "num-conv" 4478version = "0.2.0" 4479source = "registry+https://github.com/rust-lang/crates.io-index" 4480checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050" 4481 4482[[package]] 4483name = "num-integer" 4484version = "0.1.46" 4485source = "registry+https://github.com/rust-lang/crates.io-index" 4486checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 4487dependencies = [ 4488 "num-traits", 4489] 4490 4491[[package]] 4492name = "num-iter" 4493version = "0.1.45" 4494source = "registry+https://github.com/rust-lang/crates.io-index" 4495checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 4496dependencies = [ 4497 "autocfg", 4498 "num-integer", 4499 "num-traits", 4500] 4501 4502[[package]] 4503name = "num-rational" 4504version = "0.4.2" 4505source = "registry+https://github.com/rust-lang/crates.io-index" 4506checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" 4507dependencies = [ 4508 "num-bigint", 4509 "num-integer", 4510 "num-traits", 4511] 4512 4513[[package]] 4514name = "num-traits" 4515version = "0.2.19" 4516source = "registry+https://github.com/rust-lang/crates.io-index" 4517checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 4518dependencies = [ 4519 "autocfg", 4520 "libm", 4521] 4522 4523[[package]] 4524name = "num_cpus" 4525version = "1.17.0" 4526source = "registry+https://github.com/rust-lang/crates.io-index" 4527checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" 4528dependencies = [ 4529 "hermit-abi", 4530 "libc", 4531] 4532 4533[[package]] 4534name = "num_enum" 4535version = "0.7.6" 4536source = "registry+https://github.com/rust-lang/crates.io-index" 4537checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26" 4538dependencies = [ 4539 "num_enum_derive", 4540 "rustversion", 4541] 4542 4543[[package]] 4544name = "num_enum_derive" 4545version = "0.7.6" 4546source = "registry+https://github.com/rust-lang/crates.io-index" 4547checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8" 4548dependencies = [ 4549 "proc-macro-crate", 4550 "proc-macro2", 4551 "quote", 4552 "syn 2.0.117", 4553] 4554 4555[[package]] 4556name = "oid-registry" 4557version = "0.7.1" 4558source = "registry+https://github.com/rust-lang/crates.io-index" 4559checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" 4560dependencies = [ 4561 "asn1-rs", 4562] 4563 4564[[package]] 4565name = "once_cell" 4566version = "1.21.4" 4567source = "registry+https://github.com/rust-lang/crates.io-index" 4568checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" 4569 4570[[package]] 4571name = "once_cell_polyfill" 4572version = "1.70.2" 4573source = "registry+https://github.com/rust-lang/crates.io-index" 4574checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" 4575 4576[[package]] 4577name = "oncemutex" 4578version = "0.1.1" 4579source = "registry+https://github.com/rust-lang/crates.io-index" 4580checksum = "44d11de466f4a3006fe8a5e7ec84e93b79c70cb992ae0aa0eb631ad2df8abfe2" 4581 4582[[package]] 4583name = "opaque-debug" 4584version = "0.3.1" 4585source = "registry+https://github.com/rust-lang/crates.io-index" 4586checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 4587 4588[[package]] 4589name = "openssl" 4590version = "0.10.76" 4591source = "registry+https://github.com/rust-lang/crates.io-index" 4592checksum = "951c002c75e16ea2c65b8c7e4d3d51d5530d8dfa7d060b4776828c88cfb18ecf" 4593dependencies = [ 4594 "bitflags", 4595 "cfg-if", 4596 "foreign-types", 4597 "libc", 4598 "once_cell", 4599 "openssl-macros", 4600 "openssl-sys", 4601] 4602 4603[[package]] 4604name = "openssl-macros" 4605version = "0.1.1" 4606source = "registry+https://github.com/rust-lang/crates.io-index" 4607checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 4608dependencies = [ 4609 "proc-macro2", 4610 "quote", 4611 "syn 2.0.117", 4612] 4613 4614[[package]] 4615name = "openssl-probe" 4616version = "0.2.1" 4617source = "registry+https://github.com/rust-lang/crates.io-index" 4618checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" 4619 4620[[package]] 4621name = "openssl-sys" 4622version = "0.9.112" 4623source = "registry+https://github.com/rust-lang/crates.io-index" 4624checksum = "57d55af3b3e226502be1526dfdba67ab0e9c96fc293004e79576b2b9edb0dbdb" 4625dependencies = [ 4626 "cc", 4627 "libc", 4628 "pkg-config", 4629 "vcpkg", 4630] 4631 4632[[package]] 4633name = "ouroboros" 4634version = "0.18.5" 4635source = "registry+https://github.com/rust-lang/crates.io-index" 4636checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59" 4637dependencies = [ 4638 "aliasable", 4639 "ouroboros_macro", 4640 "static_assertions", 4641] 4642 4643[[package]] 4644name = "ouroboros_macro" 4645version = "0.18.5" 4646source = "registry+https://github.com/rust-lang/crates.io-index" 4647checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0" 4648dependencies = [ 4649 "heck 0.4.1", 4650 "proc-macro2", 4651 "proc-macro2-diagnostics", 4652 "quote", 4653 "syn 2.0.117", 4654] 4655 4656[[package]] 4657name = "outref" 4658version = "0.5.2" 4659source = "registry+https://github.com/rust-lang/crates.io-index" 4660checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e" 4661 4662[[package]] 4663name = "p256" 4664version = "0.11.1" 4665source = "registry+https://github.com/rust-lang/crates.io-index" 4666checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" 4667dependencies = [ 4668 "ecdsa 0.14.8", 4669 "elliptic-curve 0.12.3", 4670 "sha2", 4671] 4672 4673[[package]] 4674name = "p256" 4675version = "0.13.2" 4676source = "registry+https://github.com/rust-lang/crates.io-index" 4677checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 4678dependencies = [ 4679 "ecdsa 0.16.9", 4680 "elliptic-curve 0.13.8", 4681 "primeorder", 4682 "sha2", 4683] 4684 4685[[package]] 4686name = "p384" 4687version = "0.13.1" 4688source = "registry+https://github.com/rust-lang/crates.io-index" 4689checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" 4690dependencies = [ 4691 "ecdsa 0.16.9", 4692 "elliptic-curve 0.13.8", 4693 "primeorder", 4694 "sha2", 4695] 4696 4697[[package]] 4698name = "parking" 4699version = "2.2.1" 4700source = "registry+https://github.com/rust-lang/crates.io-index" 4701checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 4702 4703[[package]] 4704name = "parking_lot" 4705version = "0.12.5" 4706source = "registry+https://github.com/rust-lang/crates.io-index" 4707checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 4708dependencies = [ 4709 "lock_api", 4710 "parking_lot_core", 4711] 4712 4713[[package]] 4714name = "parking_lot_core" 4715version = "0.9.12" 4716source = "registry+https://github.com/rust-lang/crates.io-index" 4717checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 4718dependencies = [ 4719 "cfg-if", 4720 "libc", 4721 "redox_syscall 0.5.18", 4722 "smallvec", 4723 "windows-link", 4724] 4725 4726[[package]] 4727name = "parse-display" 4728version = "0.9.1" 4729source = "registry+https://github.com/rust-lang/crates.io-index" 4730checksum = "914a1c2265c98e2446911282c6ac86d8524f495792c38c5bd884f80499c7538a" 4731dependencies = [ 4732 "parse-display-derive", 4733 "regex", 4734 "regex-syntax 0.8.10", 4735] 4736 4737[[package]] 4738name = "parse-display-derive" 4739version = "0.9.1" 4740source = "registry+https://github.com/rust-lang/crates.io-index" 4741checksum = "2ae7800a4c974efd12df917266338e79a7a74415173caf7e70aa0a0707345281" 4742dependencies = [ 4743 "proc-macro2", 4744 "quote", 4745 "regex", 4746 "regex-syntax 0.8.10", 4747 "structmeta", 4748 "syn 2.0.117", 4749] 4750 4751[[package]] 4752name = "partial-default" 4753version = "0.1.0" 4754source = "registry+https://github.com/rust-lang/crates.io-index" 4755checksum = "124dc3c21ffb6fb3a0562d129929a8a54998766ef7adc1ba09ddc467d092c14b" 4756dependencies = [ 4757 "partial-default-derive", 4758] 4759 4760[[package]] 4761name = "partial-default-derive" 4762version = "0.1.0" 4763source = "registry+https://github.com/rust-lang/crates.io-index" 4764checksum = "7459127d7a18cb202d418e4b7df1103ffd6d82a106e9b2091c250624c2ace70d" 4765dependencies = [ 4766 "proc-macro2", 4767 "quote", 4768 "syn 2.0.117", 4769] 4770 4771[[package]] 4772name = "password-hash" 4773version = "0.5.0" 4774source = "registry+https://github.com/rust-lang/crates.io-index" 4775checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" 4776dependencies = [ 4777 "base64ct", 4778 "rand_core 0.6.4", 4779 "subtle", 4780] 4781 4782[[package]] 4783name = "pastey" 4784version = "0.1.1" 4785source = "registry+https://github.com/rust-lang/crates.io-index" 4786checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec" 4787 4788[[package]] 4789name = "pem" 4790version = "3.0.6" 4791source = "registry+https://github.com/rust-lang/crates.io-index" 4792checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" 4793dependencies = [ 4794 "base64 0.22.1", 4795 "serde_core", 4796] 4797 4798[[package]] 4799name = "pem-rfc7468" 4800version = "0.7.0" 4801source = "registry+https://github.com/rust-lang/crates.io-index" 4802checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 4803dependencies = [ 4804 "base64ct", 4805] 4806 4807[[package]] 4808name = "percent-encoding" 4809version = "2.3.2" 4810source = "registry+https://github.com/rust-lang/crates.io-index" 4811checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 4812 4813[[package]] 4814name = "petgraph" 4815version = "0.7.1" 4816source = "registry+https://github.com/rust-lang/crates.io-index" 4817checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" 4818dependencies = [ 4819 "fixedbitset", 4820 "indexmap 2.13.0", 4821] 4822 4823[[package]] 4824name = "petgraph" 4825version = "0.8.3" 4826source = "registry+https://github.com/rust-lang/crates.io-index" 4827checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455" 4828dependencies = [ 4829 "fixedbitset", 4830 "hashbrown 0.15.5", 4831 "indexmap 2.13.0", 4832] 4833 4834[[package]] 4835name = "phonenumber" 4836version = "0.3.9+9.0.21" 4837source = "registry+https://github.com/rust-lang/crates.io-index" 4838checksum = "9114f9c1683dd09c5f4fa024c89fdad783eaae21d3d52dd23ddaaffa29ffb168" 4839dependencies = [ 4840 "either", 4841 "fnv", 4842 "nom", 4843 "once_cell", 4844 "postcard", 4845 "quick-xml", 4846 "regex", 4847 "regex-cache", 4848 "serde", 4849 "serde_derive", 4850 "strum", 4851 "thiserror 2.0.18", 4852] 4853 4854[[package]] 4855name = "pin-project" 4856version = "1.1.11" 4857source = "registry+https://github.com/rust-lang/crates.io-index" 4858checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517" 4859dependencies = [ 4860 "pin-project-internal", 4861] 4862 4863[[package]] 4864name = "pin-project-internal" 4865version = "1.1.11" 4866source = "registry+https://github.com/rust-lang/crates.io-index" 4867checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6" 4868dependencies = [ 4869 "proc-macro2", 4870 "quote", 4871 "syn 2.0.117", 4872] 4873 4874[[package]] 4875name = "pin-project-lite" 4876version = "0.2.17" 4877source = "registry+https://github.com/rust-lang/crates.io-index" 4878checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" 4879 4880[[package]] 4881name = "pin-utils" 4882version = "0.1.0" 4883source = "registry+https://github.com/rust-lang/crates.io-index" 4884checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 4885 4886[[package]] 4887name = "pkcs1" 4888version = "0.7.5" 4889source = "registry+https://github.com/rust-lang/crates.io-index" 4890checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 4891dependencies = [ 4892 "der 0.7.10", 4893 "pkcs8 0.10.2", 4894 "spki 0.7.3", 4895] 4896 4897[[package]] 4898name = "pkcs8" 4899version = "0.9.0" 4900source = "registry+https://github.com/rust-lang/crates.io-index" 4901checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" 4902dependencies = [ 4903 "der 0.6.1", 4904 "spki 0.6.0", 4905] 4906 4907[[package]] 4908name = "pkcs8" 4909version = "0.10.2" 4910source = "registry+https://github.com/rust-lang/crates.io-index" 4911checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 4912dependencies = [ 4913 "der 0.7.10", 4914 "spki 0.7.3", 4915] 4916 4917[[package]] 4918name = "pkg-config" 4919version = "0.3.32" 4920source = "registry+https://github.com/rust-lang/crates.io-index" 4921checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 4922 4923[[package]] 4924name = "plain" 4925version = "0.2.3" 4926source = "registry+https://github.com/rust-lang/crates.io-index" 4927checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" 4928 4929[[package]] 4930name = "png" 4931version = "0.18.1" 4932source = "registry+https://github.com/rust-lang/crates.io-index" 4933checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61" 4934dependencies = [ 4935 "bitflags", 4936 "crc32fast", 4937 "fdeflate", 4938 "flate2", 4939 "miniz_oxide", 4940] 4941 4942[[package]] 4943name = "poksho" 4944version = "0.7.0" 4945source = "git+https://github.com/signalapp/libsignal?tag=v0.87.4#38514bdc8acaaffbccd5c96515c68deb2019abe0" 4946dependencies = [ 4947 "curve25519-dalek", 4948 "hmac", 4949 "sha2", 4950] 4951 4952[[package]] 4953name = "polyval" 4954version = "0.6.2" 4955source = "registry+https://github.com/rust-lang/crates.io-index" 4956checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" 4957dependencies = [ 4958 "cfg-if", 4959 "cpufeatures 0.2.17", 4960 "opaque-debug", 4961 "universal-hash", 4962] 4963 4964[[package]] 4965name = "portable-atomic" 4966version = "1.13.1" 4967source = "registry+https://github.com/rust-lang/crates.io-index" 4968checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" 4969 4970[[package]] 4971name = "postcard" 4972version = "1.1.3" 4973source = "registry+https://github.com/rust-lang/crates.io-index" 4974checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" 4975dependencies = [ 4976 "cobs", 4977 "embedded-io 0.4.0", 4978 "embedded-io 0.6.1", 4979 "heapless", 4980 "serde", 4981] 4982 4983[[package]] 4984name = "potential_utf" 4985version = "0.1.4" 4986source = "registry+https://github.com/rust-lang/crates.io-index" 4987checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" 4988dependencies = [ 4989 "zerovec", 4990] 4991 4992[[package]] 4993name = "powerfmt" 4994version = "0.2.0" 4995source = "registry+https://github.com/rust-lang/crates.io-index" 4996checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 4997 4998[[package]] 4999name = "ppv-lite86" 5000version = "0.2.21" 5001source = "registry+https://github.com/rust-lang/crates.io-index" 5002checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 5003dependencies = [ 5004 "zerocopy", 5005] 5006 5007[[package]] 5008name = "presage" 5009version = "0.8.0-dev" 5010source = "git+https://github.com/whisperfish/presage?rev=fe3ed54c4844ae51c3a9fa49cf80a7816a31a425#fe3ed54c4844ae51c3a9fa49cf80a7816a31a425" 5011dependencies = [ 5012 "base64 0.22.1", 5013 "bytes", 5014 "derive_more 2.1.1", 5015 "futures", 5016 "hex", 5017 "libsignal-service", 5018 "rand 0.9.2", 5019 "serde", 5020 "serde_json", 5021 "sha2", 5022 "thiserror 1.0.69", 5023 "tokio", 5024 "tracing", 5025 "url", 5026] 5027 5028[[package]] 5029name = "prettyplease" 5030version = "0.2.37" 5031source = "registry+https://github.com/rust-lang/crates.io-index" 5032checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" 5033dependencies = [ 5034 "proc-macro2", 5035 "syn 2.0.117", 5036] 5037 5038[[package]] 5039name = "primeorder" 5040version = "0.13.6" 5041source = "registry+https://github.com/rust-lang/crates.io-index" 5042checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 5043dependencies = [ 5044 "elliptic-curve 0.13.8", 5045] 5046 5047[[package]] 5048name = "proc-macro-crate" 5049version = "3.5.0" 5050source = "registry+https://github.com/rust-lang/crates.io-index" 5051checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" 5052dependencies = [ 5053 "toml_edit 0.25.5+spec-1.1.0", 5054] 5055 5056[[package]] 5057name = "proc-macro-error" 5058version = "1.0.4" 5059source = "registry+https://github.com/rust-lang/crates.io-index" 5060checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 5061dependencies = [ 5062 "proc-macro-error-attr", 5063 "proc-macro2", 5064 "quote", 5065 "syn 1.0.109", 5066 "version_check", 5067] 5068 5069[[package]] 5070name = "proc-macro-error-attr" 5071version = "1.0.4" 5072source = "registry+https://github.com/rust-lang/crates.io-index" 5073checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 5074dependencies = [ 5075 "proc-macro2", 5076 "quote", 5077 "version_check", 5078] 5079 5080[[package]] 5081name = "proc-macro-error-attr2" 5082version = "2.0.0" 5083source = "registry+https://github.com/rust-lang/crates.io-index" 5084checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" 5085dependencies = [ 5086 "proc-macro2", 5087 "quote", 5088] 5089 5090[[package]] 5091name = "proc-macro-error2" 5092version = "2.0.1" 5093source = "registry+https://github.com/rust-lang/crates.io-index" 5094checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" 5095dependencies = [ 5096 "proc-macro-error-attr2", 5097 "proc-macro2", 5098 "quote", 5099 "syn 2.0.117", 5100] 5101 5102[[package]] 5103name = "proc-macro2" 5104version = "1.0.106" 5105source = "registry+https://github.com/rust-lang/crates.io-index" 5106checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" 5107dependencies = [ 5108 "unicode-ident", 5109] 5110 5111[[package]] 5112name = "proc-macro2-diagnostics" 5113version = "0.10.1" 5114source = "registry+https://github.com/rust-lang/crates.io-index" 5115checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" 5116dependencies = [ 5117 "proc-macro2", 5118 "quote", 5119 "syn 2.0.117", 5120 "version_check", 5121 "yansi", 5122] 5123 5124[[package]] 5125name = "proptest" 5126version = "1.10.0" 5127source = "registry+https://github.com/rust-lang/crates.io-index" 5128checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532" 5129dependencies = [ 5130 "bit-set", 5131 "bit-vec", 5132 "bitflags", 5133 "num-traits", 5134 "rand 0.9.2", 5135 "rand_chacha 0.9.0", 5136 "rand_xorshift", 5137 "regex-syntax 0.8.10", 5138 "rusty-fork", 5139 "tempfile", 5140 "unarray", 5141] 5142 5143[[package]] 5144name = "prost" 5145version = "0.13.5" 5146source = "registry+https://github.com/rust-lang/crates.io-index" 5147checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5" 5148dependencies = [ 5149 "bytes", 5150 "prost-derive 0.13.5", 5151] 5152 5153[[package]] 5154name = "prost" 5155version = "0.14.3" 5156source = "registry+https://github.com/rust-lang/crates.io-index" 5157checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568" 5158dependencies = [ 5159 "bytes", 5160 "prost-derive 0.14.3", 5161] 5162 5163[[package]] 5164name = "prost-build" 5165version = "0.13.5" 5166source = "registry+https://github.com/rust-lang/crates.io-index" 5167checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf" 5168dependencies = [ 5169 "heck 0.5.0", 5170 "itertools", 5171 "log", 5172 "multimap", 5173 "once_cell", 5174 "petgraph 0.7.1", 5175 "prettyplease", 5176 "prost 0.13.5", 5177 "prost-types 0.13.5", 5178 "regex", 5179 "syn 2.0.117", 5180 "tempfile", 5181] 5182 5183[[package]] 5184name = "prost-build" 5185version = "0.14.3" 5186source = "registry+https://github.com/rust-lang/crates.io-index" 5187checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7" 5188dependencies = [ 5189 "heck 0.5.0", 5190 "itertools", 5191 "log", 5192 "multimap", 5193 "petgraph 0.8.3", 5194 "prettyplease", 5195 "prost 0.14.3", 5196 "prost-types 0.14.3", 5197 "regex", 5198 "syn 2.0.117", 5199 "tempfile", 5200] 5201 5202[[package]] 5203name = "prost-derive" 5204version = "0.13.5" 5205source = "registry+https://github.com/rust-lang/crates.io-index" 5206checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" 5207dependencies = [ 5208 "anyhow", 5209 "itertools", 5210 "proc-macro2", 5211 "quote", 5212 "syn 2.0.117", 5213] 5214 5215[[package]] 5216name = "prost-derive" 5217version = "0.14.3" 5218source = "registry+https://github.com/rust-lang/crates.io-index" 5219checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b" 5220dependencies = [ 5221 "anyhow", 5222 "itertools", 5223 "proc-macro2", 5224 "quote", 5225 "syn 2.0.117", 5226] 5227 5228[[package]] 5229name = "prost-types" 5230version = "0.13.5" 5231source = "registry+https://github.com/rust-lang/crates.io-index" 5232checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16" 5233dependencies = [ 5234 "prost 0.13.5", 5235] 5236 5237[[package]] 5238name = "prost-types" 5239version = "0.14.3" 5240source = "registry+https://github.com/rust-lang/crates.io-index" 5241checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7" 5242dependencies = [ 5243 "prost 0.14.3", 5244] 5245 5246[[package]] 5247name = "protobuf" 5248version = "3.7.2" 5249source = "registry+https://github.com/rust-lang/crates.io-index" 5250checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4" 5251dependencies = [ 5252 "once_cell", 5253 "protobuf-support", 5254 "thiserror 1.0.69", 5255] 5256 5257[[package]] 5258name = "protobuf-codegen" 5259version = "3.7.2" 5260source = "registry+https://github.com/rust-lang/crates.io-index" 5261checksum = "5d3976825c0014bbd2f3b34f0001876604fe87e0c86cd8fa54251530f1544ace" 5262dependencies = [ 5263 "anyhow", 5264 "once_cell", 5265 "protobuf", 5266 "protobuf-parse", 5267 "regex", 5268 "tempfile", 5269 "thiserror 1.0.69", 5270] 5271 5272[[package]] 5273name = "protobuf-parse" 5274version = "3.7.2" 5275source = "registry+https://github.com/rust-lang/crates.io-index" 5276checksum = "b4aeaa1f2460f1d348eeaeed86aea999ce98c1bded6f089ff8514c9d9dbdc973" 5277dependencies = [ 5278 "anyhow", 5279 "indexmap 2.13.0", 5280 "log", 5281 "protobuf", 5282 "protobuf-support", 5283 "tempfile", 5284 "thiserror 1.0.69", 5285 "which", 5286] 5287 5288[[package]] 5289name = "protobuf-support" 5290version = "3.7.2" 5291source = "registry+https://github.com/rust-lang/crates.io-index" 5292checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6" 5293dependencies = [ 5294 "thiserror 1.0.69", 5295] 5296 5297[[package]] 5298name = "pxfm" 5299version = "0.1.28" 5300source = "registry+https://github.com/rust-lang/crates.io-index" 5301checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d" 5302 5303[[package]] 5304name = "qrcodegen" 5305version = "1.8.0" 5306source = "registry+https://github.com/rust-lang/crates.io-index" 5307checksum = "4339fc7a1021c9c1621d87f5e3505f2805c8c105420ba2f2a4df86814590c142" 5308 5309[[package]] 5310name = "qrcodegen-image" 5311version = "1.5.1" 5312source = "registry+https://github.com/rust-lang/crates.io-index" 5313checksum = "99530e45ded4640c0eab5420fc60f9a0ec1be51a22e49cc8578b9a0d8be70712" 5314dependencies = [ 5315 "base64 0.22.1", 5316 "image", 5317 "qrcodegen", 5318] 5319 5320[[package]] 5321name = "quanta" 5322version = "0.12.6" 5323source = "registry+https://github.com/rust-lang/crates.io-index" 5324checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7" 5325dependencies = [ 5326 "crossbeam-utils", 5327 "libc", 5328 "once_cell", 5329 "raw-cpuid", 5330 "wasi", 5331 "web-sys", 5332 "winapi", 5333] 5334 5335[[package]] 5336name = "quick-error" 5337version = "1.2.3" 5338source = "registry+https://github.com/rust-lang/crates.io-index" 5339checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 5340 5341[[package]] 5342name = "quick-error" 5343version = "2.0.1" 5344source = "registry+https://github.com/rust-lang/crates.io-index" 5345checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 5346 5347[[package]] 5348name = "quick-xml" 5349version = "0.38.4" 5350source = "registry+https://github.com/rust-lang/crates.io-index" 5351checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" 5352dependencies = [ 5353 "memchr", 5354] 5355 5356[[package]] 5357name = "quick_cache" 5358version = "0.6.21" 5359source = "registry+https://github.com/rust-lang/crates.io-index" 5360checksum = "5a70b1b8b47e31d0498ecbc3c5470bb931399a8bfed1fd79d1717a61ce7f96e3" 5361dependencies = [ 5362 "equivalent", 5363 "hashbrown 0.16.1", 5364] 5365 5366[[package]] 5367name = "quinn" 5368version = "0.11.9" 5369source = "registry+https://github.com/rust-lang/crates.io-index" 5370checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 5371dependencies = [ 5372 "bytes", 5373 "cfg_aliases", 5374 "pin-project-lite", 5375 "quinn-proto", 5376 "quinn-udp", 5377 "rustc-hash", 5378 "rustls 0.23.37", 5379 "socket2 0.6.3", 5380 "thiserror 2.0.18", 5381 "tokio", 5382 "tracing", 5383 "web-time", 5384] 5385 5386[[package]] 5387name = "quinn-proto" 5388version = "0.11.14" 5389source = "registry+https://github.com/rust-lang/crates.io-index" 5390checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" 5391dependencies = [ 5392 "bytes", 5393 "getrandom 0.3.4", 5394 "lru-slab", 5395 "rand 0.9.2", 5396 "ring", 5397 "rustc-hash", 5398 "rustls 0.23.37", 5399 "rustls-pki-types", 5400 "slab", 5401 "thiserror 2.0.18", 5402 "tinyvec", 5403 "tracing", 5404 "web-time", 5405] 5406 5407[[package]] 5408name = "quinn-udp" 5409version = "0.5.14" 5410source = "registry+https://github.com/rust-lang/crates.io-index" 5411checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 5412dependencies = [ 5413 "cfg_aliases", 5414 "libc", 5415 "once_cell", 5416 "socket2 0.6.3", 5417 "tracing", 5418 "windows-sys 0.60.2", 5419] 5420 5421[[package]] 5422name = "quote" 5423version = "1.0.45" 5424source = "registry+https://github.com/rust-lang/crates.io-index" 5425checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" 5426dependencies = [ 5427 "proc-macro2", 5428] 5429 5430[[package]] 5431name = "r-efi" 5432version = "5.3.0" 5433source = "registry+https://github.com/rust-lang/crates.io-index" 5434checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 5435 5436[[package]] 5437name = "r-efi" 5438version = "6.0.0" 5439source = "registry+https://github.com/rust-lang/crates.io-index" 5440checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" 5441 5442[[package]] 5443name = "rand" 5444version = "0.8.5" 5445source = "registry+https://github.com/rust-lang/crates.io-index" 5446checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 5447dependencies = [ 5448 "libc", 5449 "rand_chacha 0.3.1", 5450 "rand_core 0.6.4", 5451] 5452 5453[[package]] 5454name = "rand" 5455version = "0.9.2" 5456source = "registry+https://github.com/rust-lang/crates.io-index" 5457checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 5458dependencies = [ 5459 "rand_chacha 0.9.0", 5460 "rand_core 0.9.5", 5461] 5462 5463[[package]] 5464name = "rand" 5465version = "0.10.0" 5466source = "registry+https://github.com/rust-lang/crates.io-index" 5467checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8" 5468dependencies = [ 5469 "chacha20", 5470 "getrandom 0.4.2", 5471 "rand_core 0.10.0", 5472] 5473 5474[[package]] 5475name = "rand_chacha" 5476version = "0.3.1" 5477source = "registry+https://github.com/rust-lang/crates.io-index" 5478checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 5479dependencies = [ 5480 "ppv-lite86", 5481 "rand_core 0.6.4", 5482] 5483 5484[[package]] 5485name = "rand_chacha" 5486version = "0.9.0" 5487source = "registry+https://github.com/rust-lang/crates.io-index" 5488checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 5489dependencies = [ 5490 "ppv-lite86", 5491 "rand_core 0.9.5", 5492] 5493 5494[[package]] 5495name = "rand_core" 5496version = "0.6.4" 5497source = "registry+https://github.com/rust-lang/crates.io-index" 5498checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 5499dependencies = [ 5500 "getrandom 0.2.17", 5501] 5502 5503[[package]] 5504name = "rand_core" 5505version = "0.9.5" 5506source = "registry+https://github.com/rust-lang/crates.io-index" 5507checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" 5508dependencies = [ 5509 "getrandom 0.3.4", 5510] 5511 5512[[package]] 5513name = "rand_core" 5514version = "0.10.0" 5515source = "registry+https://github.com/rust-lang/crates.io-index" 5516checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba" 5517 5518[[package]] 5519name = "rand_xorshift" 5520version = "0.4.0" 5521source = "registry+https://github.com/rust-lang/crates.io-index" 5522checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" 5523dependencies = [ 5524 "rand_core 0.9.5", 5525] 5526 5527[[package]] 5528name = "rand_xoshiro" 5529version = "0.7.0" 5530source = "registry+https://github.com/rust-lang/crates.io-index" 5531checksum = "f703f4665700daf5512dcca5f43afa6af89f09db47fb56be587f80636bda2d41" 5532dependencies = [ 5533 "rand_core 0.9.5", 5534] 5535 5536[[package]] 5537name = "range-traits" 5538version = "0.3.2" 5539source = "registry+https://github.com/rust-lang/crates.io-index" 5540checksum = "d20581732dd76fa913c7dff1a2412b714afe3573e94d41c34719de73337cc8ab" 5541 5542[[package]] 5543name = "raw-cpuid" 5544version = "11.6.0" 5545source = "registry+https://github.com/rust-lang/crates.io-index" 5546checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186" 5547dependencies = [ 5548 "bitflags", 5549] 5550 5551[[package]] 5552name = "rayon" 5553version = "1.11.0" 5554source = "registry+https://github.com/rust-lang/crates.io-index" 5555checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" 5556dependencies = [ 5557 "either", 5558 "rayon-core", 5559] 5560 5561[[package]] 5562name = "rayon-core" 5563version = "1.13.0" 5564source = "registry+https://github.com/rust-lang/crates.io-index" 5565checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" 5566dependencies = [ 5567 "crossbeam-deque", 5568 "crossbeam-utils", 5569] 5570 5571[[package]] 5572name = "redis" 5573version = "1.1.0" 5574source = "registry+https://github.com/rust-lang/crates.io-index" 5575checksum = "d76e41a79ae5cbb41257d84cf4cf0db0bb5a95b11bf05c62c351de4fe748620d" 5576dependencies = [ 5577 "arc-swap", 5578 "arcstr", 5579 "async-lock", 5580 "backon", 5581 "bytes", 5582 "cfg-if", 5583 "combine", 5584 "futures-channel", 5585 "futures-util", 5586 "itoa", 5587 "num-bigint", 5588 "percent-encoding", 5589 "pin-project-lite", 5590 "ryu", 5591 "sha1_smol", 5592 "socket2 0.6.3", 5593 "tokio", 5594 "tokio-util", 5595 "url", 5596 "xxhash-rust", 5597] 5598 5599[[package]] 5600name = "redox_syscall" 5601version = "0.5.18" 5602source = "registry+https://github.com/rust-lang/crates.io-index" 5603checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 5604dependencies = [ 5605 "bitflags", 5606] 5607 5608[[package]] 5609name = "redox_syscall" 5610version = "0.7.3" 5611source = "registry+https://github.com/rust-lang/crates.io-index" 5612checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16" 5613dependencies = [ 5614 "bitflags", 5615] 5616 5617[[package]] 5618name = "ref-cast" 5619version = "1.0.25" 5620source = "registry+https://github.com/rust-lang/crates.io-index" 5621checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" 5622dependencies = [ 5623 "ref-cast-impl", 5624] 5625 5626[[package]] 5627name = "ref-cast-impl" 5628version = "1.0.25" 5629source = "registry+https://github.com/rust-lang/crates.io-index" 5630checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" 5631dependencies = [ 5632 "proc-macro2", 5633 "quote", 5634 "syn 2.0.117", 5635] 5636 5637[[package]] 5638name = "regex" 5639version = "1.12.3" 5640source = "registry+https://github.com/rust-lang/crates.io-index" 5641checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" 5642dependencies = [ 5643 "aho-corasick", 5644 "memchr", 5645 "regex-automata", 5646 "regex-syntax 0.8.10", 5647] 5648 5649[[package]] 5650name = "regex-automata" 5651version = "0.4.14" 5652source = "registry+https://github.com/rust-lang/crates.io-index" 5653checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" 5654dependencies = [ 5655 "aho-corasick", 5656 "memchr", 5657 "regex-syntax 0.8.10", 5658] 5659 5660[[package]] 5661name = "regex-cache" 5662version = "0.2.1" 5663source = "registry+https://github.com/rust-lang/crates.io-index" 5664checksum = "2f7b62d69743b8b94f353b6b7c3deb4c5582828328bcb8d5fedf214373808793" 5665dependencies = [ 5666 "lru-cache", 5667 "oncemutex", 5668 "regex", 5669 "regex-syntax 0.6.29", 5670] 5671 5672[[package]] 5673name = "regex-lite" 5674version = "0.1.9" 5675source = "registry+https://github.com/rust-lang/crates.io-index" 5676checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973" 5677 5678[[package]] 5679name = "regex-syntax" 5680version = "0.6.29" 5681source = "registry+https://github.com/rust-lang/crates.io-index" 5682checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 5683 5684[[package]] 5685name = "regex-syntax" 5686version = "0.8.10" 5687source = "registry+https://github.com/rust-lang/crates.io-index" 5688checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" 5689 5690[[package]] 5691name = "reqwest" 5692version = "0.12.28" 5693source = "registry+https://github.com/rust-lang/crates.io-index" 5694checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" 5695dependencies = [ 5696 "base64 0.22.1", 5697 "bytes", 5698 "encoding_rs", 5699 "futures-core", 5700 "futures-util", 5701 "h2 0.4.13", 5702 "http 1.4.0", 5703 "http-body 1.0.1", 5704 "http-body-util", 5705 "hyper 1.8.1", 5706 "hyper-rustls 0.27.7", 5707 "hyper-util", 5708 "js-sys", 5709 "log", 5710 "mime", 5711 "mime_guess", 5712 "percent-encoding", 5713 "pin-project-lite", 5714 "quinn", 5715 "rustls 0.23.37", 5716 "rustls-pki-types", 5717 "serde", 5718 "serde_json", 5719 "serde_urlencoded", 5720 "sync_wrapper", 5721 "tokio", 5722 "tokio-rustls 0.26.4", 5723 "tokio-util", 5724 "tower", 5725 "tower-http", 5726 "tower-service", 5727 "url", 5728 "wasm-bindgen", 5729 "wasm-bindgen-futures", 5730 "wasm-streams", 5731 "web-sys", 5732 "webpki-roots 1.0.6", 5733] 5734 5735[[package]] 5736name = "reqwest-websocket" 5737version = "0.4.4" 5738source = "registry+https://github.com/rust-lang/crates.io-index" 5739checksum = "f477f800f86d8f5c320e19d8b2b1ef0b1e773ea7c75eec6c7f442e7ec3f06d7e" 5740dependencies = [ 5741 "async-tungstenite", 5742 "futures-util", 5743 "reqwest", 5744 "serde", 5745 "serde_json", 5746 "thiserror 2.0.18", 5747 "tokio", 5748 "tokio-util", 5749 "tracing", 5750 "tungstenite 0.24.0", 5751 "web-sys", 5752] 5753 5754[[package]] 5755name = "resolv-conf" 5756version = "0.7.6" 5757source = "registry+https://github.com/rust-lang/crates.io-index" 5758checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7" 5759 5760[[package]] 5761name = "rfc6979" 5762version = "0.3.1" 5763source = "registry+https://github.com/rust-lang/crates.io-index" 5764checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" 5765dependencies = [ 5766 "crypto-bigint 0.4.9", 5767 "hmac", 5768 "zeroize", 5769] 5770 5771[[package]] 5772name = "rfc6979" 5773version = "0.4.0" 5774source = "registry+https://github.com/rust-lang/crates.io-index" 5775checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 5776dependencies = [ 5777 "hmac", 5778 "subtle", 5779] 5780 5781[[package]] 5782name = "ring" 5783version = "0.17.14" 5784source = "registry+https://github.com/rust-lang/crates.io-index" 5785checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 5786dependencies = [ 5787 "cc", 5788 "cfg-if", 5789 "getrandom 0.2.17", 5790 "libc", 5791 "untrusted", 5792 "windows-sys 0.52.0", 5793] 5794 5795[[package]] 5796name = "rsa" 5797version = "0.9.10" 5798source = "registry+https://github.com/rust-lang/crates.io-index" 5799checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d" 5800dependencies = [ 5801 "const-oid", 5802 "digest", 5803 "num-bigint-dig", 5804 "num-integer", 5805 "num-traits", 5806 "pkcs1", 5807 "pkcs8 0.10.2", 5808 "rand_core 0.6.4", 5809 "signature 2.2.0", 5810 "spki 0.7.3", 5811 "subtle", 5812 "zeroize", 5813] 5814 5815[[package]] 5816name = "rustc-hash" 5817version = "2.1.1" 5818source = "registry+https://github.com/rust-lang/crates.io-index" 5819checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 5820 5821[[package]] 5822name = "rustc_version" 5823version = "0.4.1" 5824source = "registry+https://github.com/rust-lang/crates.io-index" 5825checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 5826dependencies = [ 5827 "semver", 5828] 5829 5830[[package]] 5831name = "rusticata-macros" 5832version = "4.1.0" 5833source = "registry+https://github.com/rust-lang/crates.io-index" 5834checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" 5835dependencies = [ 5836 "nom", 5837] 5838 5839[[package]] 5840name = "rustix" 5841version = "0.38.44" 5842source = "registry+https://github.com/rust-lang/crates.io-index" 5843checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" 5844dependencies = [ 5845 "bitflags", 5846 "errno", 5847 "libc", 5848 "linux-raw-sys 0.4.15", 5849 "windows-sys 0.59.0", 5850] 5851 5852[[package]] 5853name = "rustix" 5854version = "1.1.4" 5855source = "registry+https://github.com/rust-lang/crates.io-index" 5856checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" 5857dependencies = [ 5858 "bitflags", 5859 "errno", 5860 "libc", 5861 "linux-raw-sys 0.12.1", 5862 "windows-sys 0.61.2", 5863] 5864 5865[[package]] 5866name = "rustls" 5867version = "0.21.12" 5868source = "registry+https://github.com/rust-lang/crates.io-index" 5869checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" 5870dependencies = [ 5871 "log", 5872 "ring", 5873 "rustls-webpki 0.101.7", 5874 "sct", 5875] 5876 5877[[package]] 5878name = "rustls" 5879version = "0.23.37" 5880source = "registry+https://github.com/rust-lang/crates.io-index" 5881checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4" 5882dependencies = [ 5883 "aws-lc-rs", 5884 "log", 5885 "once_cell", 5886 "ring", 5887 "rustls-pki-types", 5888 "rustls-webpki 0.103.10", 5889 "subtle", 5890 "zeroize", 5891] 5892 5893[[package]] 5894name = "rustls-native-certs" 5895version = "0.8.3" 5896source = "registry+https://github.com/rust-lang/crates.io-index" 5897checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" 5898dependencies = [ 5899 "openssl-probe", 5900 "rustls-pki-types", 5901 "schannel", 5902 "security-framework", 5903] 5904 5905[[package]] 5906name = "rustls-pemfile" 5907version = "2.2.0" 5908source = "registry+https://github.com/rust-lang/crates.io-index" 5909checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" 5910dependencies = [ 5911 "rustls-pki-types", 5912] 5913 5914[[package]] 5915name = "rustls-pki-types" 5916version = "1.14.0" 5917source = "registry+https://github.com/rust-lang/crates.io-index" 5918checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" 5919dependencies = [ 5920 "web-time", 5921 "zeroize", 5922] 5923 5924[[package]] 5925name = "rustls-webpki" 5926version = "0.101.7" 5927source = "registry+https://github.com/rust-lang/crates.io-index" 5928checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 5929dependencies = [ 5930 "ring", 5931 "untrusted", 5932] 5933 5934[[package]] 5935name = "rustls-webpki" 5936version = "0.103.10" 5937source = "registry+https://github.com/rust-lang/crates.io-index" 5938checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef" 5939dependencies = [ 5940 "aws-lc-rs", 5941 "ring", 5942 "rustls-pki-types", 5943 "untrusted", 5944] 5945 5946[[package]] 5947name = "rustversion" 5948version = "1.0.22" 5949source = "registry+https://github.com/rust-lang/crates.io-index" 5950checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 5951 5952[[package]] 5953name = "rusty-fork" 5954version = "0.3.1" 5955source = "registry+https://github.com/rust-lang/crates.io-index" 5956checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2" 5957dependencies = [ 5958 "fnv", 5959 "quick-error 1.2.3", 5960 "tempfile", 5961 "wait-timeout", 5962] 5963 5964[[package]] 5965name = "ryu" 5966version = "1.0.23" 5967source = "registry+https://github.com/rust-lang/crates.io-index" 5968checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" 5969 5970[[package]] 5971name = "schannel" 5972version = "0.1.29" 5973source = "registry+https://github.com/rust-lang/crates.io-index" 5974checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" 5975dependencies = [ 5976 "windows-sys 0.61.2", 5977] 5978 5979[[package]] 5980name = "schemars" 5981version = "0.9.0" 5982source = "registry+https://github.com/rust-lang/crates.io-index" 5983checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" 5984dependencies = [ 5985 "dyn-clone", 5986 "ref-cast", 5987 "serde", 5988 "serde_json", 5989] 5990 5991[[package]] 5992name = "schemars" 5993version = "1.2.1" 5994source = "registry+https://github.com/rust-lang/crates.io-index" 5995checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc" 5996dependencies = [ 5997 "dyn-clone", 5998 "ref-cast", 5999 "serde", 6000 "serde_json", 6001] 6002 6003[[package]] 6004name = "scoped-tls" 6005version = "1.0.1" 6006source = "registry+https://github.com/rust-lang/crates.io-index" 6007checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 6008 6009[[package]] 6010name = "scopeguard" 6011version = "1.2.0" 6012source = "registry+https://github.com/rust-lang/crates.io-index" 6013checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 6014 6015[[package]] 6016name = "sct" 6017version = "0.7.1" 6018source = "registry+https://github.com/rust-lang/crates.io-index" 6019checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 6020dependencies = [ 6021 "ring", 6022 "untrusted", 6023] 6024 6025[[package]] 6026name = "sec1" 6027version = "0.3.0" 6028source = "registry+https://github.com/rust-lang/crates.io-index" 6029checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" 6030dependencies = [ 6031 "base16ct 0.1.1", 6032 "der 0.6.1", 6033 "generic-array", 6034 "pkcs8 0.9.0", 6035 "subtle", 6036 "zeroize", 6037] 6038 6039[[package]] 6040name = "sec1" 6041version = "0.7.3" 6042source = "registry+https://github.com/rust-lang/crates.io-index" 6043checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 6044dependencies = [ 6045 "base16ct 0.2.0", 6046 "der 0.7.10", 6047 "generic-array", 6048 "pkcs8 0.10.2", 6049 "subtle", 6050 "zeroize", 6051] 6052 6053[[package]] 6054name = "security-framework" 6055version = "3.7.0" 6056source = "registry+https://github.com/rust-lang/crates.io-index" 6057checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" 6058dependencies = [ 6059 "bitflags", 6060 "core-foundation 0.10.1", 6061 "core-foundation-sys", 6062 "libc", 6063 "security-framework-sys", 6064] 6065 6066[[package]] 6067name = "security-framework-sys" 6068version = "2.17.0" 6069source = "registry+https://github.com/rust-lang/crates.io-index" 6070checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" 6071dependencies = [ 6072 "core-foundation-sys", 6073 "libc", 6074] 6075 6076[[package]] 6077name = "self_cell" 6078version = "1.2.2" 6079source = "registry+https://github.com/rust-lang/crates.io-index" 6080checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89" 6081 6082[[package]] 6083name = "semver" 6084version = "1.0.27" 6085source = "registry+https://github.com/rust-lang/crates.io-index" 6086checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" 6087 6088[[package]] 6089name = "send_wrapper" 6090version = "0.6.0" 6091source = "registry+https://github.com/rust-lang/crates.io-index" 6092checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" 6093 6094[[package]] 6095name = "serde" 6096version = "1.0.228" 6097source = "registry+https://github.com/rust-lang/crates.io-index" 6098checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 6099dependencies = [ 6100 "serde_core", 6101 "serde_derive", 6102] 6103 6104[[package]] 6105name = "serde_bytes" 6106version = "0.11.19" 6107source = "registry+https://github.com/rust-lang/crates.io-index" 6108checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" 6109dependencies = [ 6110 "serde", 6111 "serde_core", 6112] 6113 6114[[package]] 6115name = "serde_cbor_2" 6116version = "0.13.0" 6117source = "registry+https://github.com/rust-lang/crates.io-index" 6118checksum = "34aec2709de9078e077090abd848e967abab63c9fb3fdb5d4799ad359d8d482c" 6119dependencies = [ 6120 "half", 6121 "serde", 6122] 6123 6124[[package]] 6125name = "serde_core" 6126version = "1.0.228" 6127source = "registry+https://github.com/rust-lang/crates.io-index" 6128checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 6129dependencies = [ 6130 "serde_derive", 6131] 6132 6133[[package]] 6134name = "serde_derive" 6135version = "1.0.228" 6136source = "registry+https://github.com/rust-lang/crates.io-index" 6137checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 6138dependencies = [ 6139 "proc-macro2", 6140 "quote", 6141 "syn 2.0.117", 6142] 6143 6144[[package]] 6145name = "serde_html_form" 6146version = "0.2.8" 6147source = "registry+https://github.com/rust-lang/crates.io-index" 6148checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f" 6149dependencies = [ 6150 "form_urlencoded", 6151 "indexmap 2.13.0", 6152 "itoa", 6153 "ryu", 6154 "serde_core", 6155] 6156 6157[[package]] 6158name = "serde_ipld_dagcbor" 6159version = "0.6.4" 6160source = "registry+https://github.com/rust-lang/crates.io-index" 6161checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778" 6162dependencies = [ 6163 "cbor4ii", 6164 "ipld-core", 6165 "scopeguard", 6166 "serde", 6167] 6168 6169[[package]] 6170name = "serde_json" 6171version = "1.0.149" 6172source = "registry+https://github.com/rust-lang/crates.io-index" 6173checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" 6174dependencies = [ 6175 "itoa", 6176 "memchr", 6177 "serde", 6178 "serde_core", 6179 "zmij", 6180] 6181 6182[[package]] 6183name = "serde_path_to_error" 6184version = "0.1.20" 6185source = "registry+https://github.com/rust-lang/crates.io-index" 6186checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" 6187dependencies = [ 6188 "itoa", 6189 "serde", 6190 "serde_core", 6191] 6192 6193[[package]] 6194name = "serde_repr" 6195version = "0.1.20" 6196source = "registry+https://github.com/rust-lang/crates.io-index" 6197checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 6198dependencies = [ 6199 "proc-macro2", 6200 "quote", 6201 "syn 2.0.117", 6202] 6203 6204[[package]] 6205name = "serde_spanned" 6206version = "0.6.9" 6207source = "registry+https://github.com/rust-lang/crates.io-index" 6208checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" 6209dependencies = [ 6210 "serde", 6211] 6212 6213[[package]] 6214name = "serde_spanned" 6215version = "1.0.4" 6216source = "registry+https://github.com/rust-lang/crates.io-index" 6217checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" 6218dependencies = [ 6219 "serde_core", 6220] 6221 6222[[package]] 6223name = "serde_urlencoded" 6224version = "0.7.1" 6225source = "registry+https://github.com/rust-lang/crates.io-index" 6226checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 6227dependencies = [ 6228 "form_urlencoded", 6229 "itoa", 6230 "ryu", 6231 "serde", 6232] 6233 6234[[package]] 6235name = "serde_with" 6236version = "3.18.0" 6237source = "registry+https://github.com/rust-lang/crates.io-index" 6238checksum = "dd5414fad8e6907dbdd5bc441a50ae8d6e26151a03b1de04d89a5576de61d01f" 6239dependencies = [ 6240 "base64 0.22.1", 6241 "chrono", 6242 "hex", 6243 "indexmap 1.9.3", 6244 "indexmap 2.13.0", 6245 "schemars 0.9.0", 6246 "schemars 1.2.1", 6247 "serde_core", 6248 "serde_json", 6249 "serde_with_macros", 6250 "time", 6251] 6252 6253[[package]] 6254name = "serde_with_macros" 6255version = "3.18.0" 6256source = "registry+https://github.com/rust-lang/crates.io-index" 6257checksum = "d3db8978e608f1fe7357e211969fd9abdcae80bac1ba7a3369bb7eb6b404eb65" 6258dependencies = [ 6259 "darling", 6260 "proc-macro2", 6261 "quote", 6262 "syn 2.0.117", 6263] 6264 6265[[package]] 6266name = "sfa" 6267version = "1.0.0" 6268source = "registry+https://github.com/rust-lang/crates.io-index" 6269checksum = "a1296838937cab56cd6c4eeeb8718ec777383700c33f060e2869867bd01d1175" 6270dependencies = [ 6271 "byteorder-lite", 6272 "log", 6273 "xxhash-rust", 6274] 6275 6276[[package]] 6277name = "sha1" 6278version = "0.10.6" 6279source = "registry+https://github.com/rust-lang/crates.io-index" 6280checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 6281dependencies = [ 6282 "cfg-if", 6283 "cpufeatures 0.2.17", 6284 "digest", 6285] 6286 6287[[package]] 6288name = "sha1_smol" 6289version = "1.0.1" 6290source = "registry+https://github.com/rust-lang/crates.io-index" 6291checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" 6292 6293[[package]] 6294name = "sha2" 6295version = "0.10.9" 6296source = "registry+https://github.com/rust-lang/crates.io-index" 6297checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 6298dependencies = [ 6299 "cfg-if", 6300 "cpufeatures 0.2.17", 6301 "digest", 6302 "sha2-asm", 6303] 6304 6305[[package]] 6306name = "sha2-asm" 6307version = "0.6.4" 6308source = "registry+https://github.com/rust-lang/crates.io-index" 6309checksum = "b845214d6175804686b2bd482bcffe96651bb2d1200742b712003504a2dac1ab" 6310dependencies = [ 6311 "cc", 6312] 6313 6314[[package]] 6315name = "sharded-slab" 6316version = "0.1.7" 6317source = "registry+https://github.com/rust-lang/crates.io-index" 6318checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 6319dependencies = [ 6320 "lazy_static", 6321] 6322 6323[[package]] 6324name = "shlex" 6325version = "1.3.0" 6326source = "registry+https://github.com/rust-lang/crates.io-index" 6327checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 6328 6329[[package]] 6330name = "signal-crypto" 6331version = "0.1.0" 6332source = "git+https://github.com/signalapp/libsignal?tag=v0.87.4#38514bdc8acaaffbccd5c96515c68deb2019abe0" 6333dependencies = [ 6334 "aes", 6335 "cbc", 6336 "ctr", 6337 "derive_more 2.1.1", 6338 "displaydoc", 6339 "ghash", 6340 "hkdf", 6341 "hmac", 6342 "hpke-rs", 6343 "hpke-rs-crypto", 6344 "libsignal-core", 6345 "rand_chacha 0.9.0", 6346 "rand_core 0.9.5", 6347 "sha1", 6348 "sha2", 6349 "subtle", 6350 "thiserror 2.0.18", 6351] 6352 6353[[package]] 6354name = "signal-hook-registry" 6355version = "1.4.8" 6356source = "registry+https://github.com/rust-lang/crates.io-index" 6357checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 6358dependencies = [ 6359 "errno", 6360 "libc", 6361] 6362 6363[[package]] 6364name = "signature" 6365version = "1.6.4" 6366source = "registry+https://github.com/rust-lang/crates.io-index" 6367checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" 6368dependencies = [ 6369 "digest", 6370 "rand_core 0.6.4", 6371] 6372 6373[[package]] 6374name = "signature" 6375version = "2.2.0" 6376source = "registry+https://github.com/rust-lang/crates.io-index" 6377checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 6378dependencies = [ 6379 "digest", 6380 "rand_core 0.6.4", 6381] 6382 6383[[package]] 6384name = "simd-adler32" 6385version = "0.3.8" 6386source = "registry+https://github.com/rust-lang/crates.io-index" 6387checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" 6388 6389[[package]] 6390name = "simple_asn1" 6391version = "0.6.4" 6392source = "registry+https://github.com/rust-lang/crates.io-index" 6393checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d" 6394dependencies = [ 6395 "num-bigint", 6396 "num-traits", 6397 "thiserror 2.0.18", 6398 "time", 6399] 6400 6401[[package]] 6402name = "siphasher" 6403version = "1.0.2" 6404source = "registry+https://github.com/rust-lang/crates.io-index" 6405checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e" 6406 6407[[package]] 6408name = "sketches-ddsketch" 6409version = "0.3.1" 6410source = "registry+https://github.com/rust-lang/crates.io-index" 6411checksum = "0c6f73aeb92d671e0cc4dca167e59b2deb6387c375391bc99ee743f326994a2b" 6412 6413[[package]] 6414name = "slab" 6415version = "0.4.12" 6416source = "registry+https://github.com/rust-lang/crates.io-index" 6417checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" 6418 6419[[package]] 6420name = "smallvec" 6421version = "1.15.1" 6422source = "registry+https://github.com/rust-lang/crates.io-index" 6423checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 6424dependencies = [ 6425 "serde", 6426] 6427 6428[[package]] 6429name = "smol_str" 6430version = "0.3.6" 6431source = "registry+https://github.com/rust-lang/crates.io-index" 6432checksum = "4aaa7368fcf4852a4c2dd92df0cace6a71f2091ca0a23391ce7f3a31833f1523" 6433dependencies = [ 6434 "borsh", 6435 "serde_core", 6436] 6437 6438[[package]] 6439name = "socket2" 6440version = "0.5.10" 6441source = "registry+https://github.com/rust-lang/crates.io-index" 6442checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 6443dependencies = [ 6444 "libc", 6445 "windows-sys 0.52.0", 6446] 6447 6448[[package]] 6449name = "socket2" 6450version = "0.6.3" 6451source = "registry+https://github.com/rust-lang/crates.io-index" 6452checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" 6453dependencies = [ 6454 "libc", 6455 "windows-sys 0.61.2", 6456] 6457 6458[[package]] 6459name = "sorted-vec" 6460version = "0.8.10" 6461source = "registry+https://github.com/rust-lang/crates.io-index" 6462checksum = "19f58d7b0190c7f12df7e8be6b79767a0836059159811b869d5ab55721fe14d0" 6463 6464[[package]] 6465name = "spin" 6466version = "0.9.8" 6467source = "registry+https://github.com/rust-lang/crates.io-index" 6468checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 6469dependencies = [ 6470 "lock_api", 6471] 6472 6473[[package]] 6474name = "spin" 6475version = "0.10.0" 6476source = "registry+https://github.com/rust-lang/crates.io-index" 6477checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" 6478 6479[[package]] 6480name = "spinning_top" 6481version = "0.3.0" 6482source = "registry+https://github.com/rust-lang/crates.io-index" 6483checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" 6484dependencies = [ 6485 "lock_api", 6486] 6487 6488[[package]] 6489name = "spki" 6490version = "0.6.0" 6491source = "registry+https://github.com/rust-lang/crates.io-index" 6492checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" 6493dependencies = [ 6494 "base64ct", 6495 "der 0.6.1", 6496] 6497 6498[[package]] 6499name = "spki" 6500version = "0.7.3" 6501source = "registry+https://github.com/rust-lang/crates.io-index" 6502checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 6503dependencies = [ 6504 "base64ct", 6505 "der 0.7.10", 6506] 6507 6508[[package]] 6509name = "spqr" 6510version = "1.4.0" 6511source = "git+https://github.com/signalapp/SparsePostQuantumRatchet.git?tag=v1.4.0#d310c99c57a046549be205b9ce50d80dcbe5f3e4" 6512dependencies = [ 6513 "cpufeatures 0.2.17", 6514 "curve25519-dalek", 6515 "displaydoc", 6516 "hax-lib", 6517 "hkdf", 6518 "libcrux-hmac", 6519 "libcrux-ml-kem", 6520 "log", 6521 "num_enum", 6522 "prost 0.14.3", 6523 "prost-build 0.14.3", 6524 "rand 0.9.2", 6525 "rand_core 0.9.5", 6526 "sha2", 6527 "sorted-vec", 6528 "thiserror 2.0.18", 6529] 6530 6531[[package]] 6532name = "sqlx" 6533version = "0.8.6" 6534source = "registry+https://github.com/rust-lang/crates.io-index" 6535checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc" 6536dependencies = [ 6537 "sqlx-core", 6538 "sqlx-macros", 6539 "sqlx-mysql", 6540 "sqlx-postgres", 6541 "sqlx-sqlite", 6542] 6543 6544[[package]] 6545name = "sqlx-core" 6546version = "0.8.6" 6547source = "registry+https://github.com/rust-lang/crates.io-index" 6548checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6" 6549dependencies = [ 6550 "base64 0.22.1", 6551 "bytes", 6552 "chrono", 6553 "crc", 6554 "crossbeam-queue", 6555 "either", 6556 "event-listener", 6557 "futures-core", 6558 "futures-intrusive", 6559 "futures-io", 6560 "futures-util", 6561 "hashbrown 0.15.5", 6562 "hashlink", 6563 "indexmap 2.13.0", 6564 "log", 6565 "memchr", 6566 "once_cell", 6567 "percent-encoding", 6568 "rustls 0.23.37", 6569 "serde", 6570 "serde_json", 6571 "sha2", 6572 "smallvec", 6573 "thiserror 2.0.18", 6574 "tokio", 6575 "tokio-stream", 6576 "tracing", 6577 "url", 6578 "uuid", 6579 "webpki-roots 0.26.11", 6580] 6581 6582[[package]] 6583name = "sqlx-macros" 6584version = "0.8.6" 6585source = "registry+https://github.com/rust-lang/crates.io-index" 6586checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d" 6587dependencies = [ 6588 "proc-macro2", 6589 "quote", 6590 "sqlx-core", 6591 "sqlx-macros-core", 6592 "syn 2.0.117", 6593] 6594 6595[[package]] 6596name = "sqlx-macros-core" 6597version = "0.8.6" 6598source = "registry+https://github.com/rust-lang/crates.io-index" 6599checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b" 6600dependencies = [ 6601 "dotenvy", 6602 "either", 6603 "heck 0.5.0", 6604 "hex", 6605 "once_cell", 6606 "proc-macro2", 6607 "quote", 6608 "serde", 6609 "serde_json", 6610 "sha2", 6611 "sqlx-core", 6612 "sqlx-mysql", 6613 "sqlx-postgres", 6614 "sqlx-sqlite", 6615 "syn 2.0.117", 6616 "tokio", 6617 "url", 6618] 6619 6620[[package]] 6621name = "sqlx-mysql" 6622version = "0.8.6" 6623source = "registry+https://github.com/rust-lang/crates.io-index" 6624checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526" 6625dependencies = [ 6626 "atoi", 6627 "base64 0.22.1", 6628 "bitflags", 6629 "byteorder", 6630 "bytes", 6631 "chrono", 6632 "crc", 6633 "digest", 6634 "dotenvy", 6635 "either", 6636 "futures-channel", 6637 "futures-core", 6638 "futures-io", 6639 "futures-util", 6640 "generic-array", 6641 "hex", 6642 "hkdf", 6643 "hmac", 6644 "itoa", 6645 "log", 6646 "md-5", 6647 "memchr", 6648 "once_cell", 6649 "percent-encoding", 6650 "rand 0.8.5", 6651 "rsa", 6652 "serde", 6653 "sha1", 6654 "sha2", 6655 "smallvec", 6656 "sqlx-core", 6657 "stringprep", 6658 "thiserror 2.0.18", 6659 "tracing", 6660 "uuid", 6661 "whoami", 6662] 6663 6664[[package]] 6665name = "sqlx-postgres" 6666version = "0.8.6" 6667source = "registry+https://github.com/rust-lang/crates.io-index" 6668checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46" 6669dependencies = [ 6670 "atoi", 6671 "base64 0.22.1", 6672 "bitflags", 6673 "byteorder", 6674 "chrono", 6675 "crc", 6676 "dotenvy", 6677 "etcetera 0.8.0", 6678 "futures-channel", 6679 "futures-core", 6680 "futures-util", 6681 "hex", 6682 "hkdf", 6683 "hmac", 6684 "home", 6685 "itoa", 6686 "log", 6687 "md-5", 6688 "memchr", 6689 "once_cell", 6690 "rand 0.8.5", 6691 "serde", 6692 "serde_json", 6693 "sha2", 6694 "smallvec", 6695 "sqlx-core", 6696 "stringprep", 6697 "thiserror 2.0.18", 6698 "tracing", 6699 "uuid", 6700 "whoami", 6701] 6702 6703[[package]] 6704name = "sqlx-sqlite" 6705version = "0.8.6" 6706source = "registry+https://github.com/rust-lang/crates.io-index" 6707checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea" 6708dependencies = [ 6709 "atoi", 6710 "chrono", 6711 "flume 0.11.1", 6712 "futures-channel", 6713 "futures-core", 6714 "futures-executor", 6715 "futures-intrusive", 6716 "futures-util", 6717 "libsqlite3-sys", 6718 "log", 6719 "percent-encoding", 6720 "serde", 6721 "serde_urlencoded", 6722 "sqlx-core", 6723 "thiserror 2.0.18", 6724 "tracing", 6725 "url", 6726 "uuid", 6727] 6728 6729[[package]] 6730name = "stable_deref_trait" 6731version = "1.2.1" 6732source = "registry+https://github.com/rust-lang/crates.io-index" 6733checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 6734 6735[[package]] 6736name = "static-regular-grammar" 6737version = "2.0.2" 6738source = "registry+https://github.com/rust-lang/crates.io-index" 6739checksum = "4f4a6c40247579acfbb138c3cd7de3dab113ab4ac6227f1b7de7d626ee667957" 6740dependencies = [ 6741 "abnf", 6742 "btree-range-map", 6743 "ciborium", 6744 "hex_fmt", 6745 "indoc", 6746 "proc-macro-error", 6747 "proc-macro2", 6748 "quote", 6749 "serde", 6750 "sha2", 6751 "syn 2.0.117", 6752 "thiserror 1.0.69", 6753] 6754 6755[[package]] 6756name = "static_assertions" 6757version = "1.1.0" 6758source = "registry+https://github.com/rust-lang/crates.io-index" 6759checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 6760 6761[[package]] 6762name = "stringprep" 6763version = "0.1.5" 6764source = "registry+https://github.com/rust-lang/crates.io-index" 6765checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" 6766dependencies = [ 6767 "unicode-bidi", 6768 "unicode-normalization", 6769 "unicode-properties", 6770] 6771 6772[[package]] 6773name = "strsim" 6774version = "0.11.1" 6775source = "registry+https://github.com/rust-lang/crates.io-index" 6776checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 6777 6778[[package]] 6779name = "structmeta" 6780version = "0.3.0" 6781source = "registry+https://github.com/rust-lang/crates.io-index" 6782checksum = "2e1575d8d40908d70f6fd05537266b90ae71b15dbbe7a8b7dffa2b759306d329" 6783dependencies = [ 6784 "proc-macro2", 6785 "quote", 6786 "structmeta-derive", 6787 "syn 2.0.117", 6788] 6789 6790[[package]] 6791name = "structmeta-derive" 6792version = "0.3.0" 6793source = "registry+https://github.com/rust-lang/crates.io-index" 6794checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc" 6795dependencies = [ 6796 "proc-macro2", 6797 "quote", 6798 "syn 2.0.117", 6799] 6800 6801[[package]] 6802name = "strum" 6803version = "0.27.2" 6804source = "registry+https://github.com/rust-lang/crates.io-index" 6805checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" 6806dependencies = [ 6807 "strum_macros", 6808] 6809 6810[[package]] 6811name = "strum_macros" 6812version = "0.27.2" 6813source = "registry+https://github.com/rust-lang/crates.io-index" 6814checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" 6815dependencies = [ 6816 "heck 0.5.0", 6817 "proc-macro2", 6818 "quote", 6819 "syn 2.0.117", 6820] 6821 6822[[package]] 6823name = "subtle" 6824version = "2.6.1" 6825source = "registry+https://github.com/rust-lang/crates.io-index" 6826checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 6827 6828[[package]] 6829name = "syn" 6830version = "1.0.109" 6831source = "registry+https://github.com/rust-lang/crates.io-index" 6832checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 6833dependencies = [ 6834 "proc-macro2", 6835 "unicode-ident", 6836] 6837 6838[[package]] 6839name = "syn" 6840version = "2.0.117" 6841source = "registry+https://github.com/rust-lang/crates.io-index" 6842checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" 6843dependencies = [ 6844 "proc-macro2", 6845 "quote", 6846 "unicode-ident", 6847] 6848 6849[[package]] 6850name = "sync_wrapper" 6851version = "1.0.2" 6852source = "registry+https://github.com/rust-lang/crates.io-index" 6853checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 6854dependencies = [ 6855 "futures-core", 6856] 6857 6858[[package]] 6859name = "synstructure" 6860version = "0.13.2" 6861source = "registry+https://github.com/rust-lang/crates.io-index" 6862checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 6863dependencies = [ 6864 "proc-macro2", 6865 "quote", 6866 "syn 2.0.117", 6867] 6868 6869[[package]] 6870name = "system-configuration" 6871version = "0.7.0" 6872source = "registry+https://github.com/rust-lang/crates.io-index" 6873checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" 6874dependencies = [ 6875 "bitflags", 6876 "core-foundation 0.9.4", 6877 "system-configuration-sys", 6878] 6879 6880[[package]] 6881name = "system-configuration-sys" 6882version = "0.6.0" 6883source = "registry+https://github.com/rust-lang/crates.io-index" 6884checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 6885dependencies = [ 6886 "core-foundation-sys", 6887 "libc", 6888] 6889 6890[[package]] 6891name = "tempfile" 6892version = "3.27.0" 6893source = "registry+https://github.com/rust-lang/crates.io-index" 6894checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" 6895dependencies = [ 6896 "fastrand", 6897 "getrandom 0.4.2", 6898 "once_cell", 6899 "rustix 1.1.4", 6900 "windows-sys 0.61.2", 6901] 6902 6903[[package]] 6904name = "testcontainers" 6905version = "0.26.3" 6906source = "registry+https://github.com/rust-lang/crates.io-index" 6907checksum = "a81ec0158db5fbb9831e09d1813fe5ea9023a2b5e6e8e0a5fe67e2a820733629" 6908dependencies = [ 6909 "astral-tokio-tar", 6910 "async-trait", 6911 "bollard", 6912 "bytes", 6913 "docker_credential", 6914 "either", 6915 "etcetera 0.11.0", 6916 "ferroid", 6917 "futures", 6918 "itertools", 6919 "log", 6920 "memchr", 6921 "parse-display", 6922 "pin-project-lite", 6923 "serde", 6924 "serde_json", 6925 "serde_with", 6926 "thiserror 2.0.18", 6927 "tokio", 6928 "tokio-stream", 6929 "tokio-util", 6930 "url", 6931] 6932 6933[[package]] 6934name = "testcontainers-modules" 6935version = "0.14.0" 6936source = "registry+https://github.com/rust-lang/crates.io-index" 6937checksum = "5e75e78ff453128a2c7da9a5d5a3325ea34ea214d4bf51eab3417de23a4e5147" 6938dependencies = [ 6939 "testcontainers", 6940] 6941 6942[[package]] 6943name = "thiserror" 6944version = "1.0.69" 6945source = "registry+https://github.com/rust-lang/crates.io-index" 6946checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 6947dependencies = [ 6948 "thiserror-impl 1.0.69", 6949] 6950 6951[[package]] 6952name = "thiserror" 6953version = "2.0.18" 6954source = "registry+https://github.com/rust-lang/crates.io-index" 6955checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" 6956dependencies = [ 6957 "thiserror-impl 2.0.18", 6958] 6959 6960[[package]] 6961name = "thiserror-impl" 6962version = "1.0.69" 6963source = "registry+https://github.com/rust-lang/crates.io-index" 6964checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 6965dependencies = [ 6966 "proc-macro2", 6967 "quote", 6968 "syn 2.0.117", 6969] 6970 6971[[package]] 6972name = "thiserror-impl" 6973version = "2.0.18" 6974source = "registry+https://github.com/rust-lang/crates.io-index" 6975checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" 6976dependencies = [ 6977 "proc-macro2", 6978 "quote", 6979 "syn 2.0.117", 6980] 6981 6982[[package]] 6983name = "thread_local" 6984version = "1.1.9" 6985source = "registry+https://github.com/rust-lang/crates.io-index" 6986checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 6987dependencies = [ 6988 "cfg-if", 6989] 6990 6991[[package]] 6992name = "tikv-jemalloc-sys" 6993version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" 6994source = "registry+https://github.com/rust-lang/crates.io-index" 6995checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b" 6996dependencies = [ 6997 "cc", 6998 "libc", 6999] 7000 7001[[package]] 7002name = "tikv-jemallocator" 7003version = "0.6.1" 7004source = "registry+https://github.com/rust-lang/crates.io-index" 7005checksum = "0359b4327f954e0567e69fb191cf1436617748813819c94b8cd4a431422d053a" 7006dependencies = [ 7007 "libc", 7008 "tikv-jemalloc-sys", 7009] 7010 7011[[package]] 7012name = "time" 7013version = "0.3.47" 7014source = "registry+https://github.com/rust-lang/crates.io-index" 7015checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" 7016dependencies = [ 7017 "deranged", 7018 "itoa", 7019 "num-conv", 7020 "powerfmt", 7021 "serde_core", 7022 "time-core", 7023 "time-macros", 7024] 7025 7026[[package]] 7027name = "time-core" 7028version = "0.1.8" 7029source = "registry+https://github.com/rust-lang/crates.io-index" 7030checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" 7031 7032[[package]] 7033name = "time-macros" 7034version = "0.2.27" 7035source = "registry+https://github.com/rust-lang/crates.io-index" 7036checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" 7037dependencies = [ 7038 "num-conv", 7039 "time-core", 7040] 7041 7042[[package]] 7043name = "tinystr" 7044version = "0.8.2" 7045source = "registry+https://github.com/rust-lang/crates.io-index" 7046checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" 7047dependencies = [ 7048 "displaydoc", 7049 "zerovec", 7050] 7051 7052[[package]] 7053name = "tinyvec" 7054version = "1.11.0" 7055source = "registry+https://github.com/rust-lang/crates.io-index" 7056checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" 7057dependencies = [ 7058 "tinyvec_macros", 7059] 7060 7061[[package]] 7062name = "tinyvec_macros" 7063version = "0.1.1" 7064source = "registry+https://github.com/rust-lang/crates.io-index" 7065checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 7066 7067[[package]] 7068name = "tokio" 7069version = "1.50.0" 7070source = "registry+https://github.com/rust-lang/crates.io-index" 7071checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" 7072dependencies = [ 7073 "bytes", 7074 "libc", 7075 "mio", 7076 "pin-project-lite", 7077 "signal-hook-registry", 7078 "socket2 0.6.3", 7079 "tokio-macros", 7080 "windows-sys 0.61.2", 7081] 7082 7083[[package]] 7084name = "tokio-macros" 7085version = "2.6.1" 7086source = "registry+https://github.com/rust-lang/crates.io-index" 7087checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c" 7088dependencies = [ 7089 "proc-macro2", 7090 "quote", 7091 "syn 2.0.117", 7092] 7093 7094[[package]] 7095name = "tokio-rustls" 7096version = "0.24.1" 7097source = "registry+https://github.com/rust-lang/crates.io-index" 7098checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 7099dependencies = [ 7100 "rustls 0.21.12", 7101 "tokio", 7102] 7103 7104[[package]] 7105name = "tokio-rustls" 7106version = "0.26.4" 7107source = "registry+https://github.com/rust-lang/crates.io-index" 7108checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 7109dependencies = [ 7110 "rustls 0.23.37", 7111 "tokio", 7112] 7113 7114[[package]] 7115name = "tokio-stream" 7116version = "0.1.18" 7117source = "registry+https://github.com/rust-lang/crates.io-index" 7118checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" 7119dependencies = [ 7120 "futures-core", 7121 "pin-project-lite", 7122 "tokio", 7123] 7124 7125[[package]] 7126name = "tokio-tungstenite" 7127version = "0.28.0" 7128source = "registry+https://github.com/rust-lang/crates.io-index" 7129checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857" 7130dependencies = [ 7131 "futures-util", 7132 "log", 7133 "rustls 0.23.37", 7134 "rustls-pki-types", 7135 "tokio", 7136 "tokio-rustls 0.26.4", 7137 "tungstenite 0.28.0", 7138 "webpki-roots 0.26.11", 7139] 7140 7141[[package]] 7142name = "tokio-util" 7143version = "0.7.18" 7144source = "registry+https://github.com/rust-lang/crates.io-index" 7145checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" 7146dependencies = [ 7147 "bytes", 7148 "futures-core", 7149 "futures-io", 7150 "futures-sink", 7151 "futures-util", 7152 "pin-project-lite", 7153 "tokio", 7154] 7155 7156[[package]] 7157name = "toml" 7158version = "0.8.23" 7159source = "registry+https://github.com/rust-lang/crates.io-index" 7160checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" 7161dependencies = [ 7162 "serde", 7163 "serde_spanned 0.6.9", 7164 "toml_datetime 0.6.11", 7165 "toml_edit 0.22.27", 7166] 7167 7168[[package]] 7169name = "toml" 7170version = "0.9.12+spec-1.1.0" 7171source = "registry+https://github.com/rust-lang/crates.io-index" 7172checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" 7173dependencies = [ 7174 "indexmap 2.13.0", 7175 "serde_core", 7176 "serde_spanned 1.0.4", 7177 "toml_datetime 0.7.5+spec-1.1.0", 7178 "toml_parser", 7179 "toml_writer", 7180 "winnow 0.7.15", 7181] 7182 7183[[package]] 7184name = "toml_datetime" 7185version = "0.6.11" 7186source = "registry+https://github.com/rust-lang/crates.io-index" 7187checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" 7188dependencies = [ 7189 "serde", 7190] 7191 7192[[package]] 7193name = "toml_datetime" 7194version = "0.7.5+spec-1.1.0" 7195source = "registry+https://github.com/rust-lang/crates.io-index" 7196checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" 7197dependencies = [ 7198 "serde_core", 7199] 7200 7201[[package]] 7202name = "toml_datetime" 7203version = "1.0.1+spec-1.1.0" 7204source = "registry+https://github.com/rust-lang/crates.io-index" 7205checksum = "9b320e741db58cac564e26c607d3cc1fdc4a88fd36c879568c07856ed83ff3e9" 7206dependencies = [ 7207 "serde_core", 7208] 7209 7210[[package]] 7211name = "toml_edit" 7212version = "0.22.27" 7213source = "registry+https://github.com/rust-lang/crates.io-index" 7214checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" 7215dependencies = [ 7216 "indexmap 2.13.0", 7217 "serde", 7218 "serde_spanned 0.6.9", 7219 "toml_datetime 0.6.11", 7220 "toml_write", 7221 "winnow 0.7.15", 7222] 7223 7224[[package]] 7225name = "toml_edit" 7226version = "0.25.5+spec-1.1.0" 7227source = "registry+https://github.com/rust-lang/crates.io-index" 7228checksum = "8ca1a40644a28bce036923f6a431df0b34236949d111cc07cb6dca830c9ef2e1" 7229dependencies = [ 7230 "indexmap 2.13.0", 7231 "toml_datetime 1.0.1+spec-1.1.0", 7232 "toml_parser", 7233 "winnow 1.0.0", 7234] 7235 7236[[package]] 7237name = "toml_parser" 7238version = "1.0.10+spec-1.1.0" 7239source = "registry+https://github.com/rust-lang/crates.io-index" 7240checksum = "7df25b4befd31c4816df190124375d5a20c6b6921e2cad937316de3fccd63420" 7241dependencies = [ 7242 "winnow 1.0.0", 7243] 7244 7245[[package]] 7246name = "toml_write" 7247version = "0.1.2" 7248source = "registry+https://github.com/rust-lang/crates.io-index" 7249checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" 7250 7251[[package]] 7252name = "toml_writer" 7253version = "1.0.7+spec-1.1.0" 7254source = "registry+https://github.com/rust-lang/crates.io-index" 7255checksum = "f17aaa1c6e3dc22b1da4b6bba97d066e354c7945cac2f7852d4e4e7ca7a6b56d" 7256 7257[[package]] 7258name = "tonic" 7259version = "0.14.5" 7260source = "registry+https://github.com/rust-lang/crates.io-index" 7261checksum = "fec7c61a0695dc1887c1b53952990f3ad2e3a31453e1f49f10e75424943a93ec" 7262dependencies = [ 7263 "async-trait", 7264 "axum", 7265 "base64 0.22.1", 7266 "bytes", 7267 "h2 0.4.13", 7268 "http 1.4.0", 7269 "http-body 1.0.1", 7270 "http-body-util", 7271 "hyper 1.8.1", 7272 "hyper-timeout", 7273 "hyper-util", 7274 "percent-encoding", 7275 "pin-project", 7276 "socket2 0.6.3", 7277 "sync_wrapper", 7278 "tokio", 7279 "tokio-stream", 7280 "tower", 7281 "tower-layer", 7282 "tower-service", 7283 "tracing", 7284] 7285 7286[[package]] 7287name = "tonic-prost" 7288version = "0.14.5" 7289source = "registry+https://github.com/rust-lang/crates.io-index" 7290checksum = "a55376a0bbaa4975a3f10d009ad763d8f4108f067c7c2e74f3001fb49778d309" 7291dependencies = [ 7292 "bytes", 7293 "prost 0.14.3", 7294 "tonic", 7295] 7296 7297[[package]] 7298name = "totp-rs" 7299version = "5.7.1" 7300source = "registry+https://github.com/rust-lang/crates.io-index" 7301checksum = "a2b36a9dd327e9f401320a2cb4572cc76ff43742bcfc3291f871691050f140ba" 7302dependencies = [ 7303 "base32", 7304 "constant_time_eq", 7305 "hmac", 7306 "qrcodegen-image", 7307 "sha1", 7308 "sha2", 7309 "url", 7310 "urlencoding", 7311] 7312 7313[[package]] 7314name = "tower" 7315version = "0.5.3" 7316source = "registry+https://github.com/rust-lang/crates.io-index" 7317checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" 7318dependencies = [ 7319 "futures-core", 7320 "futures-util", 7321 "indexmap 2.13.0", 7322 "pin-project-lite", 7323 "slab", 7324 "sync_wrapper", 7325 "tokio", 7326 "tokio-util", 7327 "tower-layer", 7328 "tower-service", 7329 "tracing", 7330] 7331 7332[[package]] 7333name = "tower-http" 7334version = "0.6.8" 7335source = "registry+https://github.com/rust-lang/crates.io-index" 7336checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" 7337dependencies = [ 7338 "async-compression", 7339 "bitflags", 7340 "bytes", 7341 "futures-core", 7342 "futures-util", 7343 "http 1.4.0", 7344 "http-body 1.0.1", 7345 "http-body-util", 7346 "http-range-header", 7347 "httpdate", 7348 "iri-string", 7349 "mime", 7350 "mime_guess", 7351 "percent-encoding", 7352 "pin-project-lite", 7353 "tokio", 7354 "tokio-util", 7355 "tower", 7356 "tower-layer", 7357 "tower-service", 7358 "tracing", 7359] 7360 7361[[package]] 7362name = "tower-layer" 7363version = "0.3.3" 7364source = "registry+https://github.com/rust-lang/crates.io-index" 7365checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 7366 7367[[package]] 7368name = "tower-service" 7369version = "0.3.3" 7370source = "registry+https://github.com/rust-lang/crates.io-index" 7371checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 7372 7373[[package]] 7374name = "tracing" 7375version = "0.1.44" 7376source = "registry+https://github.com/rust-lang/crates.io-index" 7377checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 7378dependencies = [ 7379 "log", 7380 "pin-project-lite", 7381 "tracing-attributes", 7382 "tracing-core", 7383] 7384 7385[[package]] 7386name = "tracing-attributes" 7387version = "0.1.31" 7388source = "registry+https://github.com/rust-lang/crates.io-index" 7389checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 7390dependencies = [ 7391 "proc-macro2", 7392 "quote", 7393 "syn 2.0.117", 7394] 7395 7396[[package]] 7397name = "tracing-core" 7398version = "0.1.36" 7399source = "registry+https://github.com/rust-lang/crates.io-index" 7400checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 7401dependencies = [ 7402 "once_cell", 7403 "valuable", 7404] 7405 7406[[package]] 7407name = "tracing-futures" 7408version = "0.2.5" 7409source = "registry+https://github.com/rust-lang/crates.io-index" 7410checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" 7411dependencies = [ 7412 "pin-project", 7413 "tracing", 7414] 7415 7416[[package]] 7417name = "tracing-log" 7418version = "0.2.0" 7419source = "registry+https://github.com/rust-lang/crates.io-index" 7420checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 7421dependencies = [ 7422 "log", 7423 "once_cell", 7424 "tracing-core", 7425] 7426 7427[[package]] 7428name = "tracing-subscriber" 7429version = "0.3.23" 7430source = "registry+https://github.com/rust-lang/crates.io-index" 7431checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319" 7432dependencies = [ 7433 "matchers", 7434 "nu-ansi-term", 7435 "once_cell", 7436 "regex-automata", 7437 "sharded-slab", 7438 "smallvec", 7439 "thread_local", 7440 "tracing", 7441 "tracing-core", 7442 "tracing-log", 7443] 7444 7445[[package]] 7446name = "trait-variant" 7447version = "0.1.2" 7448source = "registry+https://github.com/rust-lang/crates.io-index" 7449checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" 7450dependencies = [ 7451 "proc-macro2", 7452 "quote", 7453 "syn 2.0.117", 7454] 7455 7456[[package]] 7457name = "tranquil-api" 7458version = "0.5.7" 7459dependencies = [ 7460 "anyhow", 7461 "axum", 7462 "backon", 7463 "base32", 7464 "base64 0.22.1", 7465 "bcrypt", 7466 "bs58", 7467 "bytes", 7468 "chrono", 7469 "cid", 7470 "ed25519-dalek", 7471 "futures", 7472 "hex", 7473 "http 1.4.0", 7474 "image", 7475 "infer", 7476 "ipld-core", 7477 "jacquard-common", 7478 "jacquard-repo", 7479 "k256", 7480 "multibase", 7481 "multihash", 7482 "qrcodegen", 7483 "rand 0.8.5", 7484 "reqwest", 7485 "serde", 7486 "serde_ipld_dagcbor", 7487 "serde_json", 7488 "sha2", 7489 "subtle", 7490 "thiserror 2.0.18", 7491 "tokio", 7492 "tracing", 7493 "tranquil-config", 7494 "tranquil-db", 7495 "tranquil-db-traits", 7496 "tranquil-lexicon", 7497 "tranquil-pds", 7498 "tranquil-scopes", 7499 "tranquil-signal", 7500 "tranquil-types", 7501 "urlencoding", 7502 "uuid", 7503 "webauthn-rs", 7504 "zip", 7505] 7506 7507[[package]] 7508name = "tranquil-auth" 7509version = "0.5.7" 7510dependencies = [ 7511 "anyhow", 7512 "base32", 7513 "base64 0.22.1", 7514 "bcrypt", 7515 "chrono", 7516 "hmac", 7517 "k256", 7518 "rand 0.8.5", 7519 "serde", 7520 "serde_json", 7521 "sha2", 7522 "subtle", 7523 "totp-rs", 7524 "tranquil-config", 7525 "tranquil-crypto", 7526 "urlencoding", 7527 "uuid", 7528] 7529 7530[[package]] 7531name = "tranquil-cache" 7532version = "0.5.7" 7533dependencies = [ 7534 "async-trait", 7535 "base64 0.22.1", 7536 "redis", 7537 "tokio-util", 7538 "tracing", 7539 "tranquil-config", 7540 "tranquil-infra", 7541 "tranquil-ripple", 7542] 7543 7544[[package]] 7545name = "tranquil-comms" 7546version = "0.5.7" 7547dependencies = [ 7548 "async-trait", 7549 "base64 0.22.1", 7550 "reqwest", 7551 "serde_json", 7552 "sqlx", 7553 "thiserror 2.0.18", 7554 "tokio", 7555 "tracing", 7556 "tranquil-config", 7557 "tranquil-db-traits", 7558 "tranquil-signal", 7559 "uuid", 7560] 7561 7562[[package]] 7563name = "tranquil-config" 7564version = "0.5.7" 7565dependencies = [ 7566 "confique", 7567 "serde", 7568] 7569 7570[[package]] 7571name = "tranquil-crypto" 7572version = "0.5.7" 7573dependencies = [ 7574 "aes-gcm", 7575 "base64 0.22.1", 7576 "hkdf", 7577 "hmac", 7578 "p256 0.13.2", 7579 "rand 0.8.5", 7580 "serde", 7581 "sha2", 7582 "subtle", 7583 "thiserror 2.0.18", 7584] 7585 7586[[package]] 7587name = "tranquil-db" 7588version = "0.5.7" 7589dependencies = [ 7590 "async-trait", 7591 "chrono", 7592 "rand 0.8.5", 7593 "serde", 7594 "serde_json", 7595 "sqlx", 7596 "tracing", 7597 "tranquil-db-traits", 7598 "tranquil-oauth", 7599 "tranquil-types", 7600 "uuid", 7601] 7602 7603[[package]] 7604name = "tranquil-db-traits" 7605version = "0.5.7" 7606dependencies = [ 7607 "async-trait", 7608 "base64 0.22.1", 7609 "chrono", 7610 "serde", 7611 "serde_json", 7612 "sqlx", 7613 "thiserror 2.0.18", 7614 "tranquil-oauth", 7615 "tranquil-types", 7616 "uuid", 7617] 7618 7619[[package]] 7620name = "tranquil-infra" 7621version = "0.5.7" 7622dependencies = [ 7623 "async-trait", 7624 "bytes", 7625 "futures", 7626 "thiserror 2.0.18", 7627 "tranquil-config", 7628] 7629 7630[[package]] 7631name = "tranquil-lexicon" 7632version = "0.5.7" 7633dependencies = [ 7634 "chrono", 7635 "futures", 7636 "hickory-resolver", 7637 "parking_lot", 7638 "reqwest", 7639 "serde", 7640 "serde_json", 7641 "thiserror 2.0.18", 7642 "tokio", 7643 "tracing", 7644 "unicode-segmentation", 7645 "urlencoding", 7646 "wiremock", 7647] 7648 7649[[package]] 7650name = "tranquil-oauth" 7651version = "0.5.7" 7652dependencies = [ 7653 "anyhow", 7654 "axum", 7655 "base64 0.22.1", 7656 "chrono", 7657 "ed25519-dalek", 7658 "p256 0.13.2", 7659 "p384", 7660 "rand 0.8.5", 7661 "reqwest", 7662 "serde", 7663 "serde_json", 7664 "sha2", 7665 "sqlx", 7666 "tokio", 7667 "tracing", 7668 "tranquil-types", 7669 "uuid", 7670] 7671 7672[[package]] 7673name = "tranquil-oauth-server" 7674version = "0.5.7" 7675dependencies = [ 7676 "axum", 7677 "base64 0.22.1", 7678 "bcrypt", 7679 "chrono", 7680 "cid", 7681 "hmac", 7682 "http 1.4.0", 7683 "jacquard-common", 7684 "jacquard-repo", 7685 "k256", 7686 "rand 0.8.5", 7687 "serde", 7688 "serde_json", 7689 "serde_urlencoded", 7690 "sha2", 7691 "subtle", 7692 "tokio", 7693 "tracing", 7694 "tranquil-api", 7695 "tranquil-config", 7696 "tranquil-crypto", 7697 "tranquil-db-traits", 7698 "tranquil-pds", 7699 "tranquil-types", 7700 "urlencoding", 7701 "uuid", 7702 "webauthn-rs", 7703] 7704 7705[[package]] 7706name = "tranquil-pds" 7707version = "0.5.7" 7708dependencies = [ 7709 "aes-gcm", 7710 "anyhow", 7711 "async-trait", 7712 "aws-config", 7713 "aws-sdk-s3", 7714 "axum", 7715 "backon", 7716 "base32", 7717 "base64 0.22.1", 7718 "bcrypt", 7719 "bs58", 7720 "bytes", 7721 "chrono", 7722 "ciborium", 7723 "cid", 7724 "ctor", 7725 "ed25519-dalek", 7726 "futures", 7727 "futures-util", 7728 "governor", 7729 "hex", 7730 "hickory-resolver", 7731 "hkdf", 7732 "hmac", 7733 "http 1.4.0", 7734 "image", 7735 "infer", 7736 "ipld-core", 7737 "iroh-car", 7738 "jacquard-common", 7739 "jacquard-repo", 7740 "jsonwebtoken", 7741 "k256", 7742 "metrics", 7743 "metrics-exporter-prometheus", 7744 "multibase", 7745 "multihash", 7746 "p256 0.13.2", 7747 "rand 0.8.5", 7748 "redis", 7749 "regex", 7750 "reqwest", 7751 "serde", 7752 "serde_bytes", 7753 "serde_ipld_dagcbor", 7754 "serde_json", 7755 "serde_urlencoded", 7756 "sha2", 7757 "sqlx", 7758 "subtle", 7759 "testcontainers", 7760 "testcontainers-modules", 7761 "thiserror 2.0.18", 7762 "tokio", 7763 "tokio-tungstenite", 7764 "tokio-util", 7765 "tower", 7766 "tower-http", 7767 "tower-layer", 7768 "tracing", 7769 "tracing-subscriber", 7770 "tranquil-api", 7771 "tranquil-auth", 7772 "tranquil-cache", 7773 "tranquil-comms", 7774 "tranquil-config", 7775 "tranquil-crypto", 7776 "tranquil-db", 7777 "tranquil-db-traits", 7778 "tranquil-lexicon", 7779 "tranquil-oauth", 7780 "tranquil-oauth-server", 7781 "tranquil-repo", 7782 "tranquil-ripple", 7783 "tranquil-scopes", 7784 "tranquil-signal", 7785 "tranquil-storage", 7786 "tranquil-store", 7787 "tranquil-sync", 7788 "tranquil-types", 7789 "urlencoding", 7790 "uuid", 7791 "webauthn-rs", 7792 "webauthn-rs-proto", 7793 "wiremock", 7794 "zip", 7795] 7796 7797[[package]] 7798name = "tranquil-repo" 7799version = "0.5.7" 7800dependencies = [ 7801 "bytes", 7802 "cid", 7803 "jacquard-repo", 7804 "multihash", 7805 "sha2", 7806 "sqlx", 7807] 7808 7809[[package]] 7810name = "tranquil-ripple" 7811version = "0.5.7" 7812dependencies = [ 7813 "async-trait", 7814 "backon", 7815 "bincode 2.0.1", 7816 "bytes", 7817 "foca", 7818 "futures", 7819 "metrics", 7820 "parking_lot", 7821 "rand 0.9.2", 7822 "serde", 7823 "socket2 0.6.3", 7824 "thiserror 2.0.18", 7825 "tokio", 7826 "tokio-util", 7827 "tracing", 7828 "tracing-subscriber", 7829 "tranquil-config", 7830 "tranquil-infra", 7831 "uuid", 7832] 7833 7834[[package]] 7835name = "tranquil-scopes" 7836version = "0.5.7" 7837dependencies = [ 7838 "axum", 7839 "futures", 7840 "hickory-resolver", 7841 "reqwest", 7842 "serde", 7843 "serde_json", 7844 "thiserror 2.0.18", 7845 "tokio", 7846 "tracing", 7847 "urlencoding", 7848] 7849 7850[[package]] 7851name = "tranquil-server" 7852version = "0.5.7" 7853dependencies = [ 7854 "axum", 7855 "clap", 7856 "dotenvy", 7857 "ed25519-dalek", 7858 "hex", 7859 "tokio", 7860 "tokio-util", 7861 "tracing", 7862 "tracing-subscriber", 7863 "tranquil-api", 7864 "tranquil-config", 7865 "tranquil-oauth-server", 7866 "tranquil-pds", 7867 "tranquil-signal", 7868 "tranquil-sync", 7869] 7870 7871[[package]] 7872name = "tranquil-signal" 7873version = "0.5.7" 7874dependencies = [ 7875 "async-trait", 7876 "chrono", 7877 "fjall", 7878 "futures", 7879 "presage", 7880 "rand 0.9.2", 7881 "serde", 7882 "serde_json", 7883 "sqlx", 7884 "tempfile", 7885 "thiserror 2.0.18", 7886 "tokio", 7887 "tokio-util", 7888 "tracing", 7889 "tranquil-signal", 7890 "url", 7891 "uuid", 7892] 7893 7894[[package]] 7895name = "tranquil-storage" 7896version = "0.5.7" 7897dependencies = [ 7898 "async-trait", 7899 "aws-config", 7900 "aws-sdk-s3", 7901 "bytes", 7902 "futures", 7903 "sha2", 7904 "tokio", 7905 "tracing", 7906 "tranquil-config", 7907 "tranquil-infra", 7908 "uuid", 7909] 7910 7911[[package]] 7912name = "tranquil-store" 7913version = "0.5.7" 7914dependencies = [ 7915 "async-trait", 7916 "bytes", 7917 "chrono", 7918 "cid", 7919 "clap", 7920 "dashmap", 7921 "fjall", 7922 "flume 0.11.1", 7923 "futures", 7924 "jacquard-common", 7925 "jacquard-repo", 7926 "k256", 7927 "libc", 7928 "lsm-tree", 7929 "memmap2", 7930 "multihash", 7931 "parking_lot", 7932 "postcard", 7933 "proptest", 7934 "rand 0.8.5", 7935 "rayon", 7936 "serde", 7937 "serde_ipld_dagcbor", 7938 "serde_json", 7939 "sha2", 7940 "siphasher", 7941 "smallvec", 7942 "sqlx", 7943 "tempfile", 7944 "thiserror 2.0.18", 7945 "tikv-jemallocator", 7946 "tokio", 7947 "toml 0.8.23", 7948 "tracing", 7949 "tracing-subscriber", 7950 "tranquil-db", 7951 "tranquil-db-traits", 7952 "tranquil-oauth", 7953 "tranquil-repo", 7954 "tranquil-store", 7955 "tranquil-types", 7956 "uuid", 7957 "xxhash-rust", 7958] 7959 7960[[package]] 7961name = "tranquil-sync" 7962version = "0.5.7" 7963dependencies = [ 7964 "anyhow", 7965 "axum", 7966 "bytes", 7967 "chrono", 7968 "cid", 7969 "futures", 7970 "ipld-core", 7971 "jacquard-repo", 7972 "serde", 7973 "serde_ipld_dagcbor", 7974 "tokio", 7975 "tracing", 7976 "tranquil-config", 7977 "tranquil-db-traits", 7978 "tranquil-pds", 7979 "tranquil-types", 7980] 7981 7982[[package]] 7983name = "tranquil-types" 7984version = "0.5.7" 7985dependencies = [ 7986 "chrono", 7987 "cid", 7988 "jacquard-common", 7989 "serde", 7990 "serde_json", 7991 "sqlx", 7992 "thiserror 2.0.18", 7993] 7994 7995[[package]] 7996name = "try-lock" 7997version = "0.2.5" 7998source = "registry+https://github.com/rust-lang/crates.io-index" 7999checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 8000 8001[[package]] 8002name = "tungstenite" 8003version = "0.24.0" 8004source = "registry+https://github.com/rust-lang/crates.io-index" 8005checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" 8006dependencies = [ 8007 "byteorder", 8008 "bytes", 8009 "data-encoding", 8010 "http 1.4.0", 8011 "httparse", 8012 "log", 8013 "rand 0.8.5", 8014 "sha1", 8015 "thiserror 1.0.69", 8016 "utf-8", 8017] 8018 8019[[package]] 8020name = "tungstenite" 8021version = "0.28.0" 8022source = "registry+https://github.com/rust-lang/crates.io-index" 8023checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442" 8024dependencies = [ 8025 "bytes", 8026 "data-encoding", 8027 "http 1.4.0", 8028 "httparse", 8029 "log", 8030 "rand 0.9.2", 8031 "rustls 0.23.37", 8032 "rustls-pki-types", 8033 "sha1", 8034 "thiserror 2.0.18", 8035 "utf-8", 8036] 8037 8038[[package]] 8039name = "twox-hash" 8040version = "2.1.2" 8041source = "registry+https://github.com/rust-lang/crates.io-index" 8042checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c" 8043 8044[[package]] 8045name = "typed-path" 8046version = "0.12.3" 8047source = "registry+https://github.com/rust-lang/crates.io-index" 8048checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e" 8049 8050[[package]] 8051name = "typenum" 8052version = "1.19.0" 8053source = "registry+https://github.com/rust-lang/crates.io-index" 8054checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 8055 8056[[package]] 8057name = "unarray" 8058version = "0.1.4" 8059source = "registry+https://github.com/rust-lang/crates.io-index" 8060checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" 8061 8062[[package]] 8063name = "unicase" 8064version = "2.9.0" 8065source = "registry+https://github.com/rust-lang/crates.io-index" 8066checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142" 8067 8068[[package]] 8069name = "unicode-bidi" 8070version = "0.3.18" 8071source = "registry+https://github.com/rust-lang/crates.io-index" 8072checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" 8073 8074[[package]] 8075name = "unicode-ident" 8076version = "1.0.24" 8077source = "registry+https://github.com/rust-lang/crates.io-index" 8078checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" 8079 8080[[package]] 8081name = "unicode-normalization" 8082version = "0.1.25" 8083source = "registry+https://github.com/rust-lang/crates.io-index" 8084checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" 8085dependencies = [ 8086 "tinyvec", 8087] 8088 8089[[package]] 8090name = "unicode-properties" 8091version = "0.1.4" 8092source = "registry+https://github.com/rust-lang/crates.io-index" 8093checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d" 8094 8095[[package]] 8096name = "unicode-segmentation" 8097version = "1.12.0" 8098source = "registry+https://github.com/rust-lang/crates.io-index" 8099checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 8100 8101[[package]] 8102name = "unicode-width" 8103version = "0.1.14" 8104source = "registry+https://github.com/rust-lang/crates.io-index" 8105checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 8106 8107[[package]] 8108name = "unicode-xid" 8109version = "0.2.6" 8110source = "registry+https://github.com/rust-lang/crates.io-index" 8111checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 8112 8113[[package]] 8114name = "universal-hash" 8115version = "0.5.1" 8116source = "registry+https://github.com/rust-lang/crates.io-index" 8117checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 8118dependencies = [ 8119 "crypto-common", 8120 "subtle", 8121] 8122 8123[[package]] 8124name = "unsigned-varint" 8125version = "0.7.2" 8126source = "registry+https://github.com/rust-lang/crates.io-index" 8127checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105" 8128 8129[[package]] 8130name = "unsigned-varint" 8131version = "0.8.0" 8132source = "registry+https://github.com/rust-lang/crates.io-index" 8133checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 8134 8135[[package]] 8136name = "untrusted" 8137version = "0.9.0" 8138source = "registry+https://github.com/rust-lang/crates.io-index" 8139checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 8140 8141[[package]] 8142name = "unty" 8143version = "0.0.4" 8144source = "registry+https://github.com/rust-lang/crates.io-index" 8145checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae" 8146 8147[[package]] 8148name = "ureq" 8149version = "3.3.0" 8150source = "registry+https://github.com/rust-lang/crates.io-index" 8151checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0" 8152dependencies = [ 8153 "base64 0.22.1", 8154 "log", 8155 "percent-encoding", 8156 "rustls 0.23.37", 8157 "rustls-pki-types", 8158 "ureq-proto", 8159 "utf8-zero", 8160] 8161 8162[[package]] 8163name = "ureq-proto" 8164version = "0.6.0" 8165source = "registry+https://github.com/rust-lang/crates.io-index" 8166checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c" 8167dependencies = [ 8168 "base64 0.22.1", 8169 "http 1.4.0", 8170 "httparse", 8171 "log", 8172] 8173 8174[[package]] 8175name = "url" 8176version = "2.5.8" 8177source = "registry+https://github.com/rust-lang/crates.io-index" 8178checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" 8179dependencies = [ 8180 "form_urlencoded", 8181 "idna", 8182 "percent-encoding", 8183 "serde", 8184 "serde_derive", 8185] 8186 8187[[package]] 8188name = "urlencoding" 8189version = "2.1.3" 8190source = "registry+https://github.com/rust-lang/crates.io-index" 8191checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 8192 8193[[package]] 8194name = "usernames" 8195version = "0.1.0" 8196source = "git+https://github.com/signalapp/libsignal?tag=v0.87.4#38514bdc8acaaffbccd5c96515c68deb2019abe0" 8197dependencies = [ 8198 "curve25519-dalek", 8199 "displaydoc", 8200 "hkdf", 8201 "hmac", 8202 "log", 8203 "poksho", 8204 "prost 0.14.3", 8205 "prost-build 0.14.3", 8206 "rand 0.9.2", 8207 "sha2", 8208 "signal-crypto", 8209 "subtle", 8210 "thiserror 2.0.18", 8211] 8212 8213[[package]] 8214name = "utf-8" 8215version = "0.7.6" 8216source = "registry+https://github.com/rust-lang/crates.io-index" 8217checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 8218 8219[[package]] 8220name = "utf8-zero" 8221version = "0.8.1" 8222source = "registry+https://github.com/rust-lang/crates.io-index" 8223checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e" 8224 8225[[package]] 8226name = "utf8_iter" 8227version = "1.0.4" 8228source = "registry+https://github.com/rust-lang/crates.io-index" 8229checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 8230 8231[[package]] 8232name = "utf8parse" 8233version = "0.2.2" 8234source = "registry+https://github.com/rust-lang/crates.io-index" 8235checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 8236 8237[[package]] 8238name = "uuid" 8239version = "1.22.0" 8240source = "registry+https://github.com/rust-lang/crates.io-index" 8241checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37" 8242dependencies = [ 8243 "getrandom 0.4.2", 8244 "js-sys", 8245 "rand 0.10.0", 8246 "serde_core", 8247 "sha1_smol", 8248 "wasm-bindgen", 8249] 8250 8251[[package]] 8252name = "valuable" 8253version = "0.1.1" 8254source = "registry+https://github.com/rust-lang/crates.io-index" 8255checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 8256 8257[[package]] 8258name = "varint-rs" 8259version = "2.2.0" 8260source = "registry+https://github.com/rust-lang/crates.io-index" 8261checksum = "8f54a172d0620933a27a4360d3db3e2ae0dd6cceae9730751a036bbf182c4b23" 8262 8263[[package]] 8264name = "vcpkg" 8265version = "0.2.15" 8266source = "registry+https://github.com/rust-lang/crates.io-index" 8267checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 8268 8269[[package]] 8270name = "version_check" 8271version = "0.9.5" 8272source = "registry+https://github.com/rust-lang/crates.io-index" 8273checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 8274 8275[[package]] 8276name = "virtue" 8277version = "0.0.18" 8278source = "registry+https://github.com/rust-lang/crates.io-index" 8279checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1" 8280 8281[[package]] 8282name = "vsimd" 8283version = "0.8.0" 8284source = "registry+https://github.com/rust-lang/crates.io-index" 8285checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64" 8286 8287[[package]] 8288name = "wait-timeout" 8289version = "0.2.1" 8290source = "registry+https://github.com/rust-lang/crates.io-index" 8291checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11" 8292dependencies = [ 8293 "libc", 8294] 8295 8296[[package]] 8297name = "want" 8298version = "0.3.1" 8299source = "registry+https://github.com/rust-lang/crates.io-index" 8300checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 8301dependencies = [ 8302 "try-lock", 8303] 8304 8305[[package]] 8306name = "wasi" 8307version = "0.11.1+wasi-snapshot-preview1" 8308source = "registry+https://github.com/rust-lang/crates.io-index" 8309checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 8310 8311[[package]] 8312name = "wasip2" 8313version = "1.0.2+wasi-0.2.9" 8314source = "registry+https://github.com/rust-lang/crates.io-index" 8315checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" 8316dependencies = [ 8317 "wit-bindgen", 8318] 8319 8320[[package]] 8321name = "wasip3" 8322version = "0.4.0+wasi-0.3.0-rc-2026-01-06" 8323source = "registry+https://github.com/rust-lang/crates.io-index" 8324checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" 8325dependencies = [ 8326 "wit-bindgen", 8327] 8328 8329[[package]] 8330name = "wasite" 8331version = "0.1.0" 8332source = "registry+https://github.com/rust-lang/crates.io-index" 8333checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 8334 8335[[package]] 8336name = "wasm-bindgen" 8337version = "0.2.114" 8338source = "registry+https://github.com/rust-lang/crates.io-index" 8339checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e" 8340dependencies = [ 8341 "cfg-if", 8342 "once_cell", 8343 "rustversion", 8344 "wasm-bindgen-macro", 8345 "wasm-bindgen-shared", 8346] 8347 8348[[package]] 8349name = "wasm-bindgen-futures" 8350version = "0.4.64" 8351source = "registry+https://github.com/rust-lang/crates.io-index" 8352checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8" 8353dependencies = [ 8354 "cfg-if", 8355 "futures-util", 8356 "js-sys", 8357 "once_cell", 8358 "wasm-bindgen", 8359 "web-sys", 8360] 8361 8362[[package]] 8363name = "wasm-bindgen-macro" 8364version = "0.2.114" 8365source = "registry+https://github.com/rust-lang/crates.io-index" 8366checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6" 8367dependencies = [ 8368 "quote", 8369 "wasm-bindgen-macro-support", 8370] 8371 8372[[package]] 8373name = "wasm-bindgen-macro-support" 8374version = "0.2.114" 8375source = "registry+https://github.com/rust-lang/crates.io-index" 8376checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3" 8377dependencies = [ 8378 "bumpalo", 8379 "proc-macro2", 8380 "quote", 8381 "syn 2.0.117", 8382 "wasm-bindgen-shared", 8383] 8384 8385[[package]] 8386name = "wasm-bindgen-shared" 8387version = "0.2.114" 8388source = "registry+https://github.com/rust-lang/crates.io-index" 8389checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16" 8390dependencies = [ 8391 "unicode-ident", 8392] 8393 8394[[package]] 8395name = "wasm-encoder" 8396version = "0.244.0" 8397source = "registry+https://github.com/rust-lang/crates.io-index" 8398checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" 8399dependencies = [ 8400 "leb128fmt", 8401 "wasmparser", 8402] 8403 8404[[package]] 8405name = "wasm-metadata" 8406version = "0.244.0" 8407source = "registry+https://github.com/rust-lang/crates.io-index" 8408checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" 8409dependencies = [ 8410 "anyhow", 8411 "indexmap 2.13.0", 8412 "wasm-encoder", 8413 "wasmparser", 8414] 8415 8416[[package]] 8417name = "wasm-streams" 8418version = "0.4.2" 8419source = "registry+https://github.com/rust-lang/crates.io-index" 8420checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" 8421dependencies = [ 8422 "futures-util", 8423 "js-sys", 8424 "wasm-bindgen", 8425 "wasm-bindgen-futures", 8426 "web-sys", 8427] 8428 8429[[package]] 8430name = "wasmparser" 8431version = "0.244.0" 8432source = "registry+https://github.com/rust-lang/crates.io-index" 8433checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" 8434dependencies = [ 8435 "bitflags", 8436 "hashbrown 0.15.5", 8437 "indexmap 2.13.0", 8438 "semver", 8439] 8440 8441[[package]] 8442name = "web-sys" 8443version = "0.3.91" 8444source = "registry+https://github.com/rust-lang/crates.io-index" 8445checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9" 8446dependencies = [ 8447 "js-sys", 8448 "wasm-bindgen", 8449] 8450 8451[[package]] 8452name = "web-time" 8453version = "1.1.0" 8454source = "registry+https://github.com/rust-lang/crates.io-index" 8455checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 8456dependencies = [ 8457 "js-sys", 8458 "wasm-bindgen", 8459] 8460 8461[[package]] 8462name = "webauthn-attestation-ca" 8463version = "0.5.4" 8464source = "registry+https://github.com/rust-lang/crates.io-index" 8465checksum = "fafcf13f7dc1fb292ed4aea22cdd3757c285d7559e9748950ee390249da4da6b" 8466dependencies = [ 8467 "base64urlsafedata", 8468 "openssl", 8469 "openssl-sys", 8470 "serde", 8471 "tracing", 8472 "uuid", 8473] 8474 8475[[package]] 8476name = "webauthn-rs" 8477version = "0.5.4" 8478source = "registry+https://github.com/rust-lang/crates.io-index" 8479checksum = "1b24d082d3360258fefb6ffe56123beef7d6868c765c779f97b7a2fcf06727f8" 8480dependencies = [ 8481 "base64urlsafedata", 8482 "serde", 8483 "tracing", 8484 "url", 8485 "uuid", 8486 "webauthn-rs-core", 8487] 8488 8489[[package]] 8490name = "webauthn-rs-core" 8491version = "0.5.4" 8492source = "registry+https://github.com/rust-lang/crates.io-index" 8493checksum = "15784340a24c170ce60567282fb956a0938742dbfbf9eff5df793a686a009b8b" 8494dependencies = [ 8495 "base64 0.21.7", 8496 "base64urlsafedata", 8497 "der-parser", 8498 "hex", 8499 "nom", 8500 "openssl", 8501 "openssl-sys", 8502 "rand 0.9.2", 8503 "rand_chacha 0.9.0", 8504 "serde", 8505 "serde_cbor_2", 8506 "serde_json", 8507 "thiserror 1.0.69", 8508 "tracing", 8509 "url", 8510 "uuid", 8511 "webauthn-attestation-ca", 8512 "webauthn-rs-proto", 8513 "x509-parser", 8514] 8515 8516[[package]] 8517name = "webauthn-rs-proto" 8518version = "0.5.4" 8519source = "registry+https://github.com/rust-lang/crates.io-index" 8520checksum = "16a1fb2580ce73baa42d3011a24de2ceab0d428de1879ece06e02e8c416e497c" 8521dependencies = [ 8522 "base64 0.21.7", 8523 "base64urlsafedata", 8524 "serde", 8525 "serde_json", 8526 "url", 8527] 8528 8529[[package]] 8530name = "webpki-roots" 8531version = "0.26.11" 8532source = "registry+https://github.com/rust-lang/crates.io-index" 8533checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" 8534dependencies = [ 8535 "webpki-roots 1.0.6", 8536] 8537 8538[[package]] 8539name = "webpki-roots" 8540version = "1.0.6" 8541source = "registry+https://github.com/rust-lang/crates.io-index" 8542checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed" 8543dependencies = [ 8544 "rustls-pki-types", 8545] 8546 8547[[package]] 8548name = "weezl" 8549version = "0.1.12" 8550source = "registry+https://github.com/rust-lang/crates.io-index" 8551checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88" 8552 8553[[package]] 8554name = "which" 8555version = "4.4.2" 8556source = "registry+https://github.com/rust-lang/crates.io-index" 8557checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" 8558dependencies = [ 8559 "either", 8560 "home", 8561 "once_cell", 8562 "rustix 0.38.44", 8563] 8564 8565[[package]] 8566name = "whoami" 8567version = "1.6.1" 8568source = "registry+https://github.com/rust-lang/crates.io-index" 8569checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d" 8570dependencies = [ 8571 "libredox", 8572 "wasite", 8573] 8574 8575[[package]] 8576name = "widestring" 8577version = "1.2.1" 8578source = "registry+https://github.com/rust-lang/crates.io-index" 8579checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" 8580 8581[[package]] 8582name = "winapi" 8583version = "0.3.9" 8584source = "registry+https://github.com/rust-lang/crates.io-index" 8585checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 8586dependencies = [ 8587 "winapi-i686-pc-windows-gnu", 8588 "winapi-x86_64-pc-windows-gnu", 8589] 8590 8591[[package]] 8592name = "winapi-i686-pc-windows-gnu" 8593version = "0.4.0" 8594source = "registry+https://github.com/rust-lang/crates.io-index" 8595checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 8596 8597[[package]] 8598name = "winapi-x86_64-pc-windows-gnu" 8599version = "0.4.0" 8600source = "registry+https://github.com/rust-lang/crates.io-index" 8601checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 8602 8603[[package]] 8604name = "windows-core" 8605version = "0.62.2" 8606source = "registry+https://github.com/rust-lang/crates.io-index" 8607checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 8608dependencies = [ 8609 "windows-implement", 8610 "windows-interface", 8611 "windows-link", 8612 "windows-result", 8613 "windows-strings", 8614] 8615 8616[[package]] 8617name = "windows-implement" 8618version = "0.60.2" 8619source = "registry+https://github.com/rust-lang/crates.io-index" 8620checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 8621dependencies = [ 8622 "proc-macro2", 8623 "quote", 8624 "syn 2.0.117", 8625] 8626 8627[[package]] 8628name = "windows-interface" 8629version = "0.59.3" 8630source = "registry+https://github.com/rust-lang/crates.io-index" 8631checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 8632dependencies = [ 8633 "proc-macro2", 8634 "quote", 8635 "syn 2.0.117", 8636] 8637 8638[[package]] 8639name = "windows-link" 8640version = "0.2.1" 8641source = "registry+https://github.com/rust-lang/crates.io-index" 8642checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 8643 8644[[package]] 8645name = "windows-registry" 8646version = "0.6.1" 8647source = "registry+https://github.com/rust-lang/crates.io-index" 8648checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" 8649dependencies = [ 8650 "windows-link", 8651 "windows-result", 8652 "windows-strings", 8653] 8654 8655[[package]] 8656name = "windows-result" 8657version = "0.4.1" 8658source = "registry+https://github.com/rust-lang/crates.io-index" 8659checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 8660dependencies = [ 8661 "windows-link", 8662] 8663 8664[[package]] 8665name = "windows-strings" 8666version = "0.5.1" 8667source = "registry+https://github.com/rust-lang/crates.io-index" 8668checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 8669dependencies = [ 8670 "windows-link", 8671] 8672 8673[[package]] 8674name = "windows-sys" 8675version = "0.48.0" 8676source = "registry+https://github.com/rust-lang/crates.io-index" 8677checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 8678dependencies = [ 8679 "windows-targets 0.48.5", 8680] 8681 8682[[package]] 8683name = "windows-sys" 8684version = "0.52.0" 8685source = "registry+https://github.com/rust-lang/crates.io-index" 8686checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 8687dependencies = [ 8688 "windows-targets 0.52.6", 8689] 8690 8691[[package]] 8692name = "windows-sys" 8693version = "0.59.0" 8694source = "registry+https://github.com/rust-lang/crates.io-index" 8695checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 8696dependencies = [ 8697 "windows-targets 0.52.6", 8698] 8699 8700[[package]] 8701name = "windows-sys" 8702version = "0.60.2" 8703source = "registry+https://github.com/rust-lang/crates.io-index" 8704checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 8705dependencies = [ 8706 "windows-targets 0.53.5", 8707] 8708 8709[[package]] 8710name = "windows-sys" 8711version = "0.61.2" 8712source = "registry+https://github.com/rust-lang/crates.io-index" 8713checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 8714dependencies = [ 8715 "windows-link", 8716] 8717 8718[[package]] 8719name = "windows-targets" 8720version = "0.48.5" 8721source = "registry+https://github.com/rust-lang/crates.io-index" 8722checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 8723dependencies = [ 8724 "windows_aarch64_gnullvm 0.48.5", 8725 "windows_aarch64_msvc 0.48.5", 8726 "windows_i686_gnu 0.48.5", 8727 "windows_i686_msvc 0.48.5", 8728 "windows_x86_64_gnu 0.48.5", 8729 "windows_x86_64_gnullvm 0.48.5", 8730 "windows_x86_64_msvc 0.48.5", 8731] 8732 8733[[package]] 8734name = "windows-targets" 8735version = "0.52.6" 8736source = "registry+https://github.com/rust-lang/crates.io-index" 8737checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 8738dependencies = [ 8739 "windows_aarch64_gnullvm 0.52.6", 8740 "windows_aarch64_msvc 0.52.6", 8741 "windows_i686_gnu 0.52.6", 8742 "windows_i686_gnullvm 0.52.6", 8743 "windows_i686_msvc 0.52.6", 8744 "windows_x86_64_gnu 0.52.6", 8745 "windows_x86_64_gnullvm 0.52.6", 8746 "windows_x86_64_msvc 0.52.6", 8747] 8748 8749[[package]] 8750name = "windows-targets" 8751version = "0.53.5" 8752source = "registry+https://github.com/rust-lang/crates.io-index" 8753checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 8754dependencies = [ 8755 "windows-link", 8756 "windows_aarch64_gnullvm 0.53.1", 8757 "windows_aarch64_msvc 0.53.1", 8758 "windows_i686_gnu 0.53.1", 8759 "windows_i686_gnullvm 0.53.1", 8760 "windows_i686_msvc 0.53.1", 8761 "windows_x86_64_gnu 0.53.1", 8762 "windows_x86_64_gnullvm 0.53.1", 8763 "windows_x86_64_msvc 0.53.1", 8764] 8765 8766[[package]] 8767name = "windows_aarch64_gnullvm" 8768version = "0.48.5" 8769source = "registry+https://github.com/rust-lang/crates.io-index" 8770checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 8771 8772[[package]] 8773name = "windows_aarch64_gnullvm" 8774version = "0.52.6" 8775source = "registry+https://github.com/rust-lang/crates.io-index" 8776checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 8777 8778[[package]] 8779name = "windows_aarch64_gnullvm" 8780version = "0.53.1" 8781source = "registry+https://github.com/rust-lang/crates.io-index" 8782checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 8783 8784[[package]] 8785name = "windows_aarch64_msvc" 8786version = "0.48.5" 8787source = "registry+https://github.com/rust-lang/crates.io-index" 8788checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 8789 8790[[package]] 8791name = "windows_aarch64_msvc" 8792version = "0.52.6" 8793source = "registry+https://github.com/rust-lang/crates.io-index" 8794checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 8795 8796[[package]] 8797name = "windows_aarch64_msvc" 8798version = "0.53.1" 8799source = "registry+https://github.com/rust-lang/crates.io-index" 8800checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 8801 8802[[package]] 8803name = "windows_i686_gnu" 8804version = "0.48.5" 8805source = "registry+https://github.com/rust-lang/crates.io-index" 8806checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 8807 8808[[package]] 8809name = "windows_i686_gnu" 8810version = "0.52.6" 8811source = "registry+https://github.com/rust-lang/crates.io-index" 8812checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 8813 8814[[package]] 8815name = "windows_i686_gnu" 8816version = "0.53.1" 8817source = "registry+https://github.com/rust-lang/crates.io-index" 8818checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 8819 8820[[package]] 8821name = "windows_i686_gnullvm" 8822version = "0.52.6" 8823source = "registry+https://github.com/rust-lang/crates.io-index" 8824checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 8825 8826[[package]] 8827name = "windows_i686_gnullvm" 8828version = "0.53.1" 8829source = "registry+https://github.com/rust-lang/crates.io-index" 8830checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 8831 8832[[package]] 8833name = "windows_i686_msvc" 8834version = "0.48.5" 8835source = "registry+https://github.com/rust-lang/crates.io-index" 8836checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 8837 8838[[package]] 8839name = "windows_i686_msvc" 8840version = "0.52.6" 8841source = "registry+https://github.com/rust-lang/crates.io-index" 8842checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 8843 8844[[package]] 8845name = "windows_i686_msvc" 8846version = "0.53.1" 8847source = "registry+https://github.com/rust-lang/crates.io-index" 8848checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 8849 8850[[package]] 8851name = "windows_x86_64_gnu" 8852version = "0.48.5" 8853source = "registry+https://github.com/rust-lang/crates.io-index" 8854checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 8855 8856[[package]] 8857name = "windows_x86_64_gnu" 8858version = "0.52.6" 8859source = "registry+https://github.com/rust-lang/crates.io-index" 8860checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 8861 8862[[package]] 8863name = "windows_x86_64_gnu" 8864version = "0.53.1" 8865source = "registry+https://github.com/rust-lang/crates.io-index" 8866checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 8867 8868[[package]] 8869name = "windows_x86_64_gnullvm" 8870version = "0.48.5" 8871source = "registry+https://github.com/rust-lang/crates.io-index" 8872checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 8873 8874[[package]] 8875name = "windows_x86_64_gnullvm" 8876version = "0.52.6" 8877source = "registry+https://github.com/rust-lang/crates.io-index" 8878checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 8879 8880[[package]] 8881name = "windows_x86_64_gnullvm" 8882version = "0.53.1" 8883source = "registry+https://github.com/rust-lang/crates.io-index" 8884checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 8885 8886[[package]] 8887name = "windows_x86_64_msvc" 8888version = "0.48.5" 8889source = "registry+https://github.com/rust-lang/crates.io-index" 8890checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 8891 8892[[package]] 8893name = "windows_x86_64_msvc" 8894version = "0.52.6" 8895source = "registry+https://github.com/rust-lang/crates.io-index" 8896checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 8897 8898[[package]] 8899name = "windows_x86_64_msvc" 8900version = "0.53.1" 8901source = "registry+https://github.com/rust-lang/crates.io-index" 8902checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 8903 8904[[package]] 8905name = "winnow" 8906version = "0.7.15" 8907source = "registry+https://github.com/rust-lang/crates.io-index" 8908checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" 8909dependencies = [ 8910 "memchr", 8911] 8912 8913[[package]] 8914name = "winnow" 8915version = "1.0.0" 8916source = "registry+https://github.com/rust-lang/crates.io-index" 8917checksum = "a90e88e4667264a994d34e6d1ab2d26d398dcdca8b7f52bec8668957517fc7d8" 8918dependencies = [ 8919 "memchr", 8920] 8921 8922[[package]] 8923name = "winreg" 8924version = "0.50.0" 8925source = "registry+https://github.com/rust-lang/crates.io-index" 8926checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 8927dependencies = [ 8928 "cfg-if", 8929 "windows-sys 0.48.0", 8930] 8931 8932[[package]] 8933name = "wiremock" 8934version = "0.6.5" 8935source = "registry+https://github.com/rust-lang/crates.io-index" 8936checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031" 8937dependencies = [ 8938 "assert-json-diff", 8939 "base64 0.22.1", 8940 "deadpool", 8941 "futures", 8942 "http 1.4.0", 8943 "http-body-util", 8944 "hyper 1.8.1", 8945 "hyper-util", 8946 "log", 8947 "once_cell", 8948 "regex", 8949 "serde", 8950 "serde_json", 8951 "tokio", 8952 "url", 8953] 8954 8955[[package]] 8956name = "wit-bindgen" 8957version = "0.51.0" 8958source = "registry+https://github.com/rust-lang/crates.io-index" 8959checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" 8960dependencies = [ 8961 "wit-bindgen-rust-macro", 8962] 8963 8964[[package]] 8965name = "wit-bindgen-core" 8966version = "0.51.0" 8967source = "registry+https://github.com/rust-lang/crates.io-index" 8968checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" 8969dependencies = [ 8970 "anyhow", 8971 "heck 0.5.0", 8972 "wit-parser", 8973] 8974 8975[[package]] 8976name = "wit-bindgen-rust" 8977version = "0.51.0" 8978source = "registry+https://github.com/rust-lang/crates.io-index" 8979checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" 8980dependencies = [ 8981 "anyhow", 8982 "heck 0.5.0", 8983 "indexmap 2.13.0", 8984 "prettyplease", 8985 "syn 2.0.117", 8986 "wasm-metadata", 8987 "wit-bindgen-core", 8988 "wit-component", 8989] 8990 8991[[package]] 8992name = "wit-bindgen-rust-macro" 8993version = "0.51.0" 8994source = "registry+https://github.com/rust-lang/crates.io-index" 8995checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" 8996dependencies = [ 8997 "anyhow", 8998 "prettyplease", 8999 "proc-macro2", 9000 "quote", 9001 "syn 2.0.117", 9002 "wit-bindgen-core", 9003 "wit-bindgen-rust", 9004] 9005 9006[[package]] 9007name = "wit-component" 9008version = "0.244.0" 9009source = "registry+https://github.com/rust-lang/crates.io-index" 9010checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" 9011dependencies = [ 9012 "anyhow", 9013 "bitflags", 9014 "indexmap 2.13.0", 9015 "log", 9016 "serde", 9017 "serde_derive", 9018 "serde_json", 9019 "wasm-encoder", 9020 "wasm-metadata", 9021 "wasmparser", 9022 "wit-parser", 9023] 9024 9025[[package]] 9026name = "wit-parser" 9027version = "0.244.0" 9028source = "registry+https://github.com/rust-lang/crates.io-index" 9029checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" 9030dependencies = [ 9031 "anyhow", 9032 "id-arena", 9033 "indexmap 2.13.0", 9034 "log", 9035 "semver", 9036 "serde", 9037 "serde_derive", 9038 "serde_json", 9039 "unicode-xid", 9040 "wasmparser", 9041] 9042 9043[[package]] 9044name = "writeable" 9045version = "0.6.2" 9046source = "registry+https://github.com/rust-lang/crates.io-index" 9047checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" 9048 9049[[package]] 9050name = "x25519-dalek" 9051version = "2.0.1" 9052source = "registry+https://github.com/rust-lang/crates.io-index" 9053checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" 9054dependencies = [ 9055 "curve25519-dalek", 9056 "rand_core 0.6.4", 9057 "serde", 9058 "zeroize", 9059] 9060 9061[[package]] 9062name = "x509-parser" 9063version = "0.16.0" 9064source = "registry+https://github.com/rust-lang/crates.io-index" 9065checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69" 9066dependencies = [ 9067 "asn1-rs", 9068 "data-encoding", 9069 "der-parser", 9070 "lazy_static", 9071 "nom", 9072 "oid-registry", 9073 "rusticata-macros", 9074 "thiserror 1.0.69", 9075 "time", 9076] 9077 9078[[package]] 9079name = "xattr" 9080version = "1.6.1" 9081source = "registry+https://github.com/rust-lang/crates.io-index" 9082checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" 9083dependencies = [ 9084 "libc", 9085 "rustix 1.1.4", 9086] 9087 9088[[package]] 9089name = "xmlparser" 9090version = "0.13.6" 9091source = "registry+https://github.com/rust-lang/crates.io-index" 9092checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" 9093 9094[[package]] 9095name = "xxhash-rust" 9096version = "0.8.15" 9097source = "registry+https://github.com/rust-lang/crates.io-index" 9098checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3" 9099 9100[[package]] 9101name = "yansi" 9102version = "1.0.1" 9103source = "registry+https://github.com/rust-lang/crates.io-index" 9104checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 9105 9106[[package]] 9107name = "yoke" 9108version = "0.8.1" 9109source = "registry+https://github.com/rust-lang/crates.io-index" 9110checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" 9111dependencies = [ 9112 "stable_deref_trait", 9113 "yoke-derive", 9114 "zerofrom", 9115] 9116 9117[[package]] 9118name = "yoke-derive" 9119version = "0.8.1" 9120source = "registry+https://github.com/rust-lang/crates.io-index" 9121checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" 9122dependencies = [ 9123 "proc-macro2", 9124 "quote", 9125 "syn 2.0.117", 9126 "synstructure", 9127] 9128 9129[[package]] 9130name = "zerocopy" 9131version = "0.8.47" 9132source = "registry+https://github.com/rust-lang/crates.io-index" 9133checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87" 9134dependencies = [ 9135 "zerocopy-derive", 9136] 9137 9138[[package]] 9139name = "zerocopy-derive" 9140version = "0.8.47" 9141source = "registry+https://github.com/rust-lang/crates.io-index" 9142checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89" 9143dependencies = [ 9144 "proc-macro2", 9145 "quote", 9146 "syn 2.0.117", 9147] 9148 9149[[package]] 9150name = "zerofrom" 9151version = "0.1.6" 9152source = "registry+https://github.com/rust-lang/crates.io-index" 9153checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 9154dependencies = [ 9155 "zerofrom-derive", 9156] 9157 9158[[package]] 9159name = "zerofrom-derive" 9160version = "0.1.6" 9161source = "registry+https://github.com/rust-lang/crates.io-index" 9162checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 9163dependencies = [ 9164 "proc-macro2", 9165 "quote", 9166 "syn 2.0.117", 9167 "synstructure", 9168] 9169 9170[[package]] 9171name = "zeroize" 9172version = "1.8.2" 9173source = "registry+https://github.com/rust-lang/crates.io-index" 9174checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 9175dependencies = [ 9176 "zeroize_derive", 9177] 9178 9179[[package]] 9180name = "zeroize_derive" 9181version = "1.4.3" 9182source = "registry+https://github.com/rust-lang/crates.io-index" 9183checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" 9184dependencies = [ 9185 "proc-macro2", 9186 "quote", 9187 "syn 2.0.117", 9188] 9189 9190[[package]] 9191name = "zerotrie" 9192version = "0.2.3" 9193source = "registry+https://github.com/rust-lang/crates.io-index" 9194checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" 9195dependencies = [ 9196 "displaydoc", 9197 "yoke", 9198 "zerofrom", 9199] 9200 9201[[package]] 9202name = "zerovec" 9203version = "0.11.5" 9204source = "registry+https://github.com/rust-lang/crates.io-index" 9205checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" 9206dependencies = [ 9207 "yoke", 9208 "zerofrom", 9209 "zerovec-derive", 9210] 9211 9212[[package]] 9213name = "zerovec-derive" 9214version = "0.11.2" 9215source = "registry+https://github.com/rust-lang/crates.io-index" 9216checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" 9217dependencies = [ 9218 "proc-macro2", 9219 "quote", 9220 "syn 2.0.117", 9221] 9222 9223[[package]] 9224name = "zip" 9225version = "7.2.0" 9226source = "registry+https://github.com/rust-lang/crates.io-index" 9227checksum = "c42e33efc22a0650c311c2ef19115ce232583abbe80850bc8b66509ebef02de0" 9228dependencies = [ 9229 "crc32fast", 9230 "flate2", 9231 "indexmap 2.13.0", 9232 "memchr", 9233 "typed-path", 9234 "zopfli", 9235] 9236 9237[[package]] 9238name = "zkcredential" 9239version = "0.1.0" 9240source = "git+https://github.com/signalapp/libsignal?tag=v0.87.4#38514bdc8acaaffbccd5c96515c68deb2019abe0" 9241dependencies = [ 9242 "cfg-if", 9243 "curve25519-dalek", 9244 "derive-where", 9245 "displaydoc", 9246 "partial-default", 9247 "poksho", 9248 "rayon", 9249 "serde", 9250 "sha2", 9251 "subtle", 9252 "thiserror 2.0.18", 9253] 9254 9255[[package]] 9256name = "zkgroup" 9257version = "0.9.0" 9258source = "git+https://github.com/signalapp/libsignal?tag=v0.87.4#38514bdc8acaaffbccd5c96515c68deb2019abe0" 9259dependencies = [ 9260 "aes", 9261 "aes-gcm-siv", 9262 "bincode 1.3.3", 9263 "const-str 1.1.0", 9264 "curve25519-dalek", 9265 "derive-where", 9266 "derive_more 2.1.1", 9267 "displaydoc", 9268 "hex", 9269 "hkdf", 9270 "libsignal-account-keys", 9271 "libsignal-core", 9272 "partial-default", 9273 "poksho", 9274 "rand 0.9.2", 9275 "rayon", 9276 "serde", 9277 "sha2", 9278 "static_assertions", 9279 "subtle", 9280 "thiserror 2.0.18", 9281 "uuid", 9282 "zkcredential", 9283] 9284 9285[[package]] 9286name = "zlib-rs" 9287version = "0.6.3" 9288source = "registry+https://github.com/rust-lang/crates.io-index" 9289checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513" 9290 9291[[package]] 9292name = "zmij" 9293version = "1.0.21" 9294source = "registry+https://github.com/rust-lang/crates.io-index" 9295checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" 9296 9297[[package]] 9298name = "zopfli" 9299version = "0.8.3" 9300source = "registry+https://github.com/rust-lang/crates.io-index" 9301checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249" 9302dependencies = [ 9303 "bumpalo", 9304 "crc32fast", 9305 "log", 9306 "simd-adler32", 9307] 9308 9309[[package]] 9310name = "zune-core" 9311version = "0.5.1" 9312source = "registry+https://github.com/rust-lang/crates.io-index" 9313checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9" 9314 9315[[package]] 9316name = "zune-jpeg" 9317version = "0.5.14" 9318source = "registry+https://github.com/rust-lang/crates.io-index" 9319checksum = "0b7a1c0af6e5d8d1363f4994b7a091ccf963d8b694f7da5b0b9cceb82da2c0a6" 9320dependencies = [ 9321 "zune-core", 9322]