Our Personal Data Server from scratch!
0

Configure Feed

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

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