Our Personal Data Server from scratch!
0
fork

Configure Feed

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

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