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