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