Microservice to bring 2FA to self hosted PDSes
0

Configure Feed

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

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 7.1.3", 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 7.1.3", 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 = "ahash" 32version = "0.8.12" 33source = "registry+https://github.com/rust-lang/crates.io-index" 34checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" 35dependencies = [ 36 "cfg-if", 37 "once_cell", 38 "version_check", 39 "zerocopy", 40] 41 42[[package]] 43name = "aho-corasick" 44version = "1.1.4" 45source = "registry+https://github.com/rust-lang/crates.io-index" 46checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 47dependencies = [ 48 "memchr", 49] 50 51[[package]] 52name = "aliasable" 53version = "0.1.3" 54source = "registry+https://github.com/rust-lang/crates.io-index" 55checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" 56 57[[package]] 58name = "allocator-api2" 59version = "0.2.21" 60source = "registry+https://github.com/rust-lang/crates.io-index" 61checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 62 63[[package]] 64name = "android_system_properties" 65version = "0.1.5" 66source = "registry+https://github.com/rust-lang/crates.io-index" 67checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 68dependencies = [ 69 "libc", 70] 71 72[[package]] 73name = "anyhow" 74version = "1.0.100" 75source = "registry+https://github.com/rust-lang/crates.io-index" 76checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" 77 78[[package]] 79name = "ar_archive_writer" 80version = "0.2.0" 81source = "registry+https://github.com/rust-lang/crates.io-index" 82checksum = "f0c269894b6fe5e9d7ada0cf69b5bf847ff35bc25fc271f08e1d080fce80339a" 83dependencies = [ 84 "object", 85] 86 87[[package]] 88name = "async-channel" 89version = "1.9.0" 90source = "registry+https://github.com/rust-lang/crates.io-index" 91checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 92dependencies = [ 93 "concurrent-queue", 94 "event-listener 2.5.3", 95 "futures-core", 96] 97 98[[package]] 99name = "async-channel" 100version = "2.5.0" 101source = "registry+https://github.com/rust-lang/crates.io-index" 102checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" 103dependencies = [ 104 "concurrent-queue", 105 "event-listener-strategy", 106 "futures-core", 107 "pin-project-lite", 108] 109 110[[package]] 111name = "async-compression" 112version = "0.4.36" 113source = "registry+https://github.com/rust-lang/crates.io-index" 114checksum = "98ec5f6c2f8bc326c994cb9e241cc257ddaba9afa8555a43cffbb5dd86efaa37" 115dependencies = [ 116 "compression-codecs", 117 "compression-core", 118 "futures-core", 119 "pin-project-lite", 120 "tokio", 121] 122 123[[package]] 124name = "async-executor" 125version = "1.13.3" 126source = "registry+https://github.com/rust-lang/crates.io-index" 127checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8" 128dependencies = [ 129 "async-task", 130 "concurrent-queue", 131 "fastrand", 132 "futures-lite", 133 "pin-project-lite", 134 "slab", 135] 136 137[[package]] 138name = "async-global-executor" 139version = "2.4.1" 140source = "registry+https://github.com/rust-lang/crates.io-index" 141checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" 142dependencies = [ 143 "async-channel 2.5.0", 144 "async-executor", 145 "async-io", 146 "async-lock", 147 "blocking", 148 "futures-lite", 149 "once_cell", 150] 151 152[[package]] 153name = "async-io" 154version = "2.6.0" 155source = "registry+https://github.com/rust-lang/crates.io-index" 156checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" 157dependencies = [ 158 "autocfg", 159 "cfg-if", 160 "concurrent-queue", 161 "futures-io", 162 "futures-lite", 163 "parking", 164 "polling", 165 "rustix", 166 "slab", 167 "windows-sys 0.61.2", 168] 169 170[[package]] 171name = "async-lock" 172version = "3.4.2" 173source = "registry+https://github.com/rust-lang/crates.io-index" 174checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" 175dependencies = [ 176 "event-listener 5.4.1", 177 "event-listener-strategy", 178 "pin-project-lite", 179] 180 181[[package]] 182name = "async-process" 183version = "2.5.0" 184source = "registry+https://github.com/rust-lang/crates.io-index" 185checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" 186dependencies = [ 187 "async-channel 2.5.0", 188 "async-io", 189 "async-lock", 190 "async-signal", 191 "async-task", 192 "blocking", 193 "cfg-if", 194 "event-listener 5.4.1", 195 "futures-lite", 196 "rustix", 197] 198 199[[package]] 200name = "async-signal" 201version = "0.2.13" 202source = "registry+https://github.com/rust-lang/crates.io-index" 203checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c" 204dependencies = [ 205 "async-io", 206 "async-lock", 207 "atomic-waker", 208 "cfg-if", 209 "futures-core", 210 "futures-io", 211 "rustix", 212 "signal-hook-registry", 213 "slab", 214 "windows-sys 0.61.2", 215] 216 217[[package]] 218name = "async-std" 219version = "1.13.2" 220source = "registry+https://github.com/rust-lang/crates.io-index" 221checksum = "2c8e079a4ab67ae52b7403632e4618815d6db36d2a010cfe41b02c1b1578f93b" 222dependencies = [ 223 "async-channel 1.9.0", 224 "async-global-executor", 225 "async-io", 226 "async-lock", 227 "async-process", 228 "crossbeam-utils", 229 "futures-channel", 230 "futures-core", 231 "futures-io", 232 "futures-lite", 233 "gloo-timers", 234 "kv-log-macro", 235 "log", 236 "memchr", 237 "once_cell", 238 "pin-project-lite", 239 "pin-utils", 240 "slab", 241 "wasm-bindgen-futures", 242] 243 244[[package]] 245name = "async-task" 246version = "4.7.1" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 249 250[[package]] 251name = "async-trait" 252version = "0.1.89" 253source = "registry+https://github.com/rust-lang/crates.io-index" 254checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 255dependencies = [ 256 "proc-macro2", 257 "quote", 258 "syn 2.0.112", 259] 260 261[[package]] 262name = "atoi" 263version = "2.0.0" 264source = "registry+https://github.com/rust-lang/crates.io-index" 265checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" 266dependencies = [ 267 "num-traits", 268] 269 270[[package]] 271name = "atomic-polyfill" 272version = "1.0.3" 273source = "registry+https://github.com/rust-lang/crates.io-index" 274checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4" 275dependencies = [ 276 "critical-section", 277] 278 279[[package]] 280name = "atomic-waker" 281version = "1.1.2" 282source = "registry+https://github.com/rust-lang/crates.io-index" 283checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 284 285[[package]] 286name = "autocfg" 287version = "1.5.0" 288source = "registry+https://github.com/rust-lang/crates.io-index" 289checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 290 291[[package]] 292name = "aws-lc-rs" 293version = "1.15.2" 294source = "registry+https://github.com/rust-lang/crates.io-index" 295checksum = "6a88aab2464f1f25453baa7a07c84c5b7684e274054ba06817f382357f77a288" 296dependencies = [ 297 "aws-lc-sys", 298 "untrusted 0.7.1", 299 "zeroize", 300] 301 302[[package]] 303name = "aws-lc-sys" 304version = "0.35.0" 305source = "registry+https://github.com/rust-lang/crates.io-index" 306checksum = "b45afffdee1e7c9126814751f88dddc747f41d91da16c9551a0f1e8a11e788a1" 307dependencies = [ 308 "cc", 309 "cmake", 310 "dunce", 311 "fs_extra", 312] 313 314[[package]] 315name = "axum" 316version = "0.8.8" 317source = "registry+https://github.com/rust-lang/crates.io-index" 318checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" 319dependencies = [ 320 "axum-core", 321 "axum-macros", 322 "bytes", 323 "form_urlencoded", 324 "futures-util", 325 "http", 326 "http-body", 327 "http-body-util", 328 "hyper", 329 "hyper-util", 330 "itoa", 331 "matchit", 332 "memchr", 333 "mime", 334 "percent-encoding", 335 "pin-project-lite", 336 "serde_core", 337 "serde_json", 338 "serde_path_to_error", 339 "serde_urlencoded", 340 "sync_wrapper", 341 "tokio", 342 "tower", 343 "tower-layer", 344 "tower-service", 345 "tracing", 346] 347 348[[package]] 349name = "axum-core" 350version = "0.5.6" 351source = "registry+https://github.com/rust-lang/crates.io-index" 352checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" 353dependencies = [ 354 "bytes", 355 "futures-core", 356 "http", 357 "http-body", 358 "http-body-util", 359 "mime", 360 "pin-project-lite", 361 "sync_wrapper", 362 "tower-layer", 363 "tower-service", 364 "tracing", 365] 366 367[[package]] 368name = "axum-extra" 369version = "0.10.3" 370source = "registry+https://github.com/rust-lang/crates.io-index" 371checksum = "9963ff19f40c6102c76756ef0a46004c0d58957d87259fc9208ff8441c12ab96" 372dependencies = [ 373 "axum", 374 "axum-core", 375 "bytes", 376 "cookie", 377 "futures-util", 378 "http", 379 "http-body", 380 "http-body-util", 381 "mime", 382 "pin-project-lite", 383 "rustversion", 384 "serde_core", 385 "tower-layer", 386 "tower-service", 387 "tracing", 388] 389 390[[package]] 391name = "axum-macros" 392version = "0.5.0" 393source = "registry+https://github.com/rust-lang/crates.io-index" 394checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c" 395dependencies = [ 396 "proc-macro2", 397 "quote", 398 "syn 2.0.112", 399] 400 401[[package]] 402name = "axum-template" 403version = "3.0.0" 404source = "registry+https://github.com/rust-lang/crates.io-index" 405checksum = "3df50f7d669bfc3a8c348f08f536fe37e7acfbeded3cfdffd2ad3d76725fc40c" 406dependencies = [ 407 "axum", 408 "handlebars", 409 "serde", 410 "thiserror 2.0.17", 411] 412 413[[package]] 414name = "base-x" 415version = "0.2.11" 416source = "registry+https://github.com/rust-lang/crates.io-index" 417checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 418 419[[package]] 420name = "base16ct" 421version = "0.2.0" 422source = "registry+https://github.com/rust-lang/crates.io-index" 423checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 424 425[[package]] 426name = "base256emoji" 427version = "1.0.2" 428source = "registry+https://github.com/rust-lang/crates.io-index" 429checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c" 430dependencies = [ 431 "const-str", 432 "match-lookup", 433] 434 435[[package]] 436name = "base64" 437version = "0.22.1" 438source = "registry+https://github.com/rust-lang/crates.io-index" 439checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 440 441[[package]] 442name = "base64ct" 443version = "1.8.1" 444source = "registry+https://github.com/rust-lang/crates.io-index" 445checksum = "0e050f626429857a27ddccb31e0aca21356bfa709c04041aefddac081a8f068a" 446 447[[package]] 448name = "bitflags" 449version = "2.10.0" 450source = "registry+https://github.com/rust-lang/crates.io-index" 451checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 452dependencies = [ 453 "serde_core", 454] 455 456[[package]] 457name = "block-buffer" 458version = "0.10.4" 459source = "registry+https://github.com/rust-lang/crates.io-index" 460checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 461dependencies = [ 462 "generic-array", 463] 464 465[[package]] 466name = "blocking" 467version = "1.6.2" 468source = "registry+https://github.com/rust-lang/crates.io-index" 469checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" 470dependencies = [ 471 "async-channel 2.5.0", 472 "async-task", 473 "futures-io", 474 "futures-lite", 475 "piper", 476] 477 478[[package]] 479name = "bon" 480version = "3.8.1" 481source = "registry+https://github.com/rust-lang/crates.io-index" 482checksum = "ebeb9aaf9329dff6ceb65c689ca3db33dbf15f324909c60e4e5eef5701ce31b1" 483dependencies = [ 484 "bon-macros", 485 "rustversion", 486] 487 488[[package]] 489name = "bon-macros" 490version = "3.8.1" 491source = "registry+https://github.com/rust-lang/crates.io-index" 492checksum = "77e9d642a7e3a318e37c2c9427b5a6a48aa1ad55dcd986f3034ab2239045a645" 493dependencies = [ 494 "darling 0.21.3", 495 "ident_case", 496 "prettyplease", 497 "proc-macro2", 498 "quote", 499 "rustversion", 500 "syn 2.0.112", 501] 502 503[[package]] 504name = "borsh" 505version = "1.6.0" 506source = "registry+https://github.com/rust-lang/crates.io-index" 507checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f" 508dependencies = [ 509 "cfg_aliases", 510] 511 512[[package]] 513name = "bstr" 514version = "1.12.1" 515source = "registry+https://github.com/rust-lang/crates.io-index" 516checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab" 517dependencies = [ 518 "memchr", 519 "serde", 520] 521 522[[package]] 523name = "btree-range-map" 524version = "0.7.2" 525source = "registry+https://github.com/rust-lang/crates.io-index" 526checksum = "1be5c9672446d3800bcbcaabaeba121fe22f1fb25700c4562b22faf76d377c33" 527dependencies = [ 528 "btree-slab", 529 "cc-traits", 530 "range-traits", 531 "serde", 532 "slab", 533] 534 535[[package]] 536name = "btree-slab" 537version = "0.6.1" 538source = "registry+https://github.com/rust-lang/crates.io-index" 539checksum = "7a2b56d3029f075c4fa892428a098425b86cef5c89ae54073137ece416aef13c" 540dependencies = [ 541 "cc-traits", 542 "slab", 543 "smallvec", 544] 545 546[[package]] 547name = "bumpalo" 548version = "3.19.1" 549source = "registry+https://github.com/rust-lang/crates.io-index" 550checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" 551 552[[package]] 553name = "byteorder" 554version = "1.5.0" 555source = "registry+https://github.com/rust-lang/crates.io-index" 556checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 557 558[[package]] 559name = "bytes" 560version = "1.11.0" 561source = "registry+https://github.com/rust-lang/crates.io-index" 562checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" 563dependencies = [ 564 "serde", 565] 566 567[[package]] 568name = "cbor4ii" 569version = "0.2.14" 570source = "registry+https://github.com/rust-lang/crates.io-index" 571checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4" 572dependencies = [ 573 "serde", 574] 575 576[[package]] 577name = "cc" 578version = "1.2.51" 579source = "registry+https://github.com/rust-lang/crates.io-index" 580checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203" 581dependencies = [ 582 "find-msvc-tools", 583 "jobserver", 584 "libc", 585 "shlex", 586] 587 588[[package]] 589name = "cc-traits" 590version = "2.0.0" 591source = "registry+https://github.com/rust-lang/crates.io-index" 592checksum = "060303ef31ef4a522737e1b1ab68c67916f2a787bb2f4f54f383279adba962b5" 593dependencies = [ 594 "slab", 595] 596 597[[package]] 598name = "cfg-if" 599version = "1.0.4" 600source = "registry+https://github.com/rust-lang/crates.io-index" 601checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 602 603[[package]] 604name = "cfg_aliases" 605version = "0.2.1" 606source = "registry+https://github.com/rust-lang/crates.io-index" 607checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 608 609[[package]] 610name = "chrono" 611version = "0.4.42" 612source = "registry+https://github.com/rust-lang/crates.io-index" 613checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" 614dependencies = [ 615 "iana-time-zone", 616 "js-sys", 617 "num-traits", 618 "serde", 619 "wasm-bindgen", 620 "windows-link", 621] 622 623[[package]] 624name = "chumsky" 625version = "0.9.3" 626source = "registry+https://github.com/rust-lang/crates.io-index" 627checksum = "8eebd66744a15ded14960ab4ccdbfb51ad3b81f51f3f04a80adac98c985396c9" 628dependencies = [ 629 "hashbrown 0.14.5", 630 "stacker", 631] 632 633[[package]] 634name = "ciborium" 635version = "0.2.2" 636source = "registry+https://github.com/rust-lang/crates.io-index" 637checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 638dependencies = [ 639 "ciborium-io", 640 "ciborium-ll", 641 "serde", 642] 643 644[[package]] 645name = "ciborium-io" 646version = "0.2.2" 647source = "registry+https://github.com/rust-lang/crates.io-index" 648checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 649 650[[package]] 651name = "ciborium-ll" 652version = "0.2.2" 653source = "registry+https://github.com/rust-lang/crates.io-index" 654checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 655dependencies = [ 656 "ciborium-io", 657 "half", 658] 659 660[[package]] 661name = "cid" 662version = "0.11.1" 663source = "registry+https://github.com/rust-lang/crates.io-index" 664checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" 665dependencies = [ 666 "core2", 667 "multibase", 668 "multihash", 669 "serde", 670 "serde_bytes", 671 "unsigned-varint", 672] 673 674[[package]] 675name = "cipher" 676version = "0.4.4" 677source = "registry+https://github.com/rust-lang/crates.io-index" 678checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 679dependencies = [ 680 "crypto-common", 681 "inout", 682] 683 684[[package]] 685name = "cmake" 686version = "0.1.57" 687source = "registry+https://github.com/rust-lang/crates.io-index" 688checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d" 689dependencies = [ 690 "cc", 691] 692 693[[package]] 694name = "cobs" 695version = "0.3.0" 696source = "registry+https://github.com/rust-lang/crates.io-index" 697checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" 698dependencies = [ 699 "thiserror 2.0.17", 700] 701 702[[package]] 703name = "compression-codecs" 704version = "0.4.35" 705source = "registry+https://github.com/rust-lang/crates.io-index" 706checksum = "b0f7ac3e5b97fdce45e8922fb05cae2c37f7bbd63d30dd94821dacfd8f3f2bf2" 707dependencies = [ 708 "compression-core", 709 "flate2", 710 "memchr", 711 "zstd", 712 "zstd-safe", 713] 714 715[[package]] 716name = "compression-core" 717version = "0.4.31" 718source = "registry+https://github.com/rust-lang/crates.io-index" 719checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d" 720 721[[package]] 722name = "concurrent-queue" 723version = "2.5.0" 724source = "registry+https://github.com/rust-lang/crates.io-index" 725checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 726dependencies = [ 727 "crossbeam-utils", 728] 729 730[[package]] 731name = "const-oid" 732version = "0.9.6" 733source = "registry+https://github.com/rust-lang/crates.io-index" 734checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 735 736[[package]] 737name = "const-str" 738version = "0.4.3" 739source = "registry+https://github.com/rust-lang/crates.io-index" 740checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" 741 742[[package]] 743name = "cookie" 744version = "0.18.1" 745source = "registry+https://github.com/rust-lang/crates.io-index" 746checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" 747dependencies = [ 748 "base64", 749 "hmac", 750 "percent-encoding", 751 "rand 0.8.5", 752 "sha2", 753 "subtle", 754 "time", 755 "version_check", 756] 757 758[[package]] 759name = "cordyceps" 760version = "0.3.4" 761source = "registry+https://github.com/rust-lang/crates.io-index" 762checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a" 763dependencies = [ 764 "loom", 765 "tracing", 766] 767 768[[package]] 769name = "core-foundation" 770version = "0.9.4" 771source = "registry+https://github.com/rust-lang/crates.io-index" 772checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 773dependencies = [ 774 "core-foundation-sys", 775 "libc", 776] 777 778[[package]] 779name = "core-foundation-sys" 780version = "0.8.7" 781source = "registry+https://github.com/rust-lang/crates.io-index" 782checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 783 784[[package]] 785name = "core2" 786version = "0.4.0" 787source = "registry+https://github.com/rust-lang/crates.io-index" 788checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 789dependencies = [ 790 "memchr", 791] 792 793[[package]] 794name = "cpufeatures" 795version = "0.2.17" 796source = "registry+https://github.com/rust-lang/crates.io-index" 797checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 798dependencies = [ 799 "libc", 800] 801 802[[package]] 803name = "crc" 804version = "3.4.0" 805source = "registry+https://github.com/rust-lang/crates.io-index" 806checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" 807dependencies = [ 808 "crc-catalog", 809] 810 811[[package]] 812name = "crc-catalog" 813version = "2.4.0" 814source = "registry+https://github.com/rust-lang/crates.io-index" 815checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 816 817[[package]] 818name = "crc32fast" 819version = "1.5.0" 820source = "registry+https://github.com/rust-lang/crates.io-index" 821checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 822dependencies = [ 823 "cfg-if", 824] 825 826[[package]] 827name = "critical-section" 828version = "1.2.0" 829source = "registry+https://github.com/rust-lang/crates.io-index" 830checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" 831 832[[package]] 833name = "crossbeam-queue" 834version = "0.3.12" 835source = "registry+https://github.com/rust-lang/crates.io-index" 836checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" 837dependencies = [ 838 "crossbeam-utils", 839] 840 841[[package]] 842name = "crossbeam-utils" 843version = "0.8.21" 844source = "registry+https://github.com/rust-lang/crates.io-index" 845checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 846 847[[package]] 848name = "crunchy" 849version = "0.2.4" 850source = "registry+https://github.com/rust-lang/crates.io-index" 851checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 852 853[[package]] 854name = "crypto-bigint" 855version = "0.5.5" 856source = "registry+https://github.com/rust-lang/crates.io-index" 857checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 858dependencies = [ 859 "generic-array", 860 "rand_core 0.6.4", 861 "subtle", 862 "zeroize", 863] 864 865[[package]] 866name = "crypto-common" 867version = "0.1.7" 868source = "registry+https://github.com/rust-lang/crates.io-index" 869checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" 870dependencies = [ 871 "generic-array", 872 "typenum", 873] 874 875[[package]] 876name = "darling" 877version = "0.20.11" 878source = "registry+https://github.com/rust-lang/crates.io-index" 879checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" 880dependencies = [ 881 "darling_core 0.20.11", 882 "darling_macro 0.20.11", 883] 884 885[[package]] 886name = "darling" 887version = "0.21.3" 888source = "registry+https://github.com/rust-lang/crates.io-index" 889checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" 890dependencies = [ 891 "darling_core 0.21.3", 892 "darling_macro 0.21.3", 893] 894 895[[package]] 896name = "darling_core" 897version = "0.20.11" 898source = "registry+https://github.com/rust-lang/crates.io-index" 899checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" 900dependencies = [ 901 "fnv", 902 "ident_case", 903 "proc-macro2", 904 "quote", 905 "strsim", 906 "syn 2.0.112", 907] 908 909[[package]] 910name = "darling_core" 911version = "0.21.3" 912source = "registry+https://github.com/rust-lang/crates.io-index" 913checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" 914dependencies = [ 915 "fnv", 916 "ident_case", 917 "proc-macro2", 918 "quote", 919 "strsim", 920 "syn 2.0.112", 921] 922 923[[package]] 924name = "darling_macro" 925version = "0.20.11" 926source = "registry+https://github.com/rust-lang/crates.io-index" 927checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" 928dependencies = [ 929 "darling_core 0.20.11", 930 "quote", 931 "syn 2.0.112", 932] 933 934[[package]] 935name = "darling_macro" 936version = "0.21.3" 937source = "registry+https://github.com/rust-lang/crates.io-index" 938checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" 939dependencies = [ 940 "darling_core 0.21.3", 941 "quote", 942 "syn 2.0.112", 943] 944 945[[package]] 946name = "dashmap" 947version = "6.1.0" 948source = "registry+https://github.com/rust-lang/crates.io-index" 949checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" 950dependencies = [ 951 "cfg-if", 952 "crossbeam-utils", 953 "hashbrown 0.14.5", 954 "lock_api", 955 "once_cell", 956 "parking_lot_core", 957] 958 959[[package]] 960name = "data-encoding" 961version = "2.9.0" 962source = "registry+https://github.com/rust-lang/crates.io-index" 963checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 964 965[[package]] 966name = "data-encoding-macro" 967version = "0.1.18" 968source = "registry+https://github.com/rust-lang/crates.io-index" 969checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d" 970dependencies = [ 971 "data-encoding", 972 "data-encoding-macro-internal", 973] 974 975[[package]] 976name = "data-encoding-macro-internal" 977version = "0.1.16" 978source = "registry+https://github.com/rust-lang/crates.io-index" 979checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" 980dependencies = [ 981 "data-encoding", 982 "syn 2.0.112", 983] 984 985[[package]] 986name = "der" 987version = "0.7.10" 988source = "registry+https://github.com/rust-lang/crates.io-index" 989checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 990dependencies = [ 991 "const-oid", 992 "pem-rfc7468", 993 "zeroize", 994] 995 996[[package]] 997name = "deranged" 998version = "0.5.5" 999source = "registry+https://github.com/rust-lang/crates.io-index" 1000checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" 1001dependencies = [ 1002 "powerfmt", 1003 "serde_core", 1004] 1005 1006[[package]] 1007name = "derive_builder" 1008version = "0.20.2" 1009source = "registry+https://github.com/rust-lang/crates.io-index" 1010checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947" 1011dependencies = [ 1012 "derive_builder_macro", 1013] 1014 1015[[package]] 1016name = "derive_builder_core" 1017version = "0.20.2" 1018source = "registry+https://github.com/rust-lang/crates.io-index" 1019checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8" 1020dependencies = [ 1021 "darling 0.20.11", 1022 "proc-macro2", 1023 "quote", 1024 "syn 2.0.112", 1025] 1026 1027[[package]] 1028name = "derive_builder_macro" 1029version = "0.20.2" 1030source = "registry+https://github.com/rust-lang/crates.io-index" 1031checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" 1032dependencies = [ 1033 "derive_builder_core", 1034 "syn 2.0.112", 1035] 1036 1037[[package]] 1038name = "derive_more" 1039version = "1.0.0" 1040source = "registry+https://github.com/rust-lang/crates.io-index" 1041checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" 1042dependencies = [ 1043 "derive_more-impl", 1044] 1045 1046[[package]] 1047name = "derive_more-impl" 1048version = "1.0.0" 1049source = "registry+https://github.com/rust-lang/crates.io-index" 1050checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" 1051dependencies = [ 1052 "proc-macro2", 1053 "quote", 1054 "syn 2.0.112", 1055 "unicode-xid", 1056] 1057 1058[[package]] 1059name = "diatomic-waker" 1060version = "0.2.3" 1061source = "registry+https://github.com/rust-lang/crates.io-index" 1062checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c" 1063 1064[[package]] 1065name = "digest" 1066version = "0.10.7" 1067source = "registry+https://github.com/rust-lang/crates.io-index" 1068checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1069dependencies = [ 1070 "block-buffer", 1071 "const-oid", 1072 "crypto-common", 1073 "subtle", 1074] 1075 1076[[package]] 1077name = "displaydoc" 1078version = "0.2.5" 1079source = "registry+https://github.com/rust-lang/crates.io-index" 1080checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 1081dependencies = [ 1082 "proc-macro2", 1083 "quote", 1084 "syn 2.0.112", 1085] 1086 1087[[package]] 1088name = "dotenvy" 1089version = "0.15.7" 1090source = "registry+https://github.com/rust-lang/crates.io-index" 1091checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 1092 1093[[package]] 1094name = "dunce" 1095version = "1.0.5" 1096source = "registry+https://github.com/rust-lang/crates.io-index" 1097checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" 1098 1099[[package]] 1100name = "dyn-clone" 1101version = "1.0.20" 1102source = "registry+https://github.com/rust-lang/crates.io-index" 1103checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" 1104 1105[[package]] 1106name = "ecdsa" 1107version = "0.16.9" 1108source = "registry+https://github.com/rust-lang/crates.io-index" 1109checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 1110dependencies = [ 1111 "der", 1112 "digest", 1113 "elliptic-curve", 1114 "rfc6979", 1115 "signature", 1116 "spki", 1117] 1118 1119[[package]] 1120name = "either" 1121version = "1.15.0" 1122source = "registry+https://github.com/rust-lang/crates.io-index" 1123checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 1124dependencies = [ 1125 "serde", 1126] 1127 1128[[package]] 1129name = "elliptic-curve" 1130version = "0.13.8" 1131source = "registry+https://github.com/rust-lang/crates.io-index" 1132checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 1133dependencies = [ 1134 "base16ct", 1135 "base64ct", 1136 "crypto-bigint", 1137 "digest", 1138 "ff", 1139 "generic-array", 1140 "group", 1141 "pem-rfc7468", 1142 "pkcs8", 1143 "rand_core 0.6.4", 1144 "sec1", 1145 "serde_json", 1146 "serdect", 1147 "subtle", 1148 "zeroize", 1149] 1150 1151[[package]] 1152name = "email-encoding" 1153version = "0.4.1" 1154source = "registry+https://github.com/rust-lang/crates.io-index" 1155checksum = "9298e6504d9b9e780ed3f7dfd43a61be8cd0e09eb07f7706a945b0072b6670b6" 1156dependencies = [ 1157 "base64", 1158 "memchr", 1159] 1160 1161[[package]] 1162name = "email_address" 1163version = "0.2.9" 1164source = "registry+https://github.com/rust-lang/crates.io-index" 1165checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449" 1166 1167[[package]] 1168name = "embedded-io" 1169version = "0.4.0" 1170source = "registry+https://github.com/rust-lang/crates.io-index" 1171checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" 1172 1173[[package]] 1174name = "embedded-io" 1175version = "0.6.1" 1176source = "registry+https://github.com/rust-lang/crates.io-index" 1177checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" 1178 1179[[package]] 1180name = "encoding_rs" 1181version = "0.8.35" 1182source = "registry+https://github.com/rust-lang/crates.io-index" 1183checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 1184dependencies = [ 1185 "cfg-if", 1186] 1187 1188[[package]] 1189name = "equivalent" 1190version = "1.0.2" 1191source = "registry+https://github.com/rust-lang/crates.io-index" 1192checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 1193 1194[[package]] 1195name = "errno" 1196version = "0.3.14" 1197source = "registry+https://github.com/rust-lang/crates.io-index" 1198checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 1199dependencies = [ 1200 "libc", 1201 "windows-sys 0.61.2", 1202] 1203 1204[[package]] 1205name = "etcetera" 1206version = "0.8.0" 1207source = "registry+https://github.com/rust-lang/crates.io-index" 1208checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" 1209dependencies = [ 1210 "cfg-if", 1211 "home", 1212 "windows-sys 0.48.0", 1213] 1214 1215[[package]] 1216name = "event-listener" 1217version = "2.5.3" 1218source = "registry+https://github.com/rust-lang/crates.io-index" 1219checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1220 1221[[package]] 1222name = "event-listener" 1223version = "5.4.1" 1224source = "registry+https://github.com/rust-lang/crates.io-index" 1225checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 1226dependencies = [ 1227 "concurrent-queue", 1228 "parking", 1229 "pin-project-lite", 1230] 1231 1232[[package]] 1233name = "event-listener-strategy" 1234version = "0.5.4" 1235source = "registry+https://github.com/rust-lang/crates.io-index" 1236checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 1237dependencies = [ 1238 "event-listener 5.4.1", 1239 "pin-project-lite", 1240] 1241 1242[[package]] 1243name = "fastrand" 1244version = "2.3.0" 1245source = "registry+https://github.com/rust-lang/crates.io-index" 1246checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 1247 1248[[package]] 1249name = "ff" 1250version = "0.13.1" 1251source = "registry+https://github.com/rust-lang/crates.io-index" 1252checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" 1253dependencies = [ 1254 "rand_core 0.6.4", 1255 "subtle", 1256] 1257 1258[[package]] 1259name = "find-msvc-tools" 1260version = "0.1.6" 1261source = "registry+https://github.com/rust-lang/crates.io-index" 1262checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff" 1263 1264[[package]] 1265name = "flate2" 1266version = "1.1.5" 1267source = "registry+https://github.com/rust-lang/crates.io-index" 1268checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" 1269dependencies = [ 1270 "crc32fast", 1271 "miniz_oxide", 1272] 1273 1274[[package]] 1275name = "flume" 1276version = "0.11.1" 1277source = "registry+https://github.com/rust-lang/crates.io-index" 1278checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" 1279dependencies = [ 1280 "futures-core", 1281 "futures-sink", 1282 "spin 0.9.8", 1283] 1284 1285[[package]] 1286name = "fnv" 1287version = "1.0.7" 1288source = "registry+https://github.com/rust-lang/crates.io-index" 1289checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1290 1291[[package]] 1292name = "foldhash" 1293version = "0.1.5" 1294source = "registry+https://github.com/rust-lang/crates.io-index" 1295checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 1296 1297[[package]] 1298name = "foldhash" 1299version = "0.2.0" 1300source = "registry+https://github.com/rust-lang/crates.io-index" 1301checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" 1302 1303[[package]] 1304name = "foreign-types" 1305version = "0.3.2" 1306source = "registry+https://github.com/rust-lang/crates.io-index" 1307checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1308dependencies = [ 1309 "foreign-types-shared", 1310] 1311 1312[[package]] 1313name = "foreign-types-shared" 1314version = "0.1.1" 1315source = "registry+https://github.com/rust-lang/crates.io-index" 1316checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1317 1318[[package]] 1319name = "form_urlencoded" 1320version = "1.2.2" 1321source = "registry+https://github.com/rust-lang/crates.io-index" 1322checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 1323dependencies = [ 1324 "percent-encoding", 1325] 1326 1327[[package]] 1328name = "forwarded-header-value" 1329version = "0.1.1" 1330source = "registry+https://github.com/rust-lang/crates.io-index" 1331checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9" 1332dependencies = [ 1333 "nonempty", 1334 "thiserror 1.0.69", 1335] 1336 1337[[package]] 1338name = "fs_extra" 1339version = "1.3.0" 1340source = "registry+https://github.com/rust-lang/crates.io-index" 1341checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" 1342 1343[[package]] 1344name = "futures-buffered" 1345version = "0.2.12" 1346source = "registry+https://github.com/rust-lang/crates.io-index" 1347checksum = "a8e0e1f38ec07ba4abbde21eed377082f17ccb988be9d988a5adbf4bafc118fd" 1348dependencies = [ 1349 "cordyceps", 1350 "diatomic-waker", 1351 "futures-core", 1352 "pin-project-lite", 1353 "spin 0.10.0", 1354] 1355 1356[[package]] 1357name = "futures-channel" 1358version = "0.3.31" 1359source = "registry+https://github.com/rust-lang/crates.io-index" 1360checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 1361dependencies = [ 1362 "futures-core", 1363 "futures-sink", 1364] 1365 1366[[package]] 1367name = "futures-core" 1368version = "0.3.31" 1369source = "registry+https://github.com/rust-lang/crates.io-index" 1370checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 1371 1372[[package]] 1373name = "futures-executor" 1374version = "0.3.31" 1375source = "registry+https://github.com/rust-lang/crates.io-index" 1376checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 1377dependencies = [ 1378 "futures-core", 1379 "futures-task", 1380 "futures-util", 1381] 1382 1383[[package]] 1384name = "futures-intrusive" 1385version = "0.5.0" 1386source = "registry+https://github.com/rust-lang/crates.io-index" 1387checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" 1388dependencies = [ 1389 "futures-core", 1390 "lock_api", 1391 "parking_lot", 1392] 1393 1394[[package]] 1395name = "futures-io" 1396version = "0.3.31" 1397source = "registry+https://github.com/rust-lang/crates.io-index" 1398checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 1399 1400[[package]] 1401name = "futures-lite" 1402version = "2.6.1" 1403source = "registry+https://github.com/rust-lang/crates.io-index" 1404checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 1405dependencies = [ 1406 "fastrand", 1407 "futures-core", 1408 "futures-io", 1409 "parking", 1410 "pin-project-lite", 1411] 1412 1413[[package]] 1414name = "futures-macro" 1415version = "0.3.31" 1416source = "registry+https://github.com/rust-lang/crates.io-index" 1417checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1418dependencies = [ 1419 "proc-macro2", 1420 "quote", 1421 "syn 2.0.112", 1422] 1423 1424[[package]] 1425name = "futures-sink" 1426version = "0.3.31" 1427source = "registry+https://github.com/rust-lang/crates.io-index" 1428checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 1429 1430[[package]] 1431name = "futures-task" 1432version = "0.3.31" 1433source = "registry+https://github.com/rust-lang/crates.io-index" 1434checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 1435 1436[[package]] 1437name = "futures-timer" 1438version = "3.0.3" 1439source = "registry+https://github.com/rust-lang/crates.io-index" 1440checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" 1441 1442[[package]] 1443name = "futures-util" 1444version = "0.3.31" 1445source = "registry+https://github.com/rust-lang/crates.io-index" 1446checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1447dependencies = [ 1448 "futures-core", 1449 "futures-io", 1450 "futures-macro", 1451 "futures-sink", 1452 "futures-task", 1453 "memchr", 1454 "pin-project-lite", 1455 "pin-utils", 1456 "slab", 1457] 1458 1459[[package]] 1460name = "generator" 1461version = "0.8.8" 1462source = "registry+https://github.com/rust-lang/crates.io-index" 1463checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9" 1464dependencies = [ 1465 "cc", 1466 "cfg-if", 1467 "libc", 1468 "log", 1469 "rustversion", 1470 "windows-link", 1471 "windows-result", 1472] 1473 1474[[package]] 1475name = "generic-array" 1476version = "0.14.7" 1477source = "registry+https://github.com/rust-lang/crates.io-index" 1478checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1479dependencies = [ 1480 "typenum", 1481 "version_check", 1482 "zeroize", 1483] 1484 1485[[package]] 1486name = "getrandom" 1487version = "0.2.16" 1488source = "registry+https://github.com/rust-lang/crates.io-index" 1489checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 1490dependencies = [ 1491 "cfg-if", 1492 "js-sys", 1493 "libc", 1494 "wasi", 1495 "wasm-bindgen", 1496] 1497 1498[[package]] 1499name = "getrandom" 1500version = "0.3.4" 1501source = "registry+https://github.com/rust-lang/crates.io-index" 1502checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 1503dependencies = [ 1504 "cfg-if", 1505 "js-sys", 1506 "libc", 1507 "r-efi", 1508 "wasip2", 1509 "wasm-bindgen", 1510] 1511 1512[[package]] 1513name = "getrandom" 1514version = "0.4.1" 1515source = "registry+https://github.com/rust-lang/crates.io-index" 1516checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec" 1517dependencies = [ 1518 "cfg-if", 1519 "libc", 1520 "r-efi", 1521 "wasip2", 1522 "wasip3", 1523] 1524 1525[[package]] 1526name = "globset" 1527version = "0.4.18" 1528source = "registry+https://github.com/rust-lang/crates.io-index" 1529checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3" 1530dependencies = [ 1531 "aho-corasick", 1532 "bstr", 1533 "log", 1534 "regex-automata", 1535 "regex-syntax", 1536] 1537 1538[[package]] 1539name = "gloo-timers" 1540version = "0.3.0" 1541source = "registry+https://github.com/rust-lang/crates.io-index" 1542checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994" 1543dependencies = [ 1544 "futures-channel", 1545 "futures-core", 1546 "js-sys", 1547 "wasm-bindgen", 1548] 1549 1550[[package]] 1551name = "governor" 1552version = "0.10.4" 1553source = "registry+https://github.com/rust-lang/crates.io-index" 1554checksum = "9efcab3c1958580ff1f25a2a41be1668f7603d849bb63af523b208a3cc1223b8" 1555dependencies = [ 1556 "cfg-if", 1557 "dashmap", 1558 "futures-sink", 1559 "futures-timer", 1560 "futures-util", 1561 "getrandom 0.3.4", 1562 "hashbrown 0.16.1", 1563 "nonzero_ext", 1564 "parking_lot", 1565 "portable-atomic", 1566 "quanta", 1567 "rand 0.9.2", 1568 "smallvec", 1569 "spinning_top", 1570 "web-time", 1571] 1572 1573[[package]] 1574name = "group" 1575version = "0.13.0" 1576source = "registry+https://github.com/rust-lang/crates.io-index" 1577checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 1578dependencies = [ 1579 "ff", 1580 "rand_core 0.6.4", 1581 "subtle", 1582] 1583 1584[[package]] 1585name = "h2" 1586version = "0.4.12" 1587source = "registry+https://github.com/rust-lang/crates.io-index" 1588checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" 1589dependencies = [ 1590 "atomic-waker", 1591 "bytes", 1592 "fnv", 1593 "futures-core", 1594 "futures-sink", 1595 "http", 1596 "indexmap 2.12.1", 1597 "slab", 1598 "tokio", 1599 "tokio-util", 1600 "tracing", 1601] 1602 1603[[package]] 1604name = "half" 1605version = "2.7.1" 1606source = "registry+https://github.com/rust-lang/crates.io-index" 1607checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" 1608dependencies = [ 1609 "cfg-if", 1610 "crunchy", 1611 "zerocopy", 1612] 1613 1614[[package]] 1615name = "handlebars" 1616version = "6.4.0" 1617source = "registry+https://github.com/rust-lang/crates.io-index" 1618checksum = "9b3f9296c208515b87bd915a2f5d1163d4b3f863ba83337d7713cf478055948e" 1619dependencies = [ 1620 "derive_builder", 1621 "log", 1622 "num-order", 1623 "pest", 1624 "pest_derive", 1625 "rust-embed", 1626 "serde", 1627 "serde_json", 1628 "thiserror 2.0.17", 1629] 1630 1631[[package]] 1632name = "hash32" 1633version = "0.2.1" 1634source = "registry+https://github.com/rust-lang/crates.io-index" 1635checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67" 1636dependencies = [ 1637 "byteorder", 1638] 1639 1640[[package]] 1641name = "hashbrown" 1642version = "0.12.3" 1643source = "registry+https://github.com/rust-lang/crates.io-index" 1644checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1645 1646[[package]] 1647name = "hashbrown" 1648version = "0.14.5" 1649source = "registry+https://github.com/rust-lang/crates.io-index" 1650checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1651dependencies = [ 1652 "ahash", 1653 "allocator-api2", 1654] 1655 1656[[package]] 1657name = "hashbrown" 1658version = "0.15.5" 1659source = "registry+https://github.com/rust-lang/crates.io-index" 1660checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 1661dependencies = [ 1662 "allocator-api2", 1663 "equivalent", 1664 "foldhash 0.1.5", 1665] 1666 1667[[package]] 1668name = "hashbrown" 1669version = "0.16.1" 1670source = "registry+https://github.com/rust-lang/crates.io-index" 1671checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 1672dependencies = [ 1673 "allocator-api2", 1674 "equivalent", 1675 "foldhash 0.2.0", 1676] 1677 1678[[package]] 1679name = "hashlink" 1680version = "0.10.0" 1681source = "registry+https://github.com/rust-lang/crates.io-index" 1682checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1" 1683dependencies = [ 1684 "hashbrown 0.15.5", 1685] 1686 1687[[package]] 1688name = "heapless" 1689version = "0.7.17" 1690source = "registry+https://github.com/rust-lang/crates.io-index" 1691checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f" 1692dependencies = [ 1693 "atomic-polyfill", 1694 "hash32", 1695 "rustc_version", 1696 "serde", 1697 "spin 0.9.8", 1698 "stable_deref_trait", 1699] 1700 1701[[package]] 1702name = "heck" 1703version = "0.4.1" 1704source = "registry+https://github.com/rust-lang/crates.io-index" 1705checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1706 1707[[package]] 1708name = "heck" 1709version = "0.5.0" 1710source = "registry+https://github.com/rust-lang/crates.io-index" 1711checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1712 1713[[package]] 1714name = "hermit-abi" 1715version = "0.5.2" 1716source = "registry+https://github.com/rust-lang/crates.io-index" 1717checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 1718 1719[[package]] 1720name = "hex" 1721version = "0.4.3" 1722source = "registry+https://github.com/rust-lang/crates.io-index" 1723checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1724 1725[[package]] 1726name = "hex_fmt" 1727version = "0.3.0" 1728source = "registry+https://github.com/rust-lang/crates.io-index" 1729checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f" 1730 1731[[package]] 1732name = "hkdf" 1733version = "0.12.4" 1734source = "registry+https://github.com/rust-lang/crates.io-index" 1735checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 1736dependencies = [ 1737 "hmac", 1738] 1739 1740[[package]] 1741name = "hmac" 1742version = "0.12.1" 1743source = "registry+https://github.com/rust-lang/crates.io-index" 1744checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1745dependencies = [ 1746 "digest", 1747] 1748 1749[[package]] 1750name = "home" 1751version = "0.5.12" 1752source = "registry+https://github.com/rust-lang/crates.io-index" 1753checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" 1754dependencies = [ 1755 "windows-sys 0.61.2", 1756] 1757 1758[[package]] 1759name = "html-escape" 1760version = "0.2.13" 1761source = "registry+https://github.com/rust-lang/crates.io-index" 1762checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476" 1763dependencies = [ 1764 "utf8-width", 1765] 1766 1767[[package]] 1768name = "http" 1769version = "1.4.0" 1770source = "registry+https://github.com/rust-lang/crates.io-index" 1771checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" 1772dependencies = [ 1773 "bytes", 1774 "itoa", 1775] 1776 1777[[package]] 1778name = "http-body" 1779version = "1.0.1" 1780source = "registry+https://github.com/rust-lang/crates.io-index" 1781checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1782dependencies = [ 1783 "bytes", 1784 "http", 1785] 1786 1787[[package]] 1788name = "http-body-util" 1789version = "0.1.3" 1790source = "registry+https://github.com/rust-lang/crates.io-index" 1791checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 1792dependencies = [ 1793 "bytes", 1794 "futures-core", 1795 "http", 1796 "http-body", 1797 "pin-project-lite", 1798] 1799 1800[[package]] 1801name = "httparse" 1802version = "1.10.1" 1803source = "registry+https://github.com/rust-lang/crates.io-index" 1804checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1805 1806[[package]] 1807name = "httpdate" 1808version = "1.0.3" 1809source = "registry+https://github.com/rust-lang/crates.io-index" 1810checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1811 1812[[package]] 1813name = "hyper" 1814version = "1.8.1" 1815source = "registry+https://github.com/rust-lang/crates.io-index" 1816checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" 1817dependencies = [ 1818 "atomic-waker", 1819 "bytes", 1820 "futures-channel", 1821 "futures-core", 1822 "h2", 1823 "http", 1824 "http-body", 1825 "httparse", 1826 "httpdate", 1827 "itoa", 1828 "pin-project-lite", 1829 "pin-utils", 1830 "smallvec", 1831 "tokio", 1832 "want", 1833] 1834 1835[[package]] 1836name = "hyper-rustls" 1837version = "0.27.7" 1838source = "registry+https://github.com/rust-lang/crates.io-index" 1839checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 1840dependencies = [ 1841 "http", 1842 "hyper", 1843 "hyper-util", 1844 "rustls", 1845 "rustls-pki-types", 1846 "tokio", 1847 "tokio-rustls", 1848 "tower-service", 1849 "webpki-roots 1.0.5", 1850] 1851 1852[[package]] 1853name = "hyper-timeout" 1854version = "0.5.2" 1855source = "registry+https://github.com/rust-lang/crates.io-index" 1856checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" 1857dependencies = [ 1858 "hyper", 1859 "hyper-util", 1860 "pin-project-lite", 1861 "tokio", 1862 "tower-service", 1863] 1864 1865[[package]] 1866name = "hyper-util" 1867version = "0.1.19" 1868source = "registry+https://github.com/rust-lang/crates.io-index" 1869checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" 1870dependencies = [ 1871 "base64", 1872 "bytes", 1873 "futures-channel", 1874 "futures-core", 1875 "futures-util", 1876 "http", 1877 "http-body", 1878 "hyper", 1879 "ipnet", 1880 "libc", 1881 "percent-encoding", 1882 "pin-project-lite", 1883 "socket2", 1884 "system-configuration", 1885 "tokio", 1886 "tower-service", 1887 "tracing", 1888 "windows-registry", 1889] 1890 1891[[package]] 1892name = "iana-time-zone" 1893version = "0.1.64" 1894source = "registry+https://github.com/rust-lang/crates.io-index" 1895checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" 1896dependencies = [ 1897 "android_system_properties", 1898 "core-foundation-sys", 1899 "iana-time-zone-haiku", 1900 "js-sys", 1901 "log", 1902 "wasm-bindgen", 1903 "windows-core", 1904] 1905 1906[[package]] 1907name = "iana-time-zone-haiku" 1908version = "0.1.2" 1909source = "registry+https://github.com/rust-lang/crates.io-index" 1910checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1911dependencies = [ 1912 "cc", 1913] 1914 1915[[package]] 1916name = "icu_collections" 1917version = "2.1.1" 1918source = "registry+https://github.com/rust-lang/crates.io-index" 1919checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" 1920dependencies = [ 1921 "displaydoc", 1922 "potential_utf", 1923 "yoke", 1924 "zerofrom", 1925 "zerovec", 1926] 1927 1928[[package]] 1929name = "icu_locale_core" 1930version = "2.1.1" 1931source = "registry+https://github.com/rust-lang/crates.io-index" 1932checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" 1933dependencies = [ 1934 "displaydoc", 1935 "litemap", 1936 "tinystr", 1937 "writeable", 1938 "zerovec", 1939] 1940 1941[[package]] 1942name = "icu_normalizer" 1943version = "2.1.1" 1944source = "registry+https://github.com/rust-lang/crates.io-index" 1945checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" 1946dependencies = [ 1947 "icu_collections", 1948 "icu_normalizer_data", 1949 "icu_properties", 1950 "icu_provider", 1951 "smallvec", 1952 "zerovec", 1953] 1954 1955[[package]] 1956name = "icu_normalizer_data" 1957version = "2.1.1" 1958source = "registry+https://github.com/rust-lang/crates.io-index" 1959checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" 1960 1961[[package]] 1962name = "icu_properties" 1963version = "2.1.2" 1964source = "registry+https://github.com/rust-lang/crates.io-index" 1965checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" 1966dependencies = [ 1967 "icu_collections", 1968 "icu_locale_core", 1969 "icu_properties_data", 1970 "icu_provider", 1971 "zerotrie", 1972 "zerovec", 1973] 1974 1975[[package]] 1976name = "icu_properties_data" 1977version = "2.1.2" 1978source = "registry+https://github.com/rust-lang/crates.io-index" 1979checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" 1980 1981[[package]] 1982name = "icu_provider" 1983version = "2.1.1" 1984source = "registry+https://github.com/rust-lang/crates.io-index" 1985checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" 1986dependencies = [ 1987 "displaydoc", 1988 "icu_locale_core", 1989 "writeable", 1990 "yoke", 1991 "zerofrom", 1992 "zerotrie", 1993 "zerovec", 1994] 1995 1996[[package]] 1997name = "id-arena" 1998version = "2.3.0" 1999source = "registry+https://github.com/rust-lang/crates.io-index" 2000checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" 2001 2002[[package]] 2003name = "ident_case" 2004version = "1.0.1" 2005source = "registry+https://github.com/rust-lang/crates.io-index" 2006checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2007 2008[[package]] 2009name = "idna" 2010version = "1.1.0" 2011source = "registry+https://github.com/rust-lang/crates.io-index" 2012checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 2013dependencies = [ 2014 "idna_adapter", 2015 "smallvec", 2016 "utf8_iter", 2017] 2018 2019[[package]] 2020name = "idna_adapter" 2021version = "1.2.1" 2022source = "registry+https://github.com/rust-lang/crates.io-index" 2023checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 2024dependencies = [ 2025 "icu_normalizer", 2026 "icu_properties", 2027] 2028 2029[[package]] 2030name = "indexmap" 2031version = "1.9.3" 2032source = "registry+https://github.com/rust-lang/crates.io-index" 2033checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 2034dependencies = [ 2035 "autocfg", 2036 "hashbrown 0.12.3", 2037 "serde", 2038] 2039 2040[[package]] 2041name = "indexmap" 2042version = "2.12.1" 2043source = "registry+https://github.com/rust-lang/crates.io-index" 2044checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2" 2045dependencies = [ 2046 "equivalent", 2047 "hashbrown 0.16.1", 2048 "serde", 2049 "serde_core", 2050] 2051 2052[[package]] 2053name = "indoc" 2054version = "2.0.7" 2055source = "registry+https://github.com/rust-lang/crates.io-index" 2056checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706" 2057dependencies = [ 2058 "rustversion", 2059] 2060 2061[[package]] 2062name = "inout" 2063version = "0.1.4" 2064source = "registry+https://github.com/rust-lang/crates.io-index" 2065checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" 2066dependencies = [ 2067 "generic-array", 2068] 2069 2070[[package]] 2071name = "inventory" 2072version = "0.3.21" 2073source = "registry+https://github.com/rust-lang/crates.io-index" 2074checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e" 2075dependencies = [ 2076 "rustversion", 2077] 2078 2079[[package]] 2080name = "ipld-core" 2081version = "0.4.2" 2082source = "registry+https://github.com/rust-lang/crates.io-index" 2083checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db" 2084dependencies = [ 2085 "cid", 2086 "serde", 2087 "serde_bytes", 2088] 2089 2090[[package]] 2091name = "ipnet" 2092version = "2.11.0" 2093source = "registry+https://github.com/rust-lang/crates.io-index" 2094checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 2095 2096[[package]] 2097name = "iri-string" 2098version = "0.7.10" 2099source = "registry+https://github.com/rust-lang/crates.io-index" 2100checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" 2101dependencies = [ 2102 "memchr", 2103 "serde", 2104] 2105 2106[[package]] 2107name = "itoa" 2108version = "1.0.17" 2109source = "registry+https://github.com/rust-lang/crates.io-index" 2110checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" 2111 2112[[package]] 2113name = "jacquard-api" 2114version = "0.9.5" 2115source = "registry+https://github.com/rust-lang/crates.io-index" 2116checksum = "4979fb1848c1dd7ac8fd12745bc71f56f6da61374407d5f9b06005467a954e5a" 2117dependencies = [ 2118 "bon", 2119 "bytes", 2120 "jacquard-common", 2121 "jacquard-derive", 2122 "jacquard-lexicon", 2123 "miette", 2124 "rustversion", 2125 "serde", 2126 "serde_bytes", 2127 "serde_ipld_dagcbor", 2128 "thiserror 2.0.17", 2129 "unicode-segmentation", 2130] 2131 2132[[package]] 2133name = "jacquard-common" 2134version = "0.9.5" 2135source = "registry+https://github.com/rust-lang/crates.io-index" 2136checksum = "1751921e0bdae5e0077afade6161545e9ef7698306c868f800916e99ecbcaae9" 2137dependencies = [ 2138 "base64", 2139 "bon", 2140 "bytes", 2141 "chrono", 2142 "cid", 2143 "getrandom 0.2.16", 2144 "getrandom 0.3.4", 2145 "http", 2146 "ipld-core", 2147 "k256", 2148 "langtag", 2149 "miette", 2150 "multibase", 2151 "multihash", 2152 "ouroboros", 2153 "p256", 2154 "postcard", 2155 "rand 0.9.2", 2156 "regex", 2157 "regex-lite", 2158 "reqwest", 2159 "serde", 2160 "serde_bytes", 2161 "serde_html_form", 2162 "serde_ipld_dagcbor", 2163 "serde_json", 2164 "signature", 2165 "smol_str", 2166 "thiserror 2.0.17", 2167 "tokio", 2168 "tokio-util", 2169 "trait-variant", 2170 "url", 2171] 2172 2173[[package]] 2174name = "jacquard-derive" 2175version = "0.9.5" 2176source = "registry+https://github.com/rust-lang/crates.io-index" 2177checksum = "9c8d73dfee07943fdab93569ed1c28b06c6921ed891c08b415c4a323ff67e593" 2178dependencies = [ 2179 "heck 0.5.0", 2180 "jacquard-lexicon", 2181 "proc-macro2", 2182 "quote", 2183 "syn 2.0.112", 2184] 2185 2186[[package]] 2187name = "jacquard-identity" 2188version = "0.9.5" 2189source = "registry+https://github.com/rust-lang/crates.io-index" 2190checksum = "e7aaefa819fa4213cf59f180dba932f018a7cd0599582fd38474ee2a38c16cf2" 2191dependencies = [ 2192 "bon", 2193 "bytes", 2194 "http", 2195 "jacquard-api", 2196 "jacquard-common", 2197 "jacquard-lexicon", 2198 "miette", 2199 "n0-future", 2200 "percent-encoding", 2201 "reqwest", 2202 "serde", 2203 "serde_html_form", 2204 "serde_json", 2205 "thiserror 2.0.17", 2206 "tokio", 2207 "trait-variant", 2208 "url", 2209 "urlencoding", 2210] 2211 2212[[package]] 2213name = "jacquard-lexicon" 2214version = "0.9.5" 2215source = "registry+https://github.com/rust-lang/crates.io-index" 2216checksum = "8411aff546569b0a1e0ef669bed2380cec1c00d48f02f3fcd57a71545321b3d8" 2217dependencies = [ 2218 "cid", 2219 "dashmap", 2220 "heck 0.5.0", 2221 "inventory", 2222 "jacquard-common", 2223 "miette", 2224 "multihash", 2225 "prettyplease", 2226 "proc-macro2", 2227 "quote", 2228 "serde", 2229 "serde_ipld_dagcbor", 2230 "serde_json", 2231 "serde_repr", 2232 "serde_with", 2233 "sha2", 2234 "syn 2.0.112", 2235 "thiserror 2.0.17", 2236 "unicode-segmentation", 2237] 2238 2239[[package]] 2240name = "jacquard-oauth" 2241version = "0.9.6" 2242source = "registry+https://github.com/rust-lang/crates.io-index" 2243checksum = "68bf0b0e061d85b09cfa78588dc098918d5b62f539a719165c6a806a1d2c0ef2" 2244dependencies = [ 2245 "base64", 2246 "bytes", 2247 "chrono", 2248 "dashmap", 2249 "elliptic-curve", 2250 "http", 2251 "jacquard-common", 2252 "jacquard-identity", 2253 "jose-jwa", 2254 "jose-jwk", 2255 "miette", 2256 "p256", 2257 "rand 0.8.5", 2258 "serde", 2259 "serde_html_form", 2260 "serde_json", 2261 "sha2", 2262 "smol_str", 2263 "thiserror 2.0.17", 2264 "tokio", 2265 "trait-variant", 2266 "url", 2267] 2268 2269[[package]] 2270name = "jobserver" 2271version = "0.1.34" 2272source = "registry+https://github.com/rust-lang/crates.io-index" 2273checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" 2274dependencies = [ 2275 "getrandom 0.3.4", 2276 "libc", 2277] 2278 2279[[package]] 2280name = "jose-b64" 2281version = "0.1.2" 2282source = "registry+https://github.com/rust-lang/crates.io-index" 2283checksum = "bec69375368709666b21c76965ce67549f2d2db7605f1f8707d17c9656801b56" 2284dependencies = [ 2285 "base64ct", 2286 "serde", 2287 "subtle", 2288 "zeroize", 2289] 2290 2291[[package]] 2292name = "jose-jwa" 2293version = "0.1.2" 2294source = "registry+https://github.com/rust-lang/crates.io-index" 2295checksum = "9ab78e053fe886a351d67cf0d194c000f9d0dcb92906eb34d853d7e758a4b3a7" 2296dependencies = [ 2297 "serde", 2298] 2299 2300[[package]] 2301name = "jose-jwk" 2302version = "0.1.2" 2303source = "registry+https://github.com/rust-lang/crates.io-index" 2304checksum = "280fa263807fe0782ecb6f2baadc28dffc04e00558a58e33bfdb801d11fd58e7" 2305dependencies = [ 2306 "jose-b64", 2307 "jose-jwa", 2308 "p256", 2309 "p384", 2310 "rsa", 2311 "serde", 2312 "zeroize", 2313] 2314 2315[[package]] 2316name = "josekit" 2317version = "0.10.3" 2318source = "registry+https://github.com/rust-lang/crates.io-index" 2319checksum = "a808e078330e6af222eb0044b71d4b1ff981bfef43e7bc8133a88234e0c86a0c" 2320dependencies = [ 2321 "anyhow", 2322 "base64", 2323 "flate2", 2324 "openssl", 2325 "regex", 2326 "serde", 2327 "serde_json", 2328 "thiserror 2.0.17", 2329 "time", 2330] 2331 2332[[package]] 2333name = "js-sys" 2334version = "0.3.83" 2335source = "registry+https://github.com/rust-lang/crates.io-index" 2336checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" 2337dependencies = [ 2338 "once_cell", 2339 "wasm-bindgen", 2340] 2341 2342[[package]] 2343name = "jwt-compact" 2344version = "0.8.0" 2345source = "registry+https://github.com/rust-lang/crates.io-index" 2346checksum = "25cb2458ca54de48ef237ac0d68d4e80e512ae81d6aeb9775f4c835da0d193d3" 2347dependencies = [ 2348 "anyhow", 2349 "base64ct", 2350 "chrono", 2351 "ciborium", 2352 "hmac", 2353 "lazy_static", 2354 "rand_core 0.6.4", 2355 "secp256k1", 2356 "serde", 2357 "serde_json", 2358 "sha2", 2359 "smallvec", 2360 "subtle", 2361 "zeroize", 2362] 2363 2364[[package]] 2365name = "k256" 2366version = "0.13.4" 2367source = "registry+https://github.com/rust-lang/crates.io-index" 2368checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" 2369dependencies = [ 2370 "cfg-if", 2371 "ecdsa", 2372 "elliptic-curve", 2373 "sha2", 2374] 2375 2376[[package]] 2377name = "kv-log-macro" 2378version = "1.0.7" 2379source = "registry+https://github.com/rust-lang/crates.io-index" 2380checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" 2381dependencies = [ 2382 "log", 2383] 2384 2385[[package]] 2386name = "langtag" 2387version = "0.4.0" 2388source = "registry+https://github.com/rust-lang/crates.io-index" 2389checksum = "9ecb4c689a30e48ebeaa14237f34037e300dd072e6ad21a9ec72e810ff3c6600" 2390dependencies = [ 2391 "serde", 2392 "static-regular-grammar", 2393 "thiserror 1.0.69", 2394] 2395 2396[[package]] 2397name = "lazy_static" 2398version = "1.5.0" 2399source = "registry+https://github.com/rust-lang/crates.io-index" 2400checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 2401dependencies = [ 2402 "spin 0.9.8", 2403] 2404 2405[[package]] 2406name = "leb128fmt" 2407version = "0.1.0" 2408source = "registry+https://github.com/rust-lang/crates.io-index" 2409checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" 2410 2411[[package]] 2412name = "lettre" 2413version = "0.11.19" 2414source = "registry+https://github.com/rust-lang/crates.io-index" 2415checksum = "9e13e10e8818f8b2a60f52cb127041d388b89f3a96a62be9ceaffa22262fef7f" 2416dependencies = [ 2417 "async-std", 2418 "async-trait", 2419 "base64", 2420 "chumsky", 2421 "email-encoding", 2422 "email_address", 2423 "fastrand", 2424 "futures-io", 2425 "futures-util", 2426 "httpdate", 2427 "idna", 2428 "mime", 2429 "nom 8.0.0", 2430 "percent-encoding", 2431 "quoted_printable", 2432 "rustls", 2433 "socket2", 2434 "tokio", 2435 "tokio-rustls", 2436 "url", 2437 "webpki-roots 1.0.5", 2438] 2439 2440[[package]] 2441name = "libc" 2442version = "0.2.178" 2443source = "registry+https://github.com/rust-lang/crates.io-index" 2444checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091" 2445 2446[[package]] 2447name = "libm" 2448version = "0.2.15" 2449source = "registry+https://github.com/rust-lang/crates.io-index" 2450checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" 2451 2452[[package]] 2453name = "libredox" 2454version = "0.1.12" 2455source = "registry+https://github.com/rust-lang/crates.io-index" 2456checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616" 2457dependencies = [ 2458 "bitflags", 2459 "libc", 2460 "redox_syscall 0.7.0", 2461] 2462 2463[[package]] 2464name = "libsqlite3-sys" 2465version = "0.30.1" 2466source = "registry+https://github.com/rust-lang/crates.io-index" 2467checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" 2468dependencies = [ 2469 "cc", 2470 "pkg-config", 2471 "vcpkg", 2472] 2473 2474[[package]] 2475name = "linux-raw-sys" 2476version = "0.11.0" 2477source = "registry+https://github.com/rust-lang/crates.io-index" 2478checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 2479 2480[[package]] 2481name = "litemap" 2482version = "0.8.1" 2483source = "registry+https://github.com/rust-lang/crates.io-index" 2484checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" 2485 2486[[package]] 2487name = "lock_api" 2488version = "0.4.14" 2489source = "registry+https://github.com/rust-lang/crates.io-index" 2490checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 2491dependencies = [ 2492 "scopeguard", 2493] 2494 2495[[package]] 2496name = "log" 2497version = "0.4.29" 2498source = "registry+https://github.com/rust-lang/crates.io-index" 2499checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 2500dependencies = [ 2501 "value-bag", 2502] 2503 2504[[package]] 2505name = "loom" 2506version = "0.7.2" 2507source = "registry+https://github.com/rust-lang/crates.io-index" 2508checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" 2509dependencies = [ 2510 "cfg-if", 2511 "generator", 2512 "scoped-tls", 2513 "tracing", 2514 "tracing-subscriber", 2515] 2516 2517[[package]] 2518name = "lru-slab" 2519version = "0.1.2" 2520source = "registry+https://github.com/rust-lang/crates.io-index" 2521checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 2522 2523[[package]] 2524name = "match-lookup" 2525version = "0.1.1" 2526source = "registry+https://github.com/rust-lang/crates.io-index" 2527checksum = "1265724d8cb29dbbc2b0f06fffb8bf1a8c0cf73a78eede9ba73a4a66c52a981e" 2528dependencies = [ 2529 "proc-macro2", 2530 "quote", 2531 "syn 1.0.109", 2532] 2533 2534[[package]] 2535name = "matchers" 2536version = "0.2.0" 2537source = "registry+https://github.com/rust-lang/crates.io-index" 2538checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 2539dependencies = [ 2540 "regex-automata", 2541] 2542 2543[[package]] 2544name = "matchit" 2545version = "0.8.4" 2546source = "registry+https://github.com/rust-lang/crates.io-index" 2547checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 2548 2549[[package]] 2550name = "md-5" 2551version = "0.10.6" 2552source = "registry+https://github.com/rust-lang/crates.io-index" 2553checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 2554dependencies = [ 2555 "cfg-if", 2556 "digest", 2557] 2558 2559[[package]] 2560name = "memchr" 2561version = "2.7.6" 2562source = "registry+https://github.com/rust-lang/crates.io-index" 2563checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 2564 2565[[package]] 2566name = "miette" 2567version = "7.6.0" 2568source = "registry+https://github.com/rust-lang/crates.io-index" 2569checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7" 2570dependencies = [ 2571 "cfg-if", 2572 "miette-derive", 2573 "unicode-width", 2574] 2575 2576[[package]] 2577name = "miette-derive" 2578version = "7.6.0" 2579source = "registry+https://github.com/rust-lang/crates.io-index" 2580checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b" 2581dependencies = [ 2582 "proc-macro2", 2583 "quote", 2584 "syn 2.0.112", 2585] 2586 2587[[package]] 2588name = "mime" 2589version = "0.3.17" 2590source = "registry+https://github.com/rust-lang/crates.io-index" 2591checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 2592 2593[[package]] 2594name = "minimal-lexical" 2595version = "0.2.1" 2596source = "registry+https://github.com/rust-lang/crates.io-index" 2597checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 2598 2599[[package]] 2600name = "miniz_oxide" 2601version = "0.8.9" 2602source = "registry+https://github.com/rust-lang/crates.io-index" 2603checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 2604dependencies = [ 2605 "adler2", 2606 "simd-adler32", 2607] 2608 2609[[package]] 2610name = "mio" 2611version = "1.1.1" 2612source = "registry+https://github.com/rust-lang/crates.io-index" 2613checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" 2614dependencies = [ 2615 "libc", 2616 "wasi", 2617 "windows-sys 0.61.2", 2618] 2619 2620[[package]] 2621name = "multibase" 2622version = "0.9.2" 2623source = "registry+https://github.com/rust-lang/crates.io-index" 2624checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77" 2625dependencies = [ 2626 "base-x", 2627 "base256emoji", 2628 "data-encoding", 2629 "data-encoding-macro", 2630] 2631 2632[[package]] 2633name = "multihash" 2634version = "0.19.3" 2635source = "registry+https://github.com/rust-lang/crates.io-index" 2636checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" 2637dependencies = [ 2638 "core2", 2639 "serde", 2640 "unsigned-varint", 2641] 2642 2643[[package]] 2644name = "n0-future" 2645version = "0.1.3" 2646source = "registry+https://github.com/rust-lang/crates.io-index" 2647checksum = "7bb0e5d99e681ab3c938842b96fcb41bf8a7bb4bfdb11ccbd653a7e83e06c794" 2648dependencies = [ 2649 "cfg_aliases", 2650 "derive_more", 2651 "futures-buffered", 2652 "futures-lite", 2653 "futures-util", 2654 "js-sys", 2655 "pin-project", 2656 "send_wrapper", 2657 "tokio", 2658 "tokio-util", 2659 "wasm-bindgen", 2660 "wasm-bindgen-futures", 2661 "web-time", 2662] 2663 2664[[package]] 2665name = "nom" 2666version = "7.1.3" 2667source = "registry+https://github.com/rust-lang/crates.io-index" 2668checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2669dependencies = [ 2670 "memchr", 2671 "minimal-lexical", 2672] 2673 2674[[package]] 2675name = "nom" 2676version = "8.0.0" 2677source = "registry+https://github.com/rust-lang/crates.io-index" 2678checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" 2679dependencies = [ 2680 "memchr", 2681] 2682 2683[[package]] 2684name = "nonempty" 2685version = "0.7.0" 2686source = "registry+https://github.com/rust-lang/crates.io-index" 2687checksum = "e9e591e719385e6ebaeb5ce5d3887f7d5676fceca6411d1925ccc95745f3d6f7" 2688 2689[[package]] 2690name = "nonzero_ext" 2691version = "0.3.0" 2692source = "registry+https://github.com/rust-lang/crates.io-index" 2693checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" 2694 2695[[package]] 2696name = "nu-ansi-term" 2697version = "0.50.3" 2698source = "registry+https://github.com/rust-lang/crates.io-index" 2699checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" 2700dependencies = [ 2701 "windows-sys 0.61.2", 2702] 2703 2704[[package]] 2705name = "num-bigint-dig" 2706version = "0.8.6" 2707source = "registry+https://github.com/rust-lang/crates.io-index" 2708checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" 2709dependencies = [ 2710 "lazy_static", 2711 "libm", 2712 "num-integer", 2713 "num-iter", 2714 "num-traits", 2715 "rand 0.8.5", 2716 "smallvec", 2717 "zeroize", 2718] 2719 2720[[package]] 2721name = "num-conv" 2722version = "0.1.0" 2723source = "registry+https://github.com/rust-lang/crates.io-index" 2724checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 2725 2726[[package]] 2727name = "num-integer" 2728version = "0.1.46" 2729source = "registry+https://github.com/rust-lang/crates.io-index" 2730checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 2731dependencies = [ 2732 "num-traits", 2733] 2734 2735[[package]] 2736name = "num-iter" 2737version = "0.1.45" 2738source = "registry+https://github.com/rust-lang/crates.io-index" 2739checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 2740dependencies = [ 2741 "autocfg", 2742 "num-integer", 2743 "num-traits", 2744] 2745 2746[[package]] 2747name = "num-modular" 2748version = "0.6.1" 2749source = "registry+https://github.com/rust-lang/crates.io-index" 2750checksum = "17bb261bf36fa7d83f4c294f834e91256769097b3cb505d44831e0a179ac647f" 2751 2752[[package]] 2753name = "num-order" 2754version = "1.2.0" 2755source = "registry+https://github.com/rust-lang/crates.io-index" 2756checksum = "537b596b97c40fcf8056d153049eb22f481c17ebce72a513ec9286e4986d1bb6" 2757dependencies = [ 2758 "num-modular", 2759] 2760 2761[[package]] 2762name = "num-traits" 2763version = "0.2.19" 2764source = "registry+https://github.com/rust-lang/crates.io-index" 2765checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2766dependencies = [ 2767 "autocfg", 2768 "libm", 2769] 2770 2771[[package]] 2772name = "object" 2773version = "0.32.2" 2774source = "registry+https://github.com/rust-lang/crates.io-index" 2775checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 2776dependencies = [ 2777 "memchr", 2778] 2779 2780[[package]] 2781name = "once_cell" 2782version = "1.21.3" 2783source = "registry+https://github.com/rust-lang/crates.io-index" 2784checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 2785 2786[[package]] 2787name = "openssl" 2788version = "0.10.75" 2789source = "registry+https://github.com/rust-lang/crates.io-index" 2790checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328" 2791dependencies = [ 2792 "bitflags", 2793 "cfg-if", 2794 "foreign-types", 2795 "libc", 2796 "once_cell", 2797 "openssl-macros", 2798 "openssl-sys", 2799] 2800 2801[[package]] 2802name = "openssl-macros" 2803version = "0.1.1" 2804source = "registry+https://github.com/rust-lang/crates.io-index" 2805checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 2806dependencies = [ 2807 "proc-macro2", 2808 "quote", 2809 "syn 2.0.112", 2810] 2811 2812[[package]] 2813name = "openssl-sys" 2814version = "0.9.111" 2815source = "registry+https://github.com/rust-lang/crates.io-index" 2816checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321" 2817dependencies = [ 2818 "cc", 2819 "libc", 2820 "pkg-config", 2821 "vcpkg", 2822] 2823 2824[[package]] 2825name = "ouroboros" 2826version = "0.18.5" 2827source = "registry+https://github.com/rust-lang/crates.io-index" 2828checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59" 2829dependencies = [ 2830 "aliasable", 2831 "ouroboros_macro", 2832 "static_assertions", 2833] 2834 2835[[package]] 2836name = "ouroboros_macro" 2837version = "0.18.5" 2838source = "registry+https://github.com/rust-lang/crates.io-index" 2839checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0" 2840dependencies = [ 2841 "heck 0.4.1", 2842 "proc-macro2", 2843 "proc-macro2-diagnostics", 2844 "quote", 2845 "syn 2.0.112", 2846] 2847 2848[[package]] 2849name = "p256" 2850version = "0.13.2" 2851source = "registry+https://github.com/rust-lang/crates.io-index" 2852checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 2853dependencies = [ 2854 "ecdsa", 2855 "elliptic-curve", 2856 "primeorder", 2857 "sha2", 2858] 2859 2860[[package]] 2861name = "p384" 2862version = "0.13.1" 2863source = "registry+https://github.com/rust-lang/crates.io-index" 2864checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" 2865dependencies = [ 2866 "elliptic-curve", 2867 "primeorder", 2868] 2869 2870[[package]] 2871name = "parking" 2872version = "2.2.1" 2873source = "registry+https://github.com/rust-lang/crates.io-index" 2874checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 2875 2876[[package]] 2877name = "parking_lot" 2878version = "0.12.5" 2879source = "registry+https://github.com/rust-lang/crates.io-index" 2880checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 2881dependencies = [ 2882 "lock_api", 2883 "parking_lot_core", 2884] 2885 2886[[package]] 2887name = "parking_lot_core" 2888version = "0.9.12" 2889source = "registry+https://github.com/rust-lang/crates.io-index" 2890checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 2891dependencies = [ 2892 "cfg-if", 2893 "libc", 2894 "redox_syscall 0.5.18", 2895 "smallvec", 2896 "windows-link", 2897] 2898 2899[[package]] 2900name = "password-hash" 2901version = "0.5.0" 2902source = "registry+https://github.com/rust-lang/crates.io-index" 2903checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" 2904dependencies = [ 2905 "base64ct", 2906 "rand_core 0.6.4", 2907 "subtle", 2908] 2909 2910[[package]] 2911name = "pbkdf2" 2912version = "0.12.2" 2913source = "registry+https://github.com/rust-lang/crates.io-index" 2914checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" 2915dependencies = [ 2916 "digest", 2917 "hmac", 2918] 2919 2920[[package]] 2921name = "pds_gatekeeper" 2922version = "0.1.2" 2923dependencies = [ 2924 "anyhow", 2925 "aws-lc-rs", 2926 "axum", 2927 "axum-extra", 2928 "axum-template", 2929 "base64", 2930 "chrono", 2931 "dashmap", 2932 "dotenvy", 2933 "handlebars", 2934 "hex", 2935 "html-escape", 2936 "hyper-util", 2937 "jacquard-api", 2938 "jacquard-common", 2939 "jacquard-identity", 2940 "jacquard-oauth", 2941 "jose-jwk", 2942 "josekit", 2943 "jwt-compact", 2944 "lettre", 2945 "multibase", 2946 "p256", 2947 "rand 0.9.2", 2948 "reqwest", 2949 "rust-embed", 2950 "rustls", 2951 "scrypt", 2952 "serde", 2953 "serde_json", 2954 "serde_yaml", 2955 "sha2", 2956 "sqlx", 2957 "tokio", 2958 "tower", 2959 "tower-http", 2960 "tower_governor", 2961 "tracing", 2962 "tracing-subscriber", 2963 "url", 2964 "urlencoding", 2965 "uuid", 2966] 2967 2968[[package]] 2969name = "pem-rfc7468" 2970version = "0.7.0" 2971source = "registry+https://github.com/rust-lang/crates.io-index" 2972checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 2973dependencies = [ 2974 "base64ct", 2975] 2976 2977[[package]] 2978name = "percent-encoding" 2979version = "2.3.2" 2980source = "registry+https://github.com/rust-lang/crates.io-index" 2981checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 2982 2983[[package]] 2984name = "pest" 2985version = "2.8.4" 2986source = "registry+https://github.com/rust-lang/crates.io-index" 2987checksum = "cbcfd20a6d4eeba40179f05735784ad32bdaef05ce8e8af05f180d45bb3e7e22" 2988dependencies = [ 2989 "memchr", 2990 "ucd-trie", 2991] 2992 2993[[package]] 2994name = "pest_derive" 2995version = "2.8.4" 2996source = "registry+https://github.com/rust-lang/crates.io-index" 2997checksum = "51f72981ade67b1ca6adc26ec221be9f463f2b5839c7508998daa17c23d94d7f" 2998dependencies = [ 2999 "pest", 3000 "pest_generator", 3001] 3002 3003[[package]] 3004name = "pest_generator" 3005version = "2.8.4" 3006source = "registry+https://github.com/rust-lang/crates.io-index" 3007checksum = "dee9efd8cdb50d719a80088b76f81aec7c41ed6d522ee750178f83883d271625" 3008dependencies = [ 3009 "pest", 3010 "pest_meta", 3011 "proc-macro2", 3012 "quote", 3013 "syn 2.0.112", 3014] 3015 3016[[package]] 3017name = "pest_meta" 3018version = "2.8.4" 3019source = "registry+https://github.com/rust-lang/crates.io-index" 3020checksum = "bf1d70880e76bdc13ba52eafa6239ce793d85c8e43896507e43dd8984ff05b82" 3021dependencies = [ 3022 "pest", 3023 "sha2", 3024] 3025 3026[[package]] 3027name = "pin-project" 3028version = "1.1.10" 3029source = "registry+https://github.com/rust-lang/crates.io-index" 3030checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" 3031dependencies = [ 3032 "pin-project-internal", 3033] 3034 3035[[package]] 3036name = "pin-project-internal" 3037version = "1.1.10" 3038source = "registry+https://github.com/rust-lang/crates.io-index" 3039checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" 3040dependencies = [ 3041 "proc-macro2", 3042 "quote", 3043 "syn 2.0.112", 3044] 3045 3046[[package]] 3047name = "pin-project-lite" 3048version = "0.2.16" 3049source = "registry+https://github.com/rust-lang/crates.io-index" 3050checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 3051 3052[[package]] 3053name = "pin-utils" 3054version = "0.1.0" 3055source = "registry+https://github.com/rust-lang/crates.io-index" 3056checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3057 3058[[package]] 3059name = "piper" 3060version = "0.2.4" 3061source = "registry+https://github.com/rust-lang/crates.io-index" 3062checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 3063dependencies = [ 3064 "atomic-waker", 3065 "fastrand", 3066 "futures-io", 3067] 3068 3069[[package]] 3070name = "pkcs1" 3071version = "0.7.5" 3072source = "registry+https://github.com/rust-lang/crates.io-index" 3073checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 3074dependencies = [ 3075 "der", 3076 "pkcs8", 3077 "spki", 3078] 3079 3080[[package]] 3081name = "pkcs8" 3082version = "0.10.2" 3083source = "registry+https://github.com/rust-lang/crates.io-index" 3084checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 3085dependencies = [ 3086 "der", 3087 "spki", 3088] 3089 3090[[package]] 3091name = "pkg-config" 3092version = "0.3.32" 3093source = "registry+https://github.com/rust-lang/crates.io-index" 3094checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 3095 3096[[package]] 3097name = "polling" 3098version = "3.11.0" 3099source = "registry+https://github.com/rust-lang/crates.io-index" 3100checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" 3101dependencies = [ 3102 "cfg-if", 3103 "concurrent-queue", 3104 "hermit-abi", 3105 "pin-project-lite", 3106 "rustix", 3107 "windows-sys 0.61.2", 3108] 3109 3110[[package]] 3111name = "portable-atomic" 3112version = "1.13.0" 3113source = "registry+https://github.com/rust-lang/crates.io-index" 3114checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950" 3115 3116[[package]] 3117name = "postcard" 3118version = "1.1.3" 3119source = "registry+https://github.com/rust-lang/crates.io-index" 3120checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" 3121dependencies = [ 3122 "cobs", 3123 "embedded-io 0.4.0", 3124 "embedded-io 0.6.1", 3125 "heapless", 3126 "serde", 3127] 3128 3129[[package]] 3130name = "potential_utf" 3131version = "0.1.4" 3132source = "registry+https://github.com/rust-lang/crates.io-index" 3133checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" 3134dependencies = [ 3135 "zerovec", 3136] 3137 3138[[package]] 3139name = "powerfmt" 3140version = "0.2.0" 3141source = "registry+https://github.com/rust-lang/crates.io-index" 3142checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 3143 3144[[package]] 3145name = "ppv-lite86" 3146version = "0.2.21" 3147source = "registry+https://github.com/rust-lang/crates.io-index" 3148checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 3149dependencies = [ 3150 "zerocopy", 3151] 3152 3153[[package]] 3154name = "prettyplease" 3155version = "0.2.37" 3156source = "registry+https://github.com/rust-lang/crates.io-index" 3157checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" 3158dependencies = [ 3159 "proc-macro2", 3160 "syn 2.0.112", 3161] 3162 3163[[package]] 3164name = "primeorder" 3165version = "0.13.6" 3166source = "registry+https://github.com/rust-lang/crates.io-index" 3167checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 3168dependencies = [ 3169 "elliptic-curve", 3170] 3171 3172[[package]] 3173name = "proc-macro-error" 3174version = "1.0.4" 3175source = "registry+https://github.com/rust-lang/crates.io-index" 3176checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 3177dependencies = [ 3178 "proc-macro-error-attr", 3179 "proc-macro2", 3180 "quote", 3181 "syn 1.0.109", 3182 "version_check", 3183] 3184 3185[[package]] 3186name = "proc-macro-error-attr" 3187version = "1.0.4" 3188source = "registry+https://github.com/rust-lang/crates.io-index" 3189checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 3190dependencies = [ 3191 "proc-macro2", 3192 "quote", 3193 "version_check", 3194] 3195 3196[[package]] 3197name = "proc-macro2" 3198version = "1.0.104" 3199source = "registry+https://github.com/rust-lang/crates.io-index" 3200checksum = "9695f8df41bb4f3d222c95a67532365f569318332d03d5f3f67f37b20e6ebdf0" 3201dependencies = [ 3202 "unicode-ident", 3203] 3204 3205[[package]] 3206name = "proc-macro2-diagnostics" 3207version = "0.10.1" 3208source = "registry+https://github.com/rust-lang/crates.io-index" 3209checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" 3210dependencies = [ 3211 "proc-macro2", 3212 "quote", 3213 "syn 2.0.112", 3214 "version_check", 3215 "yansi", 3216] 3217 3218[[package]] 3219name = "psm" 3220version = "0.1.28" 3221source = "registry+https://github.com/rust-lang/crates.io-index" 3222checksum = "d11f2fedc3b7dafdc2851bc52f277377c5473d378859be234bc7ebb593144d01" 3223dependencies = [ 3224 "ar_archive_writer", 3225 "cc", 3226] 3227 3228[[package]] 3229name = "quanta" 3230version = "0.12.6" 3231source = "registry+https://github.com/rust-lang/crates.io-index" 3232checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7" 3233dependencies = [ 3234 "crossbeam-utils", 3235 "libc", 3236 "once_cell", 3237 "raw-cpuid", 3238 "wasi", 3239 "web-sys", 3240 "winapi", 3241] 3242 3243[[package]] 3244name = "quinn" 3245version = "0.11.9" 3246source = "registry+https://github.com/rust-lang/crates.io-index" 3247checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 3248dependencies = [ 3249 "bytes", 3250 "cfg_aliases", 3251 "pin-project-lite", 3252 "quinn-proto", 3253 "quinn-udp", 3254 "rustc-hash", 3255 "rustls", 3256 "socket2", 3257 "thiserror 2.0.17", 3258 "tokio", 3259 "tracing", 3260 "web-time", 3261] 3262 3263[[package]] 3264name = "quinn-proto" 3265version = "0.11.13" 3266source = "registry+https://github.com/rust-lang/crates.io-index" 3267checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" 3268dependencies = [ 3269 "bytes", 3270 "getrandom 0.3.4", 3271 "lru-slab", 3272 "rand 0.9.2", 3273 "ring", 3274 "rustc-hash", 3275 "rustls", 3276 "rustls-pki-types", 3277 "slab", 3278 "thiserror 2.0.17", 3279 "tinyvec", 3280 "tracing", 3281 "web-time", 3282] 3283 3284[[package]] 3285name = "quinn-udp" 3286version = "0.5.14" 3287source = "registry+https://github.com/rust-lang/crates.io-index" 3288checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 3289dependencies = [ 3290 "cfg_aliases", 3291 "libc", 3292 "once_cell", 3293 "socket2", 3294 "tracing", 3295 "windows-sys 0.60.2", 3296] 3297 3298[[package]] 3299name = "quote" 3300version = "1.0.42" 3301source = "registry+https://github.com/rust-lang/crates.io-index" 3302checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" 3303dependencies = [ 3304 "proc-macro2", 3305] 3306 3307[[package]] 3308name = "quoted_printable" 3309version = "0.5.1" 3310source = "registry+https://github.com/rust-lang/crates.io-index" 3311checksum = "640c9bd8497b02465aeef5375144c26062e0dcd5939dfcbb0f5db76cb8c17c73" 3312 3313[[package]] 3314name = "r-efi" 3315version = "5.3.0" 3316source = "registry+https://github.com/rust-lang/crates.io-index" 3317checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 3318 3319[[package]] 3320name = "rand" 3321version = "0.8.5" 3322source = "registry+https://github.com/rust-lang/crates.io-index" 3323checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 3324dependencies = [ 3325 "libc", 3326 "rand_chacha 0.3.1", 3327 "rand_core 0.6.4", 3328] 3329 3330[[package]] 3331name = "rand" 3332version = "0.9.2" 3333source = "registry+https://github.com/rust-lang/crates.io-index" 3334checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 3335dependencies = [ 3336 "rand_chacha 0.9.0", 3337 "rand_core 0.9.3", 3338] 3339 3340[[package]] 3341name = "rand_chacha" 3342version = "0.3.1" 3343source = "registry+https://github.com/rust-lang/crates.io-index" 3344checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3345dependencies = [ 3346 "ppv-lite86", 3347 "rand_core 0.6.4", 3348] 3349 3350[[package]] 3351name = "rand_chacha" 3352version = "0.9.0" 3353source = "registry+https://github.com/rust-lang/crates.io-index" 3354checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 3355dependencies = [ 3356 "ppv-lite86", 3357 "rand_core 0.9.3", 3358] 3359 3360[[package]] 3361name = "rand_core" 3362version = "0.6.4" 3363source = "registry+https://github.com/rust-lang/crates.io-index" 3364checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3365dependencies = [ 3366 "getrandom 0.2.16", 3367] 3368 3369[[package]] 3370name = "rand_core" 3371version = "0.9.3" 3372source = "registry+https://github.com/rust-lang/crates.io-index" 3373checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 3374dependencies = [ 3375 "getrandom 0.3.4", 3376] 3377 3378[[package]] 3379name = "range-traits" 3380version = "0.3.2" 3381source = "registry+https://github.com/rust-lang/crates.io-index" 3382checksum = "d20581732dd76fa913c7dff1a2412b714afe3573e94d41c34719de73337cc8ab" 3383 3384[[package]] 3385name = "raw-cpuid" 3386version = "11.6.0" 3387source = "registry+https://github.com/rust-lang/crates.io-index" 3388checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186" 3389dependencies = [ 3390 "bitflags", 3391] 3392 3393[[package]] 3394name = "redox_syscall" 3395version = "0.5.18" 3396source = "registry+https://github.com/rust-lang/crates.io-index" 3397checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 3398dependencies = [ 3399 "bitflags", 3400] 3401 3402[[package]] 3403name = "redox_syscall" 3404version = "0.7.0" 3405source = "registry+https://github.com/rust-lang/crates.io-index" 3406checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27" 3407dependencies = [ 3408 "bitflags", 3409] 3410 3411[[package]] 3412name = "ref-cast" 3413version = "1.0.25" 3414source = "registry+https://github.com/rust-lang/crates.io-index" 3415checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" 3416dependencies = [ 3417 "ref-cast-impl", 3418] 3419 3420[[package]] 3421name = "ref-cast-impl" 3422version = "1.0.25" 3423source = "registry+https://github.com/rust-lang/crates.io-index" 3424checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" 3425dependencies = [ 3426 "proc-macro2", 3427 "quote", 3428 "syn 2.0.112", 3429] 3430 3431[[package]] 3432name = "regex" 3433version = "1.12.2" 3434source = "registry+https://github.com/rust-lang/crates.io-index" 3435checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" 3436dependencies = [ 3437 "aho-corasick", 3438 "memchr", 3439 "regex-automata", 3440 "regex-syntax", 3441] 3442 3443[[package]] 3444name = "regex-automata" 3445version = "0.4.13" 3446source = "registry+https://github.com/rust-lang/crates.io-index" 3447checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" 3448dependencies = [ 3449 "aho-corasick", 3450 "memchr", 3451 "regex-syntax", 3452] 3453 3454[[package]] 3455name = "regex-lite" 3456version = "0.1.8" 3457source = "registry+https://github.com/rust-lang/crates.io-index" 3458checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da" 3459 3460[[package]] 3461name = "regex-syntax" 3462version = "0.8.8" 3463source = "registry+https://github.com/rust-lang/crates.io-index" 3464checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" 3465 3466[[package]] 3467name = "reqwest" 3468version = "0.12.28" 3469source = "registry+https://github.com/rust-lang/crates.io-index" 3470checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" 3471dependencies = [ 3472 "base64", 3473 "bytes", 3474 "encoding_rs", 3475 "futures-core", 3476 "h2", 3477 "http", 3478 "http-body", 3479 "http-body-util", 3480 "hyper", 3481 "hyper-rustls", 3482 "hyper-util", 3483 "js-sys", 3484 "log", 3485 "mime", 3486 "percent-encoding", 3487 "pin-project-lite", 3488 "quinn", 3489 "rustls", 3490 "rustls-pki-types", 3491 "serde", 3492 "serde_json", 3493 "serde_urlencoded", 3494 "sync_wrapper", 3495 "tokio", 3496 "tokio-rustls", 3497 "tower", 3498 "tower-http", 3499 "tower-service", 3500 "url", 3501 "wasm-bindgen", 3502 "wasm-bindgen-futures", 3503 "web-sys", 3504 "webpki-roots 1.0.5", 3505] 3506 3507[[package]] 3508name = "rfc6979" 3509version = "0.4.0" 3510source = "registry+https://github.com/rust-lang/crates.io-index" 3511checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 3512dependencies = [ 3513 "hmac", 3514 "subtle", 3515] 3516 3517[[package]] 3518name = "ring" 3519version = "0.17.14" 3520source = "registry+https://github.com/rust-lang/crates.io-index" 3521checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 3522dependencies = [ 3523 "cc", 3524 "cfg-if", 3525 "getrandom 0.2.16", 3526 "libc", 3527 "untrusted 0.9.0", 3528 "windows-sys 0.52.0", 3529] 3530 3531[[package]] 3532name = "rsa" 3533version = "0.9.9" 3534source = "registry+https://github.com/rust-lang/crates.io-index" 3535checksum = "40a0376c50d0358279d9d643e4bf7b7be212f1f4ff1da9070a7b54d22ef75c88" 3536dependencies = [ 3537 "const-oid", 3538 "digest", 3539 "num-bigint-dig", 3540 "num-integer", 3541 "num-traits", 3542 "pkcs1", 3543 "pkcs8", 3544 "rand_core 0.6.4", 3545 "signature", 3546 "spki", 3547 "subtle", 3548 "zeroize", 3549] 3550 3551[[package]] 3552name = "rust-embed" 3553version = "8.9.0" 3554source = "registry+https://github.com/rust-lang/crates.io-index" 3555checksum = "947d7f3fad52b283d261c4c99a084937e2fe492248cb9a68a8435a861b8798ca" 3556dependencies = [ 3557 "rust-embed-impl", 3558 "rust-embed-utils", 3559 "walkdir", 3560] 3561 3562[[package]] 3563name = "rust-embed-impl" 3564version = "8.9.0" 3565source = "registry+https://github.com/rust-lang/crates.io-index" 3566checksum = "5fa2c8c9e8711e10f9c4fd2d64317ef13feaab820a4c51541f1a8c8e2e851ab2" 3567dependencies = [ 3568 "proc-macro2", 3569 "quote", 3570 "rust-embed-utils", 3571 "syn 2.0.112", 3572 "walkdir", 3573] 3574 3575[[package]] 3576name = "rust-embed-utils" 3577version = "8.9.0" 3578source = "registry+https://github.com/rust-lang/crates.io-index" 3579checksum = "60b161f275cb337fe0a44d924a5f4df0ed69c2c39519858f931ce61c779d3475" 3580dependencies = [ 3581 "globset", 3582 "sha2", 3583 "walkdir", 3584] 3585 3586[[package]] 3587name = "rustc-hash" 3588version = "2.1.1" 3589source = "registry+https://github.com/rust-lang/crates.io-index" 3590checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 3591 3592[[package]] 3593name = "rustc_version" 3594version = "0.4.1" 3595source = "registry+https://github.com/rust-lang/crates.io-index" 3596checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 3597dependencies = [ 3598 "semver", 3599] 3600 3601[[package]] 3602name = "rustix" 3603version = "1.1.3" 3604source = "registry+https://github.com/rust-lang/crates.io-index" 3605checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" 3606dependencies = [ 3607 "bitflags", 3608 "errno", 3609 "libc", 3610 "linux-raw-sys", 3611 "windows-sys 0.52.0", 3612] 3613 3614[[package]] 3615name = "rustls" 3616version = "0.23.35" 3617source = "registry+https://github.com/rust-lang/crates.io-index" 3618checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f" 3619dependencies = [ 3620 "aws-lc-rs", 3621 "log", 3622 "once_cell", 3623 "ring", 3624 "rustls-pki-types", 3625 "rustls-webpki", 3626 "subtle", 3627 "zeroize", 3628] 3629 3630[[package]] 3631name = "rustls-pki-types" 3632version = "1.13.2" 3633source = "registry+https://github.com/rust-lang/crates.io-index" 3634checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282" 3635dependencies = [ 3636 "web-time", 3637 "zeroize", 3638] 3639 3640[[package]] 3641name = "rustls-webpki" 3642version = "0.103.8" 3643source = "registry+https://github.com/rust-lang/crates.io-index" 3644checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" 3645dependencies = [ 3646 "aws-lc-rs", 3647 "ring", 3648 "rustls-pki-types", 3649 "untrusted 0.9.0", 3650] 3651 3652[[package]] 3653name = "rustversion" 3654version = "1.0.22" 3655source = "registry+https://github.com/rust-lang/crates.io-index" 3656checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 3657 3658[[package]] 3659name = "ryu" 3660version = "1.0.22" 3661source = "registry+https://github.com/rust-lang/crates.io-index" 3662checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984" 3663 3664[[package]] 3665name = "salsa20" 3666version = "0.10.2" 3667source = "registry+https://github.com/rust-lang/crates.io-index" 3668checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213" 3669dependencies = [ 3670 "cipher", 3671] 3672 3673[[package]] 3674name = "same-file" 3675version = "1.0.6" 3676source = "registry+https://github.com/rust-lang/crates.io-index" 3677checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3678dependencies = [ 3679 "winapi-util", 3680] 3681 3682[[package]] 3683name = "schemars" 3684version = "0.9.0" 3685source = "registry+https://github.com/rust-lang/crates.io-index" 3686checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" 3687dependencies = [ 3688 "dyn-clone", 3689 "ref-cast", 3690 "serde", 3691 "serde_json", 3692] 3693 3694[[package]] 3695name = "schemars" 3696version = "1.2.0" 3697source = "registry+https://github.com/rust-lang/crates.io-index" 3698checksum = "54e910108742c57a770f492731f99be216a52fadd361b06c8fb59d74ccc267d2" 3699dependencies = [ 3700 "dyn-clone", 3701 "ref-cast", 3702 "serde", 3703 "serde_json", 3704] 3705 3706[[package]] 3707name = "scoped-tls" 3708version = "1.0.1" 3709source = "registry+https://github.com/rust-lang/crates.io-index" 3710checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 3711 3712[[package]] 3713name = "scopeguard" 3714version = "1.2.0" 3715source = "registry+https://github.com/rust-lang/crates.io-index" 3716checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 3717 3718[[package]] 3719name = "scrypt" 3720version = "0.11.0" 3721source = "registry+https://github.com/rust-lang/crates.io-index" 3722checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f" 3723dependencies = [ 3724 "password-hash", 3725 "pbkdf2", 3726 "salsa20", 3727 "sha2", 3728] 3729 3730[[package]] 3731name = "sec1" 3732version = "0.7.3" 3733source = "registry+https://github.com/rust-lang/crates.io-index" 3734checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 3735dependencies = [ 3736 "base16ct", 3737 "der", 3738 "generic-array", 3739 "pkcs8", 3740 "serdect", 3741 "subtle", 3742 "zeroize", 3743] 3744 3745[[package]] 3746name = "secp256k1" 3747version = "0.28.2" 3748source = "registry+https://github.com/rust-lang/crates.io-index" 3749checksum = "d24b59d129cdadea20aea4fb2352fa053712e5d713eee47d700cd4b2bc002f10" 3750dependencies = [ 3751 "secp256k1-sys", 3752] 3753 3754[[package]] 3755name = "secp256k1-sys" 3756version = "0.9.2" 3757source = "registry+https://github.com/rust-lang/crates.io-index" 3758checksum = "e5d1746aae42c19d583c3c1a8c646bfad910498e2051c551a7f2e3c0c9fbb7eb" 3759dependencies = [ 3760 "cc", 3761] 3762 3763[[package]] 3764name = "semver" 3765version = "1.0.27" 3766source = "registry+https://github.com/rust-lang/crates.io-index" 3767checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" 3768 3769[[package]] 3770name = "send_wrapper" 3771version = "0.6.0" 3772source = "registry+https://github.com/rust-lang/crates.io-index" 3773checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" 3774 3775[[package]] 3776name = "serde" 3777version = "1.0.228" 3778source = "registry+https://github.com/rust-lang/crates.io-index" 3779checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 3780dependencies = [ 3781 "serde_core", 3782 "serde_derive", 3783] 3784 3785[[package]] 3786name = "serde_bytes" 3787version = "0.11.19" 3788source = "registry+https://github.com/rust-lang/crates.io-index" 3789checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" 3790dependencies = [ 3791 "serde", 3792 "serde_core", 3793] 3794 3795[[package]] 3796name = "serde_core" 3797version = "1.0.228" 3798source = "registry+https://github.com/rust-lang/crates.io-index" 3799checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 3800dependencies = [ 3801 "serde_derive", 3802] 3803 3804[[package]] 3805name = "serde_derive" 3806version = "1.0.228" 3807source = "registry+https://github.com/rust-lang/crates.io-index" 3808checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 3809dependencies = [ 3810 "proc-macro2", 3811 "quote", 3812 "syn 2.0.112", 3813] 3814 3815[[package]] 3816name = "serde_html_form" 3817version = "0.2.8" 3818source = "registry+https://github.com/rust-lang/crates.io-index" 3819checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f" 3820dependencies = [ 3821 "form_urlencoded", 3822 "indexmap 2.12.1", 3823 "itoa", 3824 "ryu", 3825 "serde_core", 3826] 3827 3828[[package]] 3829name = "serde_ipld_dagcbor" 3830version = "0.6.4" 3831source = "registry+https://github.com/rust-lang/crates.io-index" 3832checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778" 3833dependencies = [ 3834 "cbor4ii", 3835 "ipld-core", 3836 "scopeguard", 3837 "serde", 3838] 3839 3840[[package]] 3841name = "serde_json" 3842version = "1.0.148" 3843source = "registry+https://github.com/rust-lang/crates.io-index" 3844checksum = "3084b546a1dd6289475996f182a22aba973866ea8e8b02c51d9f46b1336a22da" 3845dependencies = [ 3846 "indexmap 2.12.1", 3847 "itoa", 3848 "memchr", 3849 "serde", 3850 "serde_core", 3851 "zmij", 3852] 3853 3854[[package]] 3855name = "serde_path_to_error" 3856version = "0.1.20" 3857source = "registry+https://github.com/rust-lang/crates.io-index" 3858checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" 3859dependencies = [ 3860 "itoa", 3861 "serde", 3862 "serde_core", 3863] 3864 3865[[package]] 3866name = "serde_repr" 3867version = "0.1.20" 3868source = "registry+https://github.com/rust-lang/crates.io-index" 3869checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 3870dependencies = [ 3871 "proc-macro2", 3872 "quote", 3873 "syn 2.0.112", 3874] 3875 3876[[package]] 3877name = "serde_urlencoded" 3878version = "0.7.1" 3879source = "registry+https://github.com/rust-lang/crates.io-index" 3880checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 3881dependencies = [ 3882 "form_urlencoded", 3883 "itoa", 3884 "ryu", 3885 "serde", 3886] 3887 3888[[package]] 3889name = "serde_with" 3890version = "3.16.1" 3891source = "registry+https://github.com/rust-lang/crates.io-index" 3892checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7" 3893dependencies = [ 3894 "base64", 3895 "chrono", 3896 "hex", 3897 "indexmap 1.9.3", 3898 "indexmap 2.12.1", 3899 "schemars 0.9.0", 3900 "schemars 1.2.0", 3901 "serde_core", 3902 "serde_json", 3903 "serde_with_macros", 3904 "time", 3905] 3906 3907[[package]] 3908name = "serde_with_macros" 3909version = "3.16.1" 3910source = "registry+https://github.com/rust-lang/crates.io-index" 3911checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c" 3912dependencies = [ 3913 "darling 0.21.3", 3914 "proc-macro2", 3915 "quote", 3916 "syn 2.0.112", 3917] 3918 3919[[package]] 3920name = "serde_yaml" 3921version = "0.9.34+deprecated" 3922source = "registry+https://github.com/rust-lang/crates.io-index" 3923checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" 3924dependencies = [ 3925 "indexmap 2.12.1", 3926 "itoa", 3927 "ryu", 3928 "serde", 3929 "unsafe-libyaml", 3930] 3931 3932[[package]] 3933name = "serdect" 3934version = "0.2.0" 3935source = "registry+https://github.com/rust-lang/crates.io-index" 3936checksum = "a84f14a19e9a014bb9f4512488d9829a68e04ecabffb0f9904cd1ace94598177" 3937dependencies = [ 3938 "base16ct", 3939 "serde", 3940] 3941 3942[[package]] 3943name = "sha1" 3944version = "0.10.6" 3945source = "registry+https://github.com/rust-lang/crates.io-index" 3946checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 3947dependencies = [ 3948 "cfg-if", 3949 "cpufeatures", 3950 "digest", 3951] 3952 3953[[package]] 3954name = "sha2" 3955version = "0.10.9" 3956source = "registry+https://github.com/rust-lang/crates.io-index" 3957checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 3958dependencies = [ 3959 "cfg-if", 3960 "cpufeatures", 3961 "digest", 3962] 3963 3964[[package]] 3965name = "sharded-slab" 3966version = "0.1.7" 3967source = "registry+https://github.com/rust-lang/crates.io-index" 3968checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 3969dependencies = [ 3970 "lazy_static", 3971] 3972 3973[[package]] 3974name = "shlex" 3975version = "1.3.0" 3976source = "registry+https://github.com/rust-lang/crates.io-index" 3977checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 3978 3979[[package]] 3980name = "signal-hook-registry" 3981version = "1.4.8" 3982source = "registry+https://github.com/rust-lang/crates.io-index" 3983checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 3984dependencies = [ 3985 "errno", 3986 "libc", 3987] 3988 3989[[package]] 3990name = "signature" 3991version = "2.2.0" 3992source = "registry+https://github.com/rust-lang/crates.io-index" 3993checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 3994dependencies = [ 3995 "digest", 3996 "rand_core 0.6.4", 3997] 3998 3999[[package]] 4000name = "simd-adler32" 4001version = "0.3.8" 4002source = "registry+https://github.com/rust-lang/crates.io-index" 4003checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" 4004 4005[[package]] 4006name = "slab" 4007version = "0.4.11" 4008source = "registry+https://github.com/rust-lang/crates.io-index" 4009checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 4010 4011[[package]] 4012name = "smallvec" 4013version = "1.15.1" 4014source = "registry+https://github.com/rust-lang/crates.io-index" 4015checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 4016dependencies = [ 4017 "serde", 4018] 4019 4020[[package]] 4021name = "smol_str" 4022version = "0.3.4" 4023source = "registry+https://github.com/rust-lang/crates.io-index" 4024checksum = "3498b0a27f93ef1402f20eefacfaa1691272ac4eca1cdc8c596cb0a245d6cbf5" 4025dependencies = [ 4026 "borsh", 4027 "serde_core", 4028] 4029 4030[[package]] 4031name = "socket2" 4032version = "0.6.1" 4033source = "registry+https://github.com/rust-lang/crates.io-index" 4034checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" 4035dependencies = [ 4036 "libc", 4037 "windows-sys 0.60.2", 4038] 4039 4040[[package]] 4041name = "spin" 4042version = "0.9.8" 4043source = "registry+https://github.com/rust-lang/crates.io-index" 4044checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 4045dependencies = [ 4046 "lock_api", 4047] 4048 4049[[package]] 4050name = "spin" 4051version = "0.10.0" 4052source = "registry+https://github.com/rust-lang/crates.io-index" 4053checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" 4054 4055[[package]] 4056name = "spinning_top" 4057version = "0.3.0" 4058source = "registry+https://github.com/rust-lang/crates.io-index" 4059checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" 4060dependencies = [ 4061 "lock_api", 4062] 4063 4064[[package]] 4065name = "spki" 4066version = "0.7.3" 4067source = "registry+https://github.com/rust-lang/crates.io-index" 4068checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 4069dependencies = [ 4070 "base64ct", 4071 "der", 4072] 4073 4074[[package]] 4075name = "sqlx" 4076version = "0.8.6" 4077source = "registry+https://github.com/rust-lang/crates.io-index" 4078checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc" 4079dependencies = [ 4080 "sqlx-core", 4081 "sqlx-macros", 4082 "sqlx-mysql", 4083 "sqlx-postgres", 4084 "sqlx-sqlite", 4085] 4086 4087[[package]] 4088name = "sqlx-core" 4089version = "0.8.6" 4090source = "registry+https://github.com/rust-lang/crates.io-index" 4091checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6" 4092dependencies = [ 4093 "base64", 4094 "bytes", 4095 "chrono", 4096 "crc", 4097 "crossbeam-queue", 4098 "either", 4099 "event-listener 5.4.1", 4100 "futures-core", 4101 "futures-intrusive", 4102 "futures-io", 4103 "futures-util", 4104 "hashbrown 0.15.5", 4105 "hashlink", 4106 "indexmap 2.12.1", 4107 "log", 4108 "memchr", 4109 "once_cell", 4110 "percent-encoding", 4111 "rustls", 4112 "serde", 4113 "serde_json", 4114 "sha2", 4115 "smallvec", 4116 "thiserror 2.0.17", 4117 "tokio", 4118 "tokio-stream", 4119 "tracing", 4120 "url", 4121 "webpki-roots 0.26.11", 4122] 4123 4124[[package]] 4125name = "sqlx-macros" 4126version = "0.8.6" 4127source = "registry+https://github.com/rust-lang/crates.io-index" 4128checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d" 4129dependencies = [ 4130 "proc-macro2", 4131 "quote", 4132 "sqlx-core", 4133 "sqlx-macros-core", 4134 "syn 2.0.112", 4135] 4136 4137[[package]] 4138name = "sqlx-macros-core" 4139version = "0.8.6" 4140source = "registry+https://github.com/rust-lang/crates.io-index" 4141checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b" 4142dependencies = [ 4143 "dotenvy", 4144 "either", 4145 "heck 0.5.0", 4146 "hex", 4147 "once_cell", 4148 "proc-macro2", 4149 "quote", 4150 "serde", 4151 "serde_json", 4152 "sha2", 4153 "sqlx-core", 4154 "sqlx-mysql", 4155 "sqlx-postgres", 4156 "sqlx-sqlite", 4157 "syn 2.0.112", 4158 "tokio", 4159 "url", 4160] 4161 4162[[package]] 4163name = "sqlx-mysql" 4164version = "0.8.6" 4165source = "registry+https://github.com/rust-lang/crates.io-index" 4166checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526" 4167dependencies = [ 4168 "atoi", 4169 "base64", 4170 "bitflags", 4171 "byteorder", 4172 "bytes", 4173 "chrono", 4174 "crc", 4175 "digest", 4176 "dotenvy", 4177 "either", 4178 "futures-channel", 4179 "futures-core", 4180 "futures-io", 4181 "futures-util", 4182 "generic-array", 4183 "hex", 4184 "hkdf", 4185 "hmac", 4186 "itoa", 4187 "log", 4188 "md-5", 4189 "memchr", 4190 "once_cell", 4191 "percent-encoding", 4192 "rand 0.8.5", 4193 "rsa", 4194 "serde", 4195 "sha1", 4196 "sha2", 4197 "smallvec", 4198 "sqlx-core", 4199 "stringprep", 4200 "thiserror 2.0.17", 4201 "tracing", 4202 "whoami", 4203] 4204 4205[[package]] 4206name = "sqlx-postgres" 4207version = "0.8.6" 4208source = "registry+https://github.com/rust-lang/crates.io-index" 4209checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46" 4210dependencies = [ 4211 "atoi", 4212 "base64", 4213 "bitflags", 4214 "byteorder", 4215 "chrono", 4216 "crc", 4217 "dotenvy", 4218 "etcetera", 4219 "futures-channel", 4220 "futures-core", 4221 "futures-util", 4222 "hex", 4223 "hkdf", 4224 "hmac", 4225 "home", 4226 "itoa", 4227 "log", 4228 "md-5", 4229 "memchr", 4230 "once_cell", 4231 "rand 0.8.5", 4232 "serde", 4233 "serde_json", 4234 "sha2", 4235 "smallvec", 4236 "sqlx-core", 4237 "stringprep", 4238 "thiserror 2.0.17", 4239 "tracing", 4240 "whoami", 4241] 4242 4243[[package]] 4244name = "sqlx-sqlite" 4245version = "0.8.6" 4246source = "registry+https://github.com/rust-lang/crates.io-index" 4247checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea" 4248dependencies = [ 4249 "atoi", 4250 "chrono", 4251 "flume", 4252 "futures-channel", 4253 "futures-core", 4254 "futures-executor", 4255 "futures-intrusive", 4256 "futures-util", 4257 "libsqlite3-sys", 4258 "log", 4259 "percent-encoding", 4260 "serde", 4261 "serde_urlencoded", 4262 "sqlx-core", 4263 "thiserror 2.0.17", 4264 "tracing", 4265 "url", 4266] 4267 4268[[package]] 4269name = "stable_deref_trait" 4270version = "1.2.1" 4271source = "registry+https://github.com/rust-lang/crates.io-index" 4272checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 4273 4274[[package]] 4275name = "stacker" 4276version = "0.1.22" 4277source = "registry+https://github.com/rust-lang/crates.io-index" 4278checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59" 4279dependencies = [ 4280 "cc", 4281 "cfg-if", 4282 "libc", 4283 "psm", 4284 "windows-sys 0.59.0", 4285] 4286 4287[[package]] 4288name = "static-regular-grammar" 4289version = "2.0.2" 4290source = "registry+https://github.com/rust-lang/crates.io-index" 4291checksum = "4f4a6c40247579acfbb138c3cd7de3dab113ab4ac6227f1b7de7d626ee667957" 4292dependencies = [ 4293 "abnf", 4294 "btree-range-map", 4295 "ciborium", 4296 "hex_fmt", 4297 "indoc", 4298 "proc-macro-error", 4299 "proc-macro2", 4300 "quote", 4301 "serde", 4302 "sha2", 4303 "syn 2.0.112", 4304 "thiserror 1.0.69", 4305] 4306 4307[[package]] 4308name = "static_assertions" 4309version = "1.1.0" 4310source = "registry+https://github.com/rust-lang/crates.io-index" 4311checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 4312 4313[[package]] 4314name = "stringprep" 4315version = "0.1.5" 4316source = "registry+https://github.com/rust-lang/crates.io-index" 4317checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" 4318dependencies = [ 4319 "unicode-bidi", 4320 "unicode-normalization", 4321 "unicode-properties", 4322] 4323 4324[[package]] 4325name = "strsim" 4326version = "0.11.1" 4327source = "registry+https://github.com/rust-lang/crates.io-index" 4328checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 4329 4330[[package]] 4331name = "subtle" 4332version = "2.6.1" 4333source = "registry+https://github.com/rust-lang/crates.io-index" 4334checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 4335 4336[[package]] 4337name = "syn" 4338version = "1.0.109" 4339source = "registry+https://github.com/rust-lang/crates.io-index" 4340checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 4341dependencies = [ 4342 "proc-macro2", 4343 "quote", 4344 "unicode-ident", 4345] 4346 4347[[package]] 4348name = "syn" 4349version = "2.0.112" 4350source = "registry+https://github.com/rust-lang/crates.io-index" 4351checksum = "21f182278bf2d2bcb3c88b1b08a37df029d71ce3d3ae26168e3c653b213b99d4" 4352dependencies = [ 4353 "proc-macro2", 4354 "quote", 4355 "unicode-ident", 4356] 4357 4358[[package]] 4359name = "sync_wrapper" 4360version = "1.0.2" 4361source = "registry+https://github.com/rust-lang/crates.io-index" 4362checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 4363dependencies = [ 4364 "futures-core", 4365] 4366 4367[[package]] 4368name = "synstructure" 4369version = "0.13.2" 4370source = "registry+https://github.com/rust-lang/crates.io-index" 4371checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 4372dependencies = [ 4373 "proc-macro2", 4374 "quote", 4375 "syn 2.0.112", 4376] 4377 4378[[package]] 4379name = "system-configuration" 4380version = "0.6.1" 4381source = "registry+https://github.com/rust-lang/crates.io-index" 4382checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" 4383dependencies = [ 4384 "bitflags", 4385 "core-foundation", 4386 "system-configuration-sys", 4387] 4388 4389[[package]] 4390name = "system-configuration-sys" 4391version = "0.6.0" 4392source = "registry+https://github.com/rust-lang/crates.io-index" 4393checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 4394dependencies = [ 4395 "core-foundation-sys", 4396 "libc", 4397] 4398 4399[[package]] 4400name = "thiserror" 4401version = "1.0.69" 4402source = "registry+https://github.com/rust-lang/crates.io-index" 4403checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 4404dependencies = [ 4405 "thiserror-impl 1.0.69", 4406] 4407 4408[[package]] 4409name = "thiserror" 4410version = "2.0.17" 4411source = "registry+https://github.com/rust-lang/crates.io-index" 4412checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 4413dependencies = [ 4414 "thiserror-impl 2.0.17", 4415] 4416 4417[[package]] 4418name = "thiserror-impl" 4419version = "1.0.69" 4420source = "registry+https://github.com/rust-lang/crates.io-index" 4421checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 4422dependencies = [ 4423 "proc-macro2", 4424 "quote", 4425 "syn 2.0.112", 4426] 4427 4428[[package]] 4429name = "thiserror-impl" 4430version = "2.0.17" 4431source = "registry+https://github.com/rust-lang/crates.io-index" 4432checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 4433dependencies = [ 4434 "proc-macro2", 4435 "quote", 4436 "syn 2.0.112", 4437] 4438 4439[[package]] 4440name = "thread_local" 4441version = "1.1.9" 4442source = "registry+https://github.com/rust-lang/crates.io-index" 4443checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 4444dependencies = [ 4445 "cfg-if", 4446] 4447 4448[[package]] 4449name = "time" 4450version = "0.3.44" 4451source = "registry+https://github.com/rust-lang/crates.io-index" 4452checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" 4453dependencies = [ 4454 "deranged", 4455 "itoa", 4456 "num-conv", 4457 "powerfmt", 4458 "serde", 4459 "time-core", 4460 "time-macros", 4461] 4462 4463[[package]] 4464name = "time-core" 4465version = "0.1.6" 4466source = "registry+https://github.com/rust-lang/crates.io-index" 4467checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" 4468 4469[[package]] 4470name = "time-macros" 4471version = "0.2.24" 4472source = "registry+https://github.com/rust-lang/crates.io-index" 4473checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" 4474dependencies = [ 4475 "num-conv", 4476 "time-core", 4477] 4478 4479[[package]] 4480name = "tinystr" 4481version = "0.8.2" 4482source = "registry+https://github.com/rust-lang/crates.io-index" 4483checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" 4484dependencies = [ 4485 "displaydoc", 4486 "zerovec", 4487] 4488 4489[[package]] 4490name = "tinyvec" 4491version = "1.10.0" 4492source = "registry+https://github.com/rust-lang/crates.io-index" 4493checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" 4494dependencies = [ 4495 "tinyvec_macros", 4496] 4497 4498[[package]] 4499name = "tinyvec_macros" 4500version = "0.1.1" 4501source = "registry+https://github.com/rust-lang/crates.io-index" 4502checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 4503 4504[[package]] 4505name = "tokio" 4506version = "1.48.0" 4507source = "registry+https://github.com/rust-lang/crates.io-index" 4508checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" 4509dependencies = [ 4510 "bytes", 4511 "libc", 4512 "mio", 4513 "pin-project-lite", 4514 "signal-hook-registry", 4515 "socket2", 4516 "tokio-macros", 4517 "windows-sys 0.61.2", 4518] 4519 4520[[package]] 4521name = "tokio-macros" 4522version = "2.6.0" 4523source = "registry+https://github.com/rust-lang/crates.io-index" 4524checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" 4525dependencies = [ 4526 "proc-macro2", 4527 "quote", 4528 "syn 2.0.112", 4529] 4530 4531[[package]] 4532name = "tokio-rustls" 4533version = "0.26.4" 4534source = "registry+https://github.com/rust-lang/crates.io-index" 4535checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 4536dependencies = [ 4537 "rustls", 4538 "tokio", 4539] 4540 4541[[package]] 4542name = "tokio-stream" 4543version = "0.1.17" 4544source = "registry+https://github.com/rust-lang/crates.io-index" 4545checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" 4546dependencies = [ 4547 "futures-core", 4548 "pin-project-lite", 4549 "tokio", 4550] 4551 4552[[package]] 4553name = "tokio-util" 4554version = "0.7.17" 4555source = "registry+https://github.com/rust-lang/crates.io-index" 4556checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" 4557dependencies = [ 4558 "bytes", 4559 "futures-core", 4560 "futures-sink", 4561 "futures-util", 4562 "pin-project-lite", 4563 "tokio", 4564] 4565 4566[[package]] 4567name = "tonic" 4568version = "0.14.2" 4569source = "registry+https://github.com/rust-lang/crates.io-index" 4570checksum = "eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203" 4571dependencies = [ 4572 "async-trait", 4573 "axum", 4574 "base64", 4575 "bytes", 4576 "h2", 4577 "http", 4578 "http-body", 4579 "http-body-util", 4580 "hyper", 4581 "hyper-timeout", 4582 "hyper-util", 4583 "percent-encoding", 4584 "pin-project", 4585 "socket2", 4586 "sync_wrapper", 4587 "tokio", 4588 "tokio-stream", 4589 "tower", 4590 "tower-layer", 4591 "tower-service", 4592 "tracing", 4593] 4594 4595[[package]] 4596name = "tower" 4597version = "0.5.2" 4598source = "registry+https://github.com/rust-lang/crates.io-index" 4599checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 4600dependencies = [ 4601 "futures-core", 4602 "futures-util", 4603 "indexmap 2.12.1", 4604 "pin-project-lite", 4605 "slab", 4606 "sync_wrapper", 4607 "tokio", 4608 "tokio-util", 4609 "tower-layer", 4610 "tower-service", 4611 "tracing", 4612] 4613 4614[[package]] 4615name = "tower-http" 4616version = "0.6.8" 4617source = "registry+https://github.com/rust-lang/crates.io-index" 4618checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" 4619dependencies = [ 4620 "async-compression", 4621 "bitflags", 4622 "bytes", 4623 "futures-core", 4624 "futures-util", 4625 "http", 4626 "http-body", 4627 "http-body-util", 4628 "iri-string", 4629 "pin-project-lite", 4630 "tokio", 4631 "tokio-util", 4632 "tower", 4633 "tower-layer", 4634 "tower-service", 4635 "tracing", 4636] 4637 4638[[package]] 4639name = "tower-layer" 4640version = "0.3.3" 4641source = "registry+https://github.com/rust-lang/crates.io-index" 4642checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 4643 4644[[package]] 4645name = "tower-service" 4646version = "0.3.3" 4647source = "registry+https://github.com/rust-lang/crates.io-index" 4648checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 4649 4650[[package]] 4651name = "tower_governor" 4652version = "0.8.0" 4653source = "registry+https://github.com/rust-lang/crates.io-index" 4654checksum = "44de9b94d849d3c46e06a883d72d408c2de6403367b39df2b1c9d9e7b6736fe6" 4655dependencies = [ 4656 "axum", 4657 "forwarded-header-value", 4658 "governor", 4659 "http", 4660 "pin-project", 4661 "thiserror 2.0.17", 4662 "tonic", 4663 "tower", 4664 "tracing", 4665] 4666 4667[[package]] 4668name = "tracing" 4669version = "0.1.44" 4670source = "registry+https://github.com/rust-lang/crates.io-index" 4671checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 4672dependencies = [ 4673 "log", 4674 "pin-project-lite", 4675 "tracing-attributes", 4676 "tracing-core", 4677] 4678 4679[[package]] 4680name = "tracing-attributes" 4681version = "0.1.31" 4682source = "registry+https://github.com/rust-lang/crates.io-index" 4683checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 4684dependencies = [ 4685 "proc-macro2", 4686 "quote", 4687 "syn 2.0.112", 4688] 4689 4690[[package]] 4691name = "tracing-core" 4692version = "0.1.36" 4693source = "registry+https://github.com/rust-lang/crates.io-index" 4694checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 4695dependencies = [ 4696 "once_cell", 4697 "valuable", 4698] 4699 4700[[package]] 4701name = "tracing-log" 4702version = "0.2.0" 4703source = "registry+https://github.com/rust-lang/crates.io-index" 4704checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 4705dependencies = [ 4706 "log", 4707 "once_cell", 4708 "tracing-core", 4709] 4710 4711[[package]] 4712name = "tracing-serde" 4713version = "0.2.0" 4714source = "registry+https://github.com/rust-lang/crates.io-index" 4715checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" 4716dependencies = [ 4717 "serde", 4718 "tracing-core", 4719] 4720 4721[[package]] 4722name = "tracing-subscriber" 4723version = "0.3.22" 4724source = "registry+https://github.com/rust-lang/crates.io-index" 4725checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e" 4726dependencies = [ 4727 "matchers", 4728 "nu-ansi-term", 4729 "once_cell", 4730 "regex-automata", 4731 "serde", 4732 "serde_json", 4733 "sharded-slab", 4734 "smallvec", 4735 "thread_local", 4736 "tracing", 4737 "tracing-core", 4738 "tracing-log", 4739 "tracing-serde", 4740] 4741 4742[[package]] 4743name = "trait-variant" 4744version = "0.1.2" 4745source = "registry+https://github.com/rust-lang/crates.io-index" 4746checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" 4747dependencies = [ 4748 "proc-macro2", 4749 "quote", 4750 "syn 2.0.112", 4751] 4752 4753[[package]] 4754name = "try-lock" 4755version = "0.2.5" 4756source = "registry+https://github.com/rust-lang/crates.io-index" 4757checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 4758 4759[[package]] 4760name = "typenum" 4761version = "1.19.0" 4762source = "registry+https://github.com/rust-lang/crates.io-index" 4763checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 4764 4765[[package]] 4766name = "ucd-trie" 4767version = "0.1.7" 4768source = "registry+https://github.com/rust-lang/crates.io-index" 4769checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971" 4770 4771[[package]] 4772name = "unicode-bidi" 4773version = "0.3.18" 4774source = "registry+https://github.com/rust-lang/crates.io-index" 4775checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" 4776 4777[[package]] 4778name = "unicode-ident" 4779version = "1.0.22" 4780source = "registry+https://github.com/rust-lang/crates.io-index" 4781checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 4782 4783[[package]] 4784name = "unicode-normalization" 4785version = "0.1.25" 4786source = "registry+https://github.com/rust-lang/crates.io-index" 4787checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" 4788dependencies = [ 4789 "tinyvec", 4790] 4791 4792[[package]] 4793name = "unicode-properties" 4794version = "0.1.4" 4795source = "registry+https://github.com/rust-lang/crates.io-index" 4796checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d" 4797 4798[[package]] 4799name = "unicode-segmentation" 4800version = "1.12.0" 4801source = "registry+https://github.com/rust-lang/crates.io-index" 4802checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 4803 4804[[package]] 4805name = "unicode-width" 4806version = "0.1.14" 4807source = "registry+https://github.com/rust-lang/crates.io-index" 4808checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 4809 4810[[package]] 4811name = "unicode-xid" 4812version = "0.2.6" 4813source = "registry+https://github.com/rust-lang/crates.io-index" 4814checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 4815 4816[[package]] 4817name = "unsafe-libyaml" 4818version = "0.2.11" 4819source = "registry+https://github.com/rust-lang/crates.io-index" 4820checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" 4821 4822[[package]] 4823name = "unsigned-varint" 4824version = "0.8.0" 4825source = "registry+https://github.com/rust-lang/crates.io-index" 4826checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 4827 4828[[package]] 4829name = "untrusted" 4830version = "0.7.1" 4831source = "registry+https://github.com/rust-lang/crates.io-index" 4832checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 4833 4834[[package]] 4835name = "untrusted" 4836version = "0.9.0" 4837source = "registry+https://github.com/rust-lang/crates.io-index" 4838checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 4839 4840[[package]] 4841name = "url" 4842version = "2.5.7" 4843source = "registry+https://github.com/rust-lang/crates.io-index" 4844checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" 4845dependencies = [ 4846 "form_urlencoded", 4847 "idna", 4848 "percent-encoding", 4849 "serde", 4850] 4851 4852[[package]] 4853name = "urlencoding" 4854version = "2.1.3" 4855source = "registry+https://github.com/rust-lang/crates.io-index" 4856checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 4857 4858[[package]] 4859name = "utf8-width" 4860version = "0.1.8" 4861source = "registry+https://github.com/rust-lang/crates.io-index" 4862checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091" 4863 4864[[package]] 4865name = "utf8_iter" 4866version = "1.0.4" 4867source = "registry+https://github.com/rust-lang/crates.io-index" 4868checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 4869 4870[[package]] 4871name = "uuid" 4872version = "1.21.0" 4873source = "registry+https://github.com/rust-lang/crates.io-index" 4874checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb" 4875dependencies = [ 4876 "getrandom 0.4.1", 4877 "js-sys", 4878 "wasm-bindgen", 4879] 4880 4881[[package]] 4882name = "valuable" 4883version = "0.1.1" 4884source = "registry+https://github.com/rust-lang/crates.io-index" 4885checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 4886 4887[[package]] 4888name = "value-bag" 4889version = "1.12.0" 4890source = "registry+https://github.com/rust-lang/crates.io-index" 4891checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0" 4892 4893[[package]] 4894name = "vcpkg" 4895version = "0.2.15" 4896source = "registry+https://github.com/rust-lang/crates.io-index" 4897checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 4898 4899[[package]] 4900name = "version_check" 4901version = "0.9.5" 4902source = "registry+https://github.com/rust-lang/crates.io-index" 4903checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 4904 4905[[package]] 4906name = "walkdir" 4907version = "2.5.0" 4908source = "registry+https://github.com/rust-lang/crates.io-index" 4909checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 4910dependencies = [ 4911 "same-file", 4912 "winapi-util", 4913] 4914 4915[[package]] 4916name = "want" 4917version = "0.3.1" 4918source = "registry+https://github.com/rust-lang/crates.io-index" 4919checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 4920dependencies = [ 4921 "try-lock", 4922] 4923 4924[[package]] 4925name = "wasi" 4926version = "0.11.1+wasi-snapshot-preview1" 4927source = "registry+https://github.com/rust-lang/crates.io-index" 4928checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 4929 4930[[package]] 4931name = "wasip2" 4932version = "1.0.1+wasi-0.2.4" 4933source = "registry+https://github.com/rust-lang/crates.io-index" 4934checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 4935dependencies = [ 4936 "wit-bindgen 0.46.0", 4937] 4938 4939[[package]] 4940name = "wasip3" 4941version = "0.4.0+wasi-0.3.0-rc-2026-01-06" 4942source = "registry+https://github.com/rust-lang/crates.io-index" 4943checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" 4944dependencies = [ 4945 "wit-bindgen 0.51.0", 4946] 4947 4948[[package]] 4949name = "wasite" 4950version = "0.1.0" 4951source = "registry+https://github.com/rust-lang/crates.io-index" 4952checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 4953 4954[[package]] 4955name = "wasm-bindgen" 4956version = "0.2.106" 4957source = "registry+https://github.com/rust-lang/crates.io-index" 4958checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" 4959dependencies = [ 4960 "cfg-if", 4961 "once_cell", 4962 "rustversion", 4963 "wasm-bindgen-macro", 4964 "wasm-bindgen-shared", 4965] 4966 4967[[package]] 4968name = "wasm-bindgen-futures" 4969version = "0.4.56" 4970source = "registry+https://github.com/rust-lang/crates.io-index" 4971checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c" 4972dependencies = [ 4973 "cfg-if", 4974 "js-sys", 4975 "once_cell", 4976 "wasm-bindgen", 4977 "web-sys", 4978] 4979 4980[[package]] 4981name = "wasm-bindgen-macro" 4982version = "0.2.106" 4983source = "registry+https://github.com/rust-lang/crates.io-index" 4984checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" 4985dependencies = [ 4986 "quote", 4987 "wasm-bindgen-macro-support", 4988] 4989 4990[[package]] 4991name = "wasm-bindgen-macro-support" 4992version = "0.2.106" 4993source = "registry+https://github.com/rust-lang/crates.io-index" 4994checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" 4995dependencies = [ 4996 "bumpalo", 4997 "proc-macro2", 4998 "quote", 4999 "syn 2.0.112", 5000 "wasm-bindgen-shared", 5001] 5002 5003[[package]] 5004name = "wasm-bindgen-shared" 5005version = "0.2.106" 5006source = "registry+https://github.com/rust-lang/crates.io-index" 5007checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" 5008dependencies = [ 5009 "unicode-ident", 5010] 5011 5012[[package]] 5013name = "wasm-encoder" 5014version = "0.244.0" 5015source = "registry+https://github.com/rust-lang/crates.io-index" 5016checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" 5017dependencies = [ 5018 "leb128fmt", 5019 "wasmparser", 5020] 5021 5022[[package]] 5023name = "wasm-metadata" 5024version = "0.244.0" 5025source = "registry+https://github.com/rust-lang/crates.io-index" 5026checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" 5027dependencies = [ 5028 "anyhow", 5029 "indexmap 2.12.1", 5030 "wasm-encoder", 5031 "wasmparser", 5032] 5033 5034[[package]] 5035name = "wasmparser" 5036version = "0.244.0" 5037source = "registry+https://github.com/rust-lang/crates.io-index" 5038checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" 5039dependencies = [ 5040 "bitflags", 5041 "hashbrown 0.15.5", 5042 "indexmap 2.12.1", 5043 "semver", 5044] 5045 5046[[package]] 5047name = "web-sys" 5048version = "0.3.83" 5049source = "registry+https://github.com/rust-lang/crates.io-index" 5050checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac" 5051dependencies = [ 5052 "js-sys", 5053 "wasm-bindgen", 5054] 5055 5056[[package]] 5057name = "web-time" 5058version = "1.1.0" 5059source = "registry+https://github.com/rust-lang/crates.io-index" 5060checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 5061dependencies = [ 5062 "js-sys", 5063 "wasm-bindgen", 5064] 5065 5066[[package]] 5067name = "webpki-roots" 5068version = "0.26.11" 5069source = "registry+https://github.com/rust-lang/crates.io-index" 5070checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" 5071dependencies = [ 5072 "webpki-roots 1.0.5", 5073] 5074 5075[[package]] 5076name = "webpki-roots" 5077version = "1.0.5" 5078source = "registry+https://github.com/rust-lang/crates.io-index" 5079checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c" 5080dependencies = [ 5081 "rustls-pki-types", 5082] 5083 5084[[package]] 5085name = "whoami" 5086version = "1.6.1" 5087source = "registry+https://github.com/rust-lang/crates.io-index" 5088checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d" 5089dependencies = [ 5090 "libredox", 5091 "wasite", 5092] 5093 5094[[package]] 5095name = "winapi" 5096version = "0.3.9" 5097source = "registry+https://github.com/rust-lang/crates.io-index" 5098checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 5099dependencies = [ 5100 "winapi-i686-pc-windows-gnu", 5101 "winapi-x86_64-pc-windows-gnu", 5102] 5103 5104[[package]] 5105name = "winapi-i686-pc-windows-gnu" 5106version = "0.4.0" 5107source = "registry+https://github.com/rust-lang/crates.io-index" 5108checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 5109 5110[[package]] 5111name = "winapi-util" 5112version = "0.1.11" 5113source = "registry+https://github.com/rust-lang/crates.io-index" 5114checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" 5115dependencies = [ 5116 "windows-sys 0.61.2", 5117] 5118 5119[[package]] 5120name = "winapi-x86_64-pc-windows-gnu" 5121version = "0.4.0" 5122source = "registry+https://github.com/rust-lang/crates.io-index" 5123checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 5124 5125[[package]] 5126name = "windows-core" 5127version = "0.62.2" 5128source = "registry+https://github.com/rust-lang/crates.io-index" 5129checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 5130dependencies = [ 5131 "windows-implement", 5132 "windows-interface", 5133 "windows-link", 5134 "windows-result", 5135 "windows-strings", 5136] 5137 5138[[package]] 5139name = "windows-implement" 5140version = "0.60.2" 5141source = "registry+https://github.com/rust-lang/crates.io-index" 5142checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 5143dependencies = [ 5144 "proc-macro2", 5145 "quote", 5146 "syn 2.0.112", 5147] 5148 5149[[package]] 5150name = "windows-interface" 5151version = "0.59.3" 5152source = "registry+https://github.com/rust-lang/crates.io-index" 5153checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 5154dependencies = [ 5155 "proc-macro2", 5156 "quote", 5157 "syn 2.0.112", 5158] 5159 5160[[package]] 5161name = "windows-link" 5162version = "0.2.1" 5163source = "registry+https://github.com/rust-lang/crates.io-index" 5164checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 5165 5166[[package]] 5167name = "windows-registry" 5168version = "0.6.1" 5169source = "registry+https://github.com/rust-lang/crates.io-index" 5170checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" 5171dependencies = [ 5172 "windows-link", 5173 "windows-result", 5174 "windows-strings", 5175] 5176 5177[[package]] 5178name = "windows-result" 5179version = "0.4.1" 5180source = "registry+https://github.com/rust-lang/crates.io-index" 5181checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 5182dependencies = [ 5183 "windows-link", 5184] 5185 5186[[package]] 5187name = "windows-strings" 5188version = "0.5.1" 5189source = "registry+https://github.com/rust-lang/crates.io-index" 5190checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 5191dependencies = [ 5192 "windows-link", 5193] 5194 5195[[package]] 5196name = "windows-sys" 5197version = "0.48.0" 5198source = "registry+https://github.com/rust-lang/crates.io-index" 5199checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 5200dependencies = [ 5201 "windows-targets 0.48.5", 5202] 5203 5204[[package]] 5205name = "windows-sys" 5206version = "0.52.0" 5207source = "registry+https://github.com/rust-lang/crates.io-index" 5208checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 5209dependencies = [ 5210 "windows-targets 0.52.6", 5211] 5212 5213[[package]] 5214name = "windows-sys" 5215version = "0.59.0" 5216source = "registry+https://github.com/rust-lang/crates.io-index" 5217checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 5218dependencies = [ 5219 "windows-targets 0.52.6", 5220] 5221 5222[[package]] 5223name = "windows-sys" 5224version = "0.60.2" 5225source = "registry+https://github.com/rust-lang/crates.io-index" 5226checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 5227dependencies = [ 5228 "windows-targets 0.53.5", 5229] 5230 5231[[package]] 5232name = "windows-sys" 5233version = "0.61.2" 5234source = "registry+https://github.com/rust-lang/crates.io-index" 5235checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 5236dependencies = [ 5237 "windows-link", 5238] 5239 5240[[package]] 5241name = "windows-targets" 5242version = "0.48.5" 5243source = "registry+https://github.com/rust-lang/crates.io-index" 5244checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 5245dependencies = [ 5246 "windows_aarch64_gnullvm 0.48.5", 5247 "windows_aarch64_msvc 0.48.5", 5248 "windows_i686_gnu 0.48.5", 5249 "windows_i686_msvc 0.48.5", 5250 "windows_x86_64_gnu 0.48.5", 5251 "windows_x86_64_gnullvm 0.48.5", 5252 "windows_x86_64_msvc 0.48.5", 5253] 5254 5255[[package]] 5256name = "windows-targets" 5257version = "0.52.6" 5258source = "registry+https://github.com/rust-lang/crates.io-index" 5259checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 5260dependencies = [ 5261 "windows_aarch64_gnullvm 0.52.6", 5262 "windows_aarch64_msvc 0.52.6", 5263 "windows_i686_gnu 0.52.6", 5264 "windows_i686_gnullvm 0.52.6", 5265 "windows_i686_msvc 0.52.6", 5266 "windows_x86_64_gnu 0.52.6", 5267 "windows_x86_64_gnullvm 0.52.6", 5268 "windows_x86_64_msvc 0.52.6", 5269] 5270 5271[[package]] 5272name = "windows-targets" 5273version = "0.53.5" 5274source = "registry+https://github.com/rust-lang/crates.io-index" 5275checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 5276dependencies = [ 5277 "windows-link", 5278 "windows_aarch64_gnullvm 0.53.1", 5279 "windows_aarch64_msvc 0.53.1", 5280 "windows_i686_gnu 0.53.1", 5281 "windows_i686_gnullvm 0.53.1", 5282 "windows_i686_msvc 0.53.1", 5283 "windows_x86_64_gnu 0.53.1", 5284 "windows_x86_64_gnullvm 0.53.1", 5285 "windows_x86_64_msvc 0.53.1", 5286] 5287 5288[[package]] 5289name = "windows_aarch64_gnullvm" 5290version = "0.48.5" 5291source = "registry+https://github.com/rust-lang/crates.io-index" 5292checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 5293 5294[[package]] 5295name = "windows_aarch64_gnullvm" 5296version = "0.52.6" 5297source = "registry+https://github.com/rust-lang/crates.io-index" 5298checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 5299 5300[[package]] 5301name = "windows_aarch64_gnullvm" 5302version = "0.53.1" 5303source = "registry+https://github.com/rust-lang/crates.io-index" 5304checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 5305 5306[[package]] 5307name = "windows_aarch64_msvc" 5308version = "0.48.5" 5309source = "registry+https://github.com/rust-lang/crates.io-index" 5310checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 5311 5312[[package]] 5313name = "windows_aarch64_msvc" 5314version = "0.52.6" 5315source = "registry+https://github.com/rust-lang/crates.io-index" 5316checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 5317 5318[[package]] 5319name = "windows_aarch64_msvc" 5320version = "0.53.1" 5321source = "registry+https://github.com/rust-lang/crates.io-index" 5322checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 5323 5324[[package]] 5325name = "windows_i686_gnu" 5326version = "0.48.5" 5327source = "registry+https://github.com/rust-lang/crates.io-index" 5328checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 5329 5330[[package]] 5331name = "windows_i686_gnu" 5332version = "0.52.6" 5333source = "registry+https://github.com/rust-lang/crates.io-index" 5334checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 5335 5336[[package]] 5337name = "windows_i686_gnu" 5338version = "0.53.1" 5339source = "registry+https://github.com/rust-lang/crates.io-index" 5340checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 5341 5342[[package]] 5343name = "windows_i686_gnullvm" 5344version = "0.52.6" 5345source = "registry+https://github.com/rust-lang/crates.io-index" 5346checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 5347 5348[[package]] 5349name = "windows_i686_gnullvm" 5350version = "0.53.1" 5351source = "registry+https://github.com/rust-lang/crates.io-index" 5352checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 5353 5354[[package]] 5355name = "windows_i686_msvc" 5356version = "0.48.5" 5357source = "registry+https://github.com/rust-lang/crates.io-index" 5358checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 5359 5360[[package]] 5361name = "windows_i686_msvc" 5362version = "0.52.6" 5363source = "registry+https://github.com/rust-lang/crates.io-index" 5364checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 5365 5366[[package]] 5367name = "windows_i686_msvc" 5368version = "0.53.1" 5369source = "registry+https://github.com/rust-lang/crates.io-index" 5370checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 5371 5372[[package]] 5373name = "windows_x86_64_gnu" 5374version = "0.48.5" 5375source = "registry+https://github.com/rust-lang/crates.io-index" 5376checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 5377 5378[[package]] 5379name = "windows_x86_64_gnu" 5380version = "0.52.6" 5381source = "registry+https://github.com/rust-lang/crates.io-index" 5382checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 5383 5384[[package]] 5385name = "windows_x86_64_gnu" 5386version = "0.53.1" 5387source = "registry+https://github.com/rust-lang/crates.io-index" 5388checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 5389 5390[[package]] 5391name = "windows_x86_64_gnullvm" 5392version = "0.48.5" 5393source = "registry+https://github.com/rust-lang/crates.io-index" 5394checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 5395 5396[[package]] 5397name = "windows_x86_64_gnullvm" 5398version = "0.52.6" 5399source = "registry+https://github.com/rust-lang/crates.io-index" 5400checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 5401 5402[[package]] 5403name = "windows_x86_64_gnullvm" 5404version = "0.53.1" 5405source = "registry+https://github.com/rust-lang/crates.io-index" 5406checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 5407 5408[[package]] 5409name = "windows_x86_64_msvc" 5410version = "0.48.5" 5411source = "registry+https://github.com/rust-lang/crates.io-index" 5412checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 5413 5414[[package]] 5415name = "windows_x86_64_msvc" 5416version = "0.52.6" 5417source = "registry+https://github.com/rust-lang/crates.io-index" 5418checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 5419 5420[[package]] 5421name = "windows_x86_64_msvc" 5422version = "0.53.1" 5423source = "registry+https://github.com/rust-lang/crates.io-index" 5424checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 5425 5426[[package]] 5427name = "wit-bindgen" 5428version = "0.46.0" 5429source = "registry+https://github.com/rust-lang/crates.io-index" 5430checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 5431 5432[[package]] 5433name = "wit-bindgen" 5434version = "0.51.0" 5435source = "registry+https://github.com/rust-lang/crates.io-index" 5436checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" 5437dependencies = [ 5438 "wit-bindgen-rust-macro", 5439] 5440 5441[[package]] 5442name = "wit-bindgen-core" 5443version = "0.51.0" 5444source = "registry+https://github.com/rust-lang/crates.io-index" 5445checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" 5446dependencies = [ 5447 "anyhow", 5448 "heck 0.5.0", 5449 "wit-parser", 5450] 5451 5452[[package]] 5453name = "wit-bindgen-rust" 5454version = "0.51.0" 5455source = "registry+https://github.com/rust-lang/crates.io-index" 5456checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" 5457dependencies = [ 5458 "anyhow", 5459 "heck 0.5.0", 5460 "indexmap 2.12.1", 5461 "prettyplease", 5462 "syn 2.0.112", 5463 "wasm-metadata", 5464 "wit-bindgen-core", 5465 "wit-component", 5466] 5467 5468[[package]] 5469name = "wit-bindgen-rust-macro" 5470version = "0.51.0" 5471source = "registry+https://github.com/rust-lang/crates.io-index" 5472checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" 5473dependencies = [ 5474 "anyhow", 5475 "prettyplease", 5476 "proc-macro2", 5477 "quote", 5478 "syn 2.0.112", 5479 "wit-bindgen-core", 5480 "wit-bindgen-rust", 5481] 5482 5483[[package]] 5484name = "wit-component" 5485version = "0.244.0" 5486source = "registry+https://github.com/rust-lang/crates.io-index" 5487checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" 5488dependencies = [ 5489 "anyhow", 5490 "bitflags", 5491 "indexmap 2.12.1", 5492 "log", 5493 "serde", 5494 "serde_derive", 5495 "serde_json", 5496 "wasm-encoder", 5497 "wasm-metadata", 5498 "wasmparser", 5499 "wit-parser", 5500] 5501 5502[[package]] 5503name = "wit-parser" 5504version = "0.244.0" 5505source = "registry+https://github.com/rust-lang/crates.io-index" 5506checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" 5507dependencies = [ 5508 "anyhow", 5509 "id-arena", 5510 "indexmap 2.12.1", 5511 "log", 5512 "semver", 5513 "serde", 5514 "serde_derive", 5515 "serde_json", 5516 "unicode-xid", 5517 "wasmparser", 5518] 5519 5520[[package]] 5521name = "writeable" 5522version = "0.6.2" 5523source = "registry+https://github.com/rust-lang/crates.io-index" 5524checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" 5525 5526[[package]] 5527name = "yansi" 5528version = "1.0.1" 5529source = "registry+https://github.com/rust-lang/crates.io-index" 5530checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 5531 5532[[package]] 5533name = "yoke" 5534version = "0.8.1" 5535source = "registry+https://github.com/rust-lang/crates.io-index" 5536checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" 5537dependencies = [ 5538 "stable_deref_trait", 5539 "yoke-derive", 5540 "zerofrom", 5541] 5542 5543[[package]] 5544name = "yoke-derive" 5545version = "0.8.1" 5546source = "registry+https://github.com/rust-lang/crates.io-index" 5547checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" 5548dependencies = [ 5549 "proc-macro2", 5550 "quote", 5551 "syn 2.0.112", 5552 "synstructure", 5553] 5554 5555[[package]] 5556name = "zerocopy" 5557version = "0.8.31" 5558source = "registry+https://github.com/rust-lang/crates.io-index" 5559checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3" 5560dependencies = [ 5561 "zerocopy-derive", 5562] 5563 5564[[package]] 5565name = "zerocopy-derive" 5566version = "0.8.31" 5567source = "registry+https://github.com/rust-lang/crates.io-index" 5568checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a" 5569dependencies = [ 5570 "proc-macro2", 5571 "quote", 5572 "syn 2.0.112", 5573] 5574 5575[[package]] 5576name = "zerofrom" 5577version = "0.1.6" 5578source = "registry+https://github.com/rust-lang/crates.io-index" 5579checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 5580dependencies = [ 5581 "zerofrom-derive", 5582] 5583 5584[[package]] 5585name = "zerofrom-derive" 5586version = "0.1.6" 5587source = "registry+https://github.com/rust-lang/crates.io-index" 5588checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 5589dependencies = [ 5590 "proc-macro2", 5591 "quote", 5592 "syn 2.0.112", 5593 "synstructure", 5594] 5595 5596[[package]] 5597name = "zeroize" 5598version = "1.8.2" 5599source = "registry+https://github.com/rust-lang/crates.io-index" 5600checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 5601dependencies = [ 5602 "serde", 5603 "zeroize_derive", 5604] 5605 5606[[package]] 5607name = "zeroize_derive" 5608version = "1.4.3" 5609source = "registry+https://github.com/rust-lang/crates.io-index" 5610checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" 5611dependencies = [ 5612 "proc-macro2", 5613 "quote", 5614 "syn 2.0.112", 5615] 5616 5617[[package]] 5618name = "zerotrie" 5619version = "0.2.3" 5620source = "registry+https://github.com/rust-lang/crates.io-index" 5621checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" 5622dependencies = [ 5623 "displaydoc", 5624 "yoke", 5625 "zerofrom", 5626] 5627 5628[[package]] 5629name = "zerovec" 5630version = "0.11.5" 5631source = "registry+https://github.com/rust-lang/crates.io-index" 5632checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" 5633dependencies = [ 5634 "yoke", 5635 "zerofrom", 5636 "zerovec-derive", 5637] 5638 5639[[package]] 5640name = "zerovec-derive" 5641version = "0.11.2" 5642source = "registry+https://github.com/rust-lang/crates.io-index" 5643checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" 5644dependencies = [ 5645 "proc-macro2", 5646 "quote", 5647 "syn 2.0.112", 5648] 5649 5650[[package]] 5651name = "zmij" 5652version = "1.0.8" 5653source = "registry+https://github.com/rust-lang/crates.io-index" 5654checksum = "317f17ff091ac4515f17cc7a190d2769a8c9a96d227de5d64b500b01cda8f2cd" 5655 5656[[package]] 5657name = "zstd" 5658version = "0.13.3" 5659source = "registry+https://github.com/rust-lang/crates.io-index" 5660checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" 5661dependencies = [ 5662 "zstd-safe", 5663] 5664 5665[[package]] 5666name = "zstd-safe" 5667version = "7.2.4" 5668source = "registry+https://github.com/rust-lang/crates.io-index" 5669checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" 5670dependencies = [ 5671 "zstd-sys", 5672] 5673 5674[[package]] 5675name = "zstd-sys" 5676version = "2.0.16+zstd.1.5.7" 5677source = "registry+https://github.com/rust-lang/crates.io-index" 5678checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" 5679dependencies = [ 5680 "cc", 5681 "pkg-config", 5682]