announcing good-first-issue tags added on @tangled.sh (not affiliated with tangled!)
at 881bcfde55e4fc44ea76f2ae40125c42e5809c85 3605 lines 90 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "abnf" 7version = "0.13.0" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "087113bd50d9adce24850eed5d0476c7d199d532fce8fab5173650331e09033a" 10dependencies = [ 11 "abnf-core", 12 "nom", 13] 14 15[[package]] 16name = "abnf-core" 17version = "0.5.0" 18source = "registry+https://github.com/rust-lang/crates.io-index" 19checksum = "c44e09c43ae1c368fb91a03a566472d0087c26cf7e1b9e8e289c14ede681dd7d" 20dependencies = [ 21 "nom", 22] 23 24[[package]] 25name = "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 = "aho-corasick" 41version = "1.1.3" 42source = "registry+https://github.com/rust-lang/crates.io-index" 43checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 44dependencies = [ 45 "memchr", 46] 47 48[[package]] 49name = "aliasable" 50version = "0.1.3" 51source = "registry+https://github.com/rust-lang/crates.io-index" 52checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" 53 54[[package]] 55name = "allocator-api2" 56version = "0.2.21" 57source = "registry+https://github.com/rust-lang/crates.io-index" 58checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 59 60[[package]] 61name = "android_system_properties" 62version = "0.1.5" 63source = "registry+https://github.com/rust-lang/crates.io-index" 64checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 65dependencies = [ 66 "libc", 67] 68 69[[package]] 70name = "anstream" 71version = "0.6.21" 72source = "registry+https://github.com/rust-lang/crates.io-index" 73checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" 74dependencies = [ 75 "anstyle", 76 "anstyle-parse", 77 "anstyle-query", 78 "anstyle-wincon", 79 "colorchoice", 80 "is_terminal_polyfill", 81 "utf8parse", 82] 83 84[[package]] 85name = "anstyle" 86version = "1.0.13" 87source = "registry+https://github.com/rust-lang/crates.io-index" 88checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" 89 90[[package]] 91name = "anstyle-parse" 92version = "0.2.7" 93source = "registry+https://github.com/rust-lang/crates.io-index" 94checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 95dependencies = [ 96 "utf8parse", 97] 98 99[[package]] 100name = "anstyle-query" 101version = "1.1.4" 102source = "registry+https://github.com/rust-lang/crates.io-index" 103checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" 104dependencies = [ 105 "windows-sys 0.60.2", 106] 107 108[[package]] 109name = "anstyle-wincon" 110version = "3.0.10" 111source = "registry+https://github.com/rust-lang/crates.io-index" 112checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" 113dependencies = [ 114 "anstyle", 115 "once_cell_polyfill", 116 "windows-sys 0.60.2", 117] 118 119[[package]] 120name = "async-compression" 121version = "0.4.32" 122source = "registry+https://github.com/rust-lang/crates.io-index" 123checksum = "5a89bce6054c720275ac2432fbba080a66a2106a44a1b804553930ca6909f4e0" 124dependencies = [ 125 "compression-codecs", 126 "compression-core", 127 "futures-core", 128 "pin-project-lite", 129 "tokio", 130] 131 132[[package]] 133name = "async-lock" 134version = "3.4.1" 135source = "registry+https://github.com/rust-lang/crates.io-index" 136checksum = "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc" 137dependencies = [ 138 "event-listener", 139 "event-listener-strategy", 140 "pin-project-lite", 141] 142 143[[package]] 144name = "async-trait" 145version = "0.1.89" 146source = "registry+https://github.com/rust-lang/crates.io-index" 147checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 148dependencies = [ 149 "proc-macro2", 150 "quote", 151 "syn 2.0.106", 152] 153 154[[package]] 155name = "atomic-waker" 156version = "1.1.2" 157source = "registry+https://github.com/rust-lang/crates.io-index" 158checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 159 160[[package]] 161name = "atrium-api" 162version = "0.25.4" 163source = "git+https://github.com/uniphil/atrium.git?branch=fix%2Fresolve-handle-https-accept-whitespace#606998c9a67d94eb491251d77dedbc0c49f2dfe5" 164dependencies = [ 165 "atrium-common", 166 "atrium-xrpc", 167 "chrono", 168 "http", 169 "ipld-core", 170 "langtag 0.3.4", 171 "regex", 172 "serde", 173 "serde_bytes", 174 "serde_json", 175 "thiserror 1.0.69", 176 "trait-variant", 177] 178 179[[package]] 180name = "atrium-common" 181version = "0.1.2" 182source = "git+https://github.com/uniphil/atrium.git?branch=fix%2Fresolve-handle-https-accept-whitespace#606998c9a67d94eb491251d77dedbc0c49f2dfe5" 183dependencies = [ 184 "dashmap", 185 "lru", 186 "moka", 187 "thiserror 1.0.69", 188 "tokio", 189 "trait-variant", 190 "web-time", 191] 192 193[[package]] 194name = "atrium-xrpc" 195version = "0.12.3" 196source = "git+https://github.com/uniphil/atrium.git?branch=fix%2Fresolve-handle-https-accept-whitespace#606998c9a67d94eb491251d77dedbc0c49f2dfe5" 197dependencies = [ 198 "http", 199 "serde", 200 "serde_html_form", 201 "serde_json", 202 "thiserror 1.0.69", 203 "trait-variant", 204] 205 206[[package]] 207name = "autocfg" 208version = "1.5.0" 209source = "registry+https://github.com/rust-lang/crates.io-index" 210checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 211 212[[package]] 213name = "backtrace" 214version = "0.3.76" 215source = "registry+https://github.com/rust-lang/crates.io-index" 216checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" 217dependencies = [ 218 "addr2line", 219 "cfg-if", 220 "libc", 221 "miniz_oxide", 222 "object", 223 "rustc-demangle", 224 "windows-link 0.2.0", 225] 226 227[[package]] 228name = "base-x" 229version = "0.2.11" 230source = "registry+https://github.com/rust-lang/crates.io-index" 231checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 232 233[[package]] 234name = "base256emoji" 235version = "1.0.2" 236source = "registry+https://github.com/rust-lang/crates.io-index" 237checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c" 238dependencies = [ 239 "const-str", 240 "match-lookup", 241] 242 243[[package]] 244name = "base64" 245version = "0.22.1" 246source = "registry+https://github.com/rust-lang/crates.io-index" 247checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 248 249[[package]] 250name = "bitflags" 251version = "2.9.4" 252source = "registry+https://github.com/rust-lang/crates.io-index" 253checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" 254 255[[package]] 256name = "block-buffer" 257version = "0.10.4" 258source = "registry+https://github.com/rust-lang/crates.io-index" 259checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 260dependencies = [ 261 "generic-array", 262] 263 264[[package]] 265name = "bon" 266version = "3.7.2" 267source = "registry+https://github.com/rust-lang/crates.io-index" 268checksum = "c2529c31017402be841eb45892278a6c21a000c0a17643af326c73a73f83f0fb" 269dependencies = [ 270 "bon-macros", 271 "rustversion", 272] 273 274[[package]] 275name = "bon-macros" 276version = "3.7.2" 277source = "registry+https://github.com/rust-lang/crates.io-index" 278checksum = "d82020dadcb845a345591863adb65d74fa8dc5c18a0b6d408470e13b7adc7005" 279dependencies = [ 280 "darling", 281 "ident_case", 282 "prettyplease", 283 "proc-macro2", 284 "quote", 285 "rustversion", 286 "syn 2.0.106", 287] 288 289[[package]] 290name = "borsh" 291version = "1.5.7" 292source = "registry+https://github.com/rust-lang/crates.io-index" 293checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce" 294dependencies = [ 295 "cfg_aliases", 296] 297 298[[package]] 299name = "btree-range-map" 300version = "0.7.2" 301source = "registry+https://github.com/rust-lang/crates.io-index" 302checksum = "1be5c9672446d3800bcbcaabaeba121fe22f1fb25700c4562b22faf76d377c33" 303dependencies = [ 304 "btree-slab", 305 "cc-traits", 306 "range-traits", 307 "serde", 308 "slab", 309] 310 311[[package]] 312name = "btree-slab" 313version = "0.6.1" 314source = "registry+https://github.com/rust-lang/crates.io-index" 315checksum = "7a2b56d3029f075c4fa892428a098425b86cef5c89ae54073137ece416aef13c" 316dependencies = [ 317 "cc-traits", 318 "slab", 319 "smallvec", 320] 321 322[[package]] 323name = "bumpalo" 324version = "3.19.0" 325source = "registry+https://github.com/rust-lang/crates.io-index" 326checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 327 328[[package]] 329name = "bytes" 330version = "1.10.1" 331source = "registry+https://github.com/rust-lang/crates.io-index" 332checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 333dependencies = [ 334 "serde", 335] 336 337[[package]] 338name = "cbor4ii" 339version = "0.2.14" 340source = "registry+https://github.com/rust-lang/crates.io-index" 341checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4" 342dependencies = [ 343 "serde", 344] 345 346[[package]] 347name = "cc" 348version = "1.2.40" 349source = "registry+https://github.com/rust-lang/crates.io-index" 350checksum = "e1d05d92f4b1fd76aad469d46cdd858ca761576082cd37df81416691e50199fb" 351dependencies = [ 352 "find-msvc-tools", 353 "jobserver", 354 "libc", 355 "shlex", 356] 357 358[[package]] 359name = "cc-traits" 360version = "2.0.0" 361source = "registry+https://github.com/rust-lang/crates.io-index" 362checksum = "060303ef31ef4a522737e1b1ab68c67916f2a787bb2f4f54f383279adba962b5" 363dependencies = [ 364 "slab", 365] 366 367[[package]] 368name = "cfg-if" 369version = "1.0.3" 370source = "registry+https://github.com/rust-lang/crates.io-index" 371checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" 372 373[[package]] 374name = "cfg_aliases" 375version = "0.2.1" 376source = "registry+https://github.com/rust-lang/crates.io-index" 377checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 378 379[[package]] 380name = "chrono" 381version = "0.4.42" 382source = "registry+https://github.com/rust-lang/crates.io-index" 383checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" 384dependencies = [ 385 "iana-time-zone", 386 "js-sys", 387 "num-traits", 388 "serde", 389 "wasm-bindgen", 390 "windows-link 0.2.0", 391] 392 393[[package]] 394name = "ciborium" 395version = "0.2.2" 396source = "registry+https://github.com/rust-lang/crates.io-index" 397checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 398dependencies = [ 399 "ciborium-io", 400 "ciborium-ll", 401 "serde", 402] 403 404[[package]] 405name = "ciborium-io" 406version = "0.2.2" 407source = "registry+https://github.com/rust-lang/crates.io-index" 408checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 409 410[[package]] 411name = "ciborium-ll" 412version = "0.2.2" 413source = "registry+https://github.com/rust-lang/crates.io-index" 414checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 415dependencies = [ 416 "ciborium-io", 417 "half", 418] 419 420[[package]] 421name = "cid" 422version = "0.11.1" 423source = "registry+https://github.com/rust-lang/crates.io-index" 424checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" 425dependencies = [ 426 "core2", 427 "multibase", 428 "multihash", 429 "serde", 430 "serde_bytes", 431 "unsigned-varint", 432] 433 434[[package]] 435name = "clap" 436version = "4.5.48" 437source = "registry+https://github.com/rust-lang/crates.io-index" 438checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae" 439dependencies = [ 440 "clap_builder", 441 "clap_derive", 442] 443 444[[package]] 445name = "clap_builder" 446version = "4.5.48" 447source = "registry+https://github.com/rust-lang/crates.io-index" 448checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9" 449dependencies = [ 450 "anstream", 451 "anstyle", 452 "clap_lex", 453 "strsim", 454] 455 456[[package]] 457name = "clap_derive" 458version = "4.5.47" 459source = "registry+https://github.com/rust-lang/crates.io-index" 460checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c" 461dependencies = [ 462 "heck 0.5.0", 463 "proc-macro2", 464 "quote", 465 "syn 2.0.106", 466] 467 468[[package]] 469name = "clap_lex" 470version = "0.7.5" 471source = "registry+https://github.com/rust-lang/crates.io-index" 472checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" 473 474[[package]] 475name = "colorchoice" 476version = "1.0.4" 477source = "registry+https://github.com/rust-lang/crates.io-index" 478checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 479 480[[package]] 481name = "compression-codecs" 482version = "0.4.31" 483source = "registry+https://github.com/rust-lang/crates.io-index" 484checksum = "ef8a506ec4b81c460798f572caead636d57d3d7e940f998160f52bd254bf2d23" 485dependencies = [ 486 "compression-core", 487 "flate2", 488 "memchr", 489] 490 491[[package]] 492name = "compression-core" 493version = "0.4.29" 494source = "registry+https://github.com/rust-lang/crates.io-index" 495checksum = "e47641d3deaf41fb1538ac1f54735925e275eaf3bf4d55c81b137fba797e5cbb" 496 497[[package]] 498name = "concurrent-queue" 499version = "2.5.0" 500source = "registry+https://github.com/rust-lang/crates.io-index" 501checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 502dependencies = [ 503 "crossbeam-utils", 504] 505 506[[package]] 507name = "const-str" 508version = "0.4.3" 509source = "registry+https://github.com/rust-lang/crates.io-index" 510checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" 511 512[[package]] 513name = "core-foundation" 514version = "0.9.4" 515source = "registry+https://github.com/rust-lang/crates.io-index" 516checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 517dependencies = [ 518 "core-foundation-sys", 519 "libc", 520] 521 522[[package]] 523name = "core-foundation-sys" 524version = "0.8.7" 525source = "registry+https://github.com/rust-lang/crates.io-index" 526checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 527 528[[package]] 529name = "core2" 530version = "0.4.0" 531source = "registry+https://github.com/rust-lang/crates.io-index" 532checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 533dependencies = [ 534 "memchr", 535] 536 537[[package]] 538name = "cpufeatures" 539version = "0.2.17" 540source = "registry+https://github.com/rust-lang/crates.io-index" 541checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 542dependencies = [ 543 "libc", 544] 545 546[[package]] 547name = "crc32fast" 548version = "1.5.0" 549source = "registry+https://github.com/rust-lang/crates.io-index" 550checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 551dependencies = [ 552 "cfg-if", 553] 554 555[[package]] 556name = "crossbeam-channel" 557version = "0.5.15" 558source = "registry+https://github.com/rust-lang/crates.io-index" 559checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 560dependencies = [ 561 "crossbeam-utils", 562] 563 564[[package]] 565name = "crossbeam-epoch" 566version = "0.9.18" 567source = "registry+https://github.com/rust-lang/crates.io-index" 568checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 569dependencies = [ 570 "crossbeam-utils", 571] 572 573[[package]] 574name = "crossbeam-utils" 575version = "0.8.21" 576source = "registry+https://github.com/rust-lang/crates.io-index" 577checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 578 579[[package]] 580name = "crunchy" 581version = "0.2.4" 582source = "registry+https://github.com/rust-lang/crates.io-index" 583checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 584 585[[package]] 586name = "crypto-common" 587version = "0.1.6" 588source = "registry+https://github.com/rust-lang/crates.io-index" 589checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 590dependencies = [ 591 "generic-array", 592 "typenum", 593] 594 595[[package]] 596name = "darling" 597version = "0.21.3" 598source = "registry+https://github.com/rust-lang/crates.io-index" 599checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" 600dependencies = [ 601 "darling_core", 602 "darling_macro", 603] 604 605[[package]] 606name = "darling_core" 607version = "0.21.3" 608source = "registry+https://github.com/rust-lang/crates.io-index" 609checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" 610dependencies = [ 611 "fnv", 612 "ident_case", 613 "proc-macro2", 614 "quote", 615 "strsim", 616 "syn 2.0.106", 617] 618 619[[package]] 620name = "darling_macro" 621version = "0.21.3" 622source = "registry+https://github.com/rust-lang/crates.io-index" 623checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" 624dependencies = [ 625 "darling_core", 626 "quote", 627 "syn 2.0.106", 628] 629 630[[package]] 631name = "dashmap" 632version = "6.1.0" 633source = "registry+https://github.com/rust-lang/crates.io-index" 634checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" 635dependencies = [ 636 "cfg-if", 637 "crossbeam-utils", 638 "hashbrown 0.14.5", 639 "lock_api", 640 "once_cell", 641 "parking_lot_core", 642] 643 644[[package]] 645name = "data-encoding" 646version = "2.9.0" 647source = "registry+https://github.com/rust-lang/crates.io-index" 648checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 649 650[[package]] 651name = "data-encoding-macro" 652version = "0.1.18" 653source = "registry+https://github.com/rust-lang/crates.io-index" 654checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d" 655dependencies = [ 656 "data-encoding", 657 "data-encoding-macro-internal", 658] 659 660[[package]] 661name = "data-encoding-macro-internal" 662version = "0.1.16" 663source = "registry+https://github.com/rust-lang/crates.io-index" 664checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" 665dependencies = [ 666 "data-encoding", 667 "syn 2.0.106", 668] 669 670[[package]] 671name = "deranged" 672version = "0.5.4" 673source = "registry+https://github.com/rust-lang/crates.io-index" 674checksum = "a41953f86f8a05768a6cda24def994fd2f424b04ec5c719cf89989779f199071" 675dependencies = [ 676 "powerfmt", 677 "serde_core", 678] 679 680[[package]] 681name = "digest" 682version = "0.10.7" 683source = "registry+https://github.com/rust-lang/crates.io-index" 684checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 685dependencies = [ 686 "block-buffer", 687 "crypto-common", 688] 689 690[[package]] 691name = "displaydoc" 692version = "0.2.5" 693source = "registry+https://github.com/rust-lang/crates.io-index" 694checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 695dependencies = [ 696 "proc-macro2", 697 "quote", 698 "syn 2.0.106", 699] 700 701[[package]] 702name = "dyn-clone" 703version = "1.0.20" 704source = "registry+https://github.com/rust-lang/crates.io-index" 705checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" 706 707[[package]] 708name = "either" 709version = "1.15.0" 710source = "registry+https://github.com/rust-lang/crates.io-index" 711checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 712 713[[package]] 714name = "encoding_rs" 715version = "0.8.35" 716source = "registry+https://github.com/rust-lang/crates.io-index" 717checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 718dependencies = [ 719 "cfg-if", 720] 721 722[[package]] 723name = "enum_dispatch" 724version = "0.3.13" 725source = "registry+https://github.com/rust-lang/crates.io-index" 726checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd" 727dependencies = [ 728 "once_cell", 729 "proc-macro2", 730 "quote", 731 "syn 2.0.106", 732] 733 734[[package]] 735name = "env_filter" 736version = "0.1.3" 737source = "registry+https://github.com/rust-lang/crates.io-index" 738checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" 739dependencies = [ 740 "log", 741 "regex", 742] 743 744[[package]] 745name = "env_logger" 746version = "0.11.8" 747source = "registry+https://github.com/rust-lang/crates.io-index" 748checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" 749dependencies = [ 750 "anstream", 751 "anstyle", 752 "env_filter", 753 "jiff", 754 "log", 755] 756 757[[package]] 758name = "equivalent" 759version = "1.0.2" 760source = "registry+https://github.com/rust-lang/crates.io-index" 761checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 762 763[[package]] 764name = "errno" 765version = "0.3.14" 766source = "registry+https://github.com/rust-lang/crates.io-index" 767checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 768dependencies = [ 769 "libc", 770 "windows-sys 0.61.1", 771] 772 773[[package]] 774name = "event-listener" 775version = "5.4.1" 776source = "registry+https://github.com/rust-lang/crates.io-index" 777checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 778dependencies = [ 779 "concurrent-queue", 780 "parking", 781 "pin-project-lite", 782] 783 784[[package]] 785name = "event-listener-strategy" 786version = "0.5.4" 787source = "registry+https://github.com/rust-lang/crates.io-index" 788checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 789dependencies = [ 790 "event-listener", 791 "pin-project-lite", 792] 793 794[[package]] 795name = "fastrand" 796version = "2.3.0" 797source = "registry+https://github.com/rust-lang/crates.io-index" 798checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 799 800[[package]] 801name = "find-msvc-tools" 802version = "0.1.3" 803source = "registry+https://github.com/rust-lang/crates.io-index" 804checksum = "0399f9d26e5191ce32c498bebd31e7a3ceabc2745f0ac54af3f335126c3f24b3" 805 806[[package]] 807name = "flate2" 808version = "1.1.2" 809source = "registry+https://github.com/rust-lang/crates.io-index" 810checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" 811dependencies = [ 812 "crc32fast", 813 "miniz_oxide", 814] 815 816[[package]] 817name = "fnv" 818version = "1.0.7" 819source = "registry+https://github.com/rust-lang/crates.io-index" 820checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 821 822[[package]] 823name = "foldhash" 824version = "0.1.5" 825source = "registry+https://github.com/rust-lang/crates.io-index" 826checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 827 828[[package]] 829name = "foreign-types" 830version = "0.3.2" 831source = "registry+https://github.com/rust-lang/crates.io-index" 832checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 833dependencies = [ 834 "foreign-types-shared", 835] 836 837[[package]] 838name = "foreign-types-shared" 839version = "0.1.1" 840source = "registry+https://github.com/rust-lang/crates.io-index" 841checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 842 843[[package]] 844name = "form_urlencoded" 845version = "1.2.2" 846source = "registry+https://github.com/rust-lang/crates.io-index" 847checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 848dependencies = [ 849 "percent-encoding", 850] 851 852[[package]] 853name = "futures-channel" 854version = "0.3.31" 855source = "registry+https://github.com/rust-lang/crates.io-index" 856checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 857dependencies = [ 858 "futures-core", 859] 860 861[[package]] 862name = "futures-core" 863version = "0.3.31" 864source = "registry+https://github.com/rust-lang/crates.io-index" 865checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 866 867[[package]] 868name = "futures-macro" 869version = "0.3.31" 870source = "registry+https://github.com/rust-lang/crates.io-index" 871checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 872dependencies = [ 873 "proc-macro2", 874 "quote", 875 "syn 2.0.106", 876] 877 878[[package]] 879name = "futures-sink" 880version = "0.3.31" 881source = "registry+https://github.com/rust-lang/crates.io-index" 882checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 883 884[[package]] 885name = "futures-task" 886version = "0.3.31" 887source = "registry+https://github.com/rust-lang/crates.io-index" 888checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 889 890[[package]] 891name = "futures-util" 892version = "0.3.31" 893source = "registry+https://github.com/rust-lang/crates.io-index" 894checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 895dependencies = [ 896 "futures-core", 897 "futures-macro", 898 "futures-sink", 899 "futures-task", 900 "pin-project-lite", 901 "pin-utils", 902 "slab", 903] 904 905[[package]] 906name = "generic-array" 907version = "0.14.7" 908source = "registry+https://github.com/rust-lang/crates.io-index" 909checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 910dependencies = [ 911 "typenum", 912 "version_check", 913] 914 915[[package]] 916name = "getrandom" 917version = "0.2.16" 918source = "registry+https://github.com/rust-lang/crates.io-index" 919checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 920dependencies = [ 921 "cfg-if", 922 "js-sys", 923 "libc", 924 "wasi 0.11.1+wasi-snapshot-preview1", 925 "wasm-bindgen", 926] 927 928[[package]] 929name = "getrandom" 930version = "0.3.3" 931source = "registry+https://github.com/rust-lang/crates.io-index" 932checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 933dependencies = [ 934 "cfg-if", 935 "js-sys", 936 "libc", 937 "r-efi", 938 "wasi 0.14.7+wasi-0.2.4", 939 "wasm-bindgen", 940] 941 942[[package]] 943name = "gimli" 944version = "0.32.3" 945source = "registry+https://github.com/rust-lang/crates.io-index" 946checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" 947 948[[package]] 949name = "h2" 950version = "0.4.12" 951source = "registry+https://github.com/rust-lang/crates.io-index" 952checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" 953dependencies = [ 954 "atomic-waker", 955 "bytes", 956 "fnv", 957 "futures-core", 958 "futures-sink", 959 "http", 960 "indexmap 2.11.4", 961 "slab", 962 "tokio", 963 "tokio-util", 964 "tracing", 965] 966 967[[package]] 968name = "hacktober_bot" 969version = "0.1.0" 970dependencies = [ 971 "clap", 972 "env_logger", 973 "jacquard", 974 "jetstream", 975 "reqwest", 976 "serde_json", 977 "tokio", 978 "url", 979] 980 981[[package]] 982name = "half" 983version = "2.6.0" 984source = "registry+https://github.com/rust-lang/crates.io-index" 985checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9" 986dependencies = [ 987 "cfg-if", 988 "crunchy", 989] 990 991[[package]] 992name = "hashbrown" 993version = "0.12.3" 994source = "registry+https://github.com/rust-lang/crates.io-index" 995checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 996 997[[package]] 998name = "hashbrown" 999version = "0.14.5" 1000source = "registry+https://github.com/rust-lang/crates.io-index" 1001checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1002 1003[[package]] 1004name = "hashbrown" 1005version = "0.15.5" 1006source = "registry+https://github.com/rust-lang/crates.io-index" 1007checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 1008dependencies = [ 1009 "allocator-api2", 1010 "equivalent", 1011 "foldhash", 1012] 1013 1014[[package]] 1015name = "hashbrown" 1016version = "0.16.0" 1017source = "registry+https://github.com/rust-lang/crates.io-index" 1018checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" 1019 1020[[package]] 1021name = "heck" 1022version = "0.4.1" 1023source = "registry+https://github.com/rust-lang/crates.io-index" 1024checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1025 1026[[package]] 1027name = "heck" 1028version = "0.5.0" 1029source = "registry+https://github.com/rust-lang/crates.io-index" 1030checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1031 1032[[package]] 1033name = "hex" 1034version = "0.4.3" 1035source = "registry+https://github.com/rust-lang/crates.io-index" 1036checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1037 1038[[package]] 1039name = "hex_fmt" 1040version = "0.3.0" 1041source = "registry+https://github.com/rust-lang/crates.io-index" 1042checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f" 1043 1044[[package]] 1045name = "http" 1046version = "1.3.1" 1047source = "registry+https://github.com/rust-lang/crates.io-index" 1048checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" 1049dependencies = [ 1050 "bytes", 1051 "fnv", 1052 "itoa", 1053] 1054 1055[[package]] 1056name = "http-body" 1057version = "1.0.1" 1058source = "registry+https://github.com/rust-lang/crates.io-index" 1059checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1060dependencies = [ 1061 "bytes", 1062 "http", 1063] 1064 1065[[package]] 1066name = "http-body-util" 1067version = "0.1.3" 1068source = "registry+https://github.com/rust-lang/crates.io-index" 1069checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 1070dependencies = [ 1071 "bytes", 1072 "futures-core", 1073 "http", 1074 "http-body", 1075 "pin-project-lite", 1076] 1077 1078[[package]] 1079name = "httparse" 1080version = "1.10.1" 1081source = "registry+https://github.com/rust-lang/crates.io-index" 1082checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1083 1084[[package]] 1085name = "hyper" 1086version = "1.7.0" 1087source = "registry+https://github.com/rust-lang/crates.io-index" 1088checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" 1089dependencies = [ 1090 "atomic-waker", 1091 "bytes", 1092 "futures-channel", 1093 "futures-core", 1094 "h2", 1095 "http", 1096 "http-body", 1097 "httparse", 1098 "itoa", 1099 "pin-project-lite", 1100 "pin-utils", 1101 "smallvec", 1102 "tokio", 1103 "want", 1104] 1105 1106[[package]] 1107name = "hyper-rustls" 1108version = "0.27.7" 1109source = "registry+https://github.com/rust-lang/crates.io-index" 1110checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 1111dependencies = [ 1112 "http", 1113 "hyper", 1114 "hyper-util", 1115 "rustls", 1116 "rustls-pki-types", 1117 "tokio", 1118 "tokio-rustls", 1119 "tower-service", 1120 "webpki-roots", 1121] 1122 1123[[package]] 1124name = "hyper-tls" 1125version = "0.6.0" 1126source = "registry+https://github.com/rust-lang/crates.io-index" 1127checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 1128dependencies = [ 1129 "bytes", 1130 "http-body-util", 1131 "hyper", 1132 "hyper-util", 1133 "native-tls", 1134 "tokio", 1135 "tokio-native-tls", 1136 "tower-service", 1137] 1138 1139[[package]] 1140name = "hyper-util" 1141version = "0.1.17" 1142source = "registry+https://github.com/rust-lang/crates.io-index" 1143checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" 1144dependencies = [ 1145 "base64", 1146 "bytes", 1147 "futures-channel", 1148 "futures-core", 1149 "futures-util", 1150 "http", 1151 "http-body", 1152 "hyper", 1153 "ipnet", 1154 "libc", 1155 "percent-encoding", 1156 "pin-project-lite", 1157 "socket2", 1158 "system-configuration", 1159 "tokio", 1160 "tower-service", 1161 "tracing", 1162 "windows-registry", 1163] 1164 1165[[package]] 1166name = "iana-time-zone" 1167version = "0.1.64" 1168source = "registry+https://github.com/rust-lang/crates.io-index" 1169checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" 1170dependencies = [ 1171 "android_system_properties", 1172 "core-foundation-sys", 1173 "iana-time-zone-haiku", 1174 "js-sys", 1175 "log", 1176 "wasm-bindgen", 1177 "windows-core", 1178] 1179 1180[[package]] 1181name = "iana-time-zone-haiku" 1182version = "0.1.2" 1183source = "registry+https://github.com/rust-lang/crates.io-index" 1184checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1185dependencies = [ 1186 "cc", 1187] 1188 1189[[package]] 1190name = "icu_collections" 1191version = "2.0.0" 1192source = "registry+https://github.com/rust-lang/crates.io-index" 1193checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" 1194dependencies = [ 1195 "displaydoc", 1196 "potential_utf", 1197 "yoke", 1198 "zerofrom", 1199 "zerovec", 1200] 1201 1202[[package]] 1203name = "icu_locale_core" 1204version = "2.0.0" 1205source = "registry+https://github.com/rust-lang/crates.io-index" 1206checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" 1207dependencies = [ 1208 "displaydoc", 1209 "litemap", 1210 "tinystr", 1211 "writeable", 1212 "zerovec", 1213] 1214 1215[[package]] 1216name = "icu_normalizer" 1217version = "2.0.0" 1218source = "registry+https://github.com/rust-lang/crates.io-index" 1219checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" 1220dependencies = [ 1221 "displaydoc", 1222 "icu_collections", 1223 "icu_normalizer_data", 1224 "icu_properties", 1225 "icu_provider", 1226 "smallvec", 1227 "zerovec", 1228] 1229 1230[[package]] 1231name = "icu_normalizer_data" 1232version = "2.0.0" 1233source = "registry+https://github.com/rust-lang/crates.io-index" 1234checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" 1235 1236[[package]] 1237name = "icu_properties" 1238version = "2.0.1" 1239source = "registry+https://github.com/rust-lang/crates.io-index" 1240checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" 1241dependencies = [ 1242 "displaydoc", 1243 "icu_collections", 1244 "icu_locale_core", 1245 "icu_properties_data", 1246 "icu_provider", 1247 "potential_utf", 1248 "zerotrie", 1249 "zerovec", 1250] 1251 1252[[package]] 1253name = "icu_properties_data" 1254version = "2.0.1" 1255source = "registry+https://github.com/rust-lang/crates.io-index" 1256checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" 1257 1258[[package]] 1259name = "icu_provider" 1260version = "2.0.0" 1261source = "registry+https://github.com/rust-lang/crates.io-index" 1262checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" 1263dependencies = [ 1264 "displaydoc", 1265 "icu_locale_core", 1266 "stable_deref_trait", 1267 "tinystr", 1268 "writeable", 1269 "yoke", 1270 "zerofrom", 1271 "zerotrie", 1272 "zerovec", 1273] 1274 1275[[package]] 1276name = "ident_case" 1277version = "1.0.1" 1278source = "registry+https://github.com/rust-lang/crates.io-index" 1279checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1280 1281[[package]] 1282name = "idna" 1283version = "1.1.0" 1284source = "registry+https://github.com/rust-lang/crates.io-index" 1285checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 1286dependencies = [ 1287 "idna_adapter", 1288 "smallvec", 1289 "utf8_iter", 1290] 1291 1292[[package]] 1293name = "idna_adapter" 1294version = "1.2.1" 1295source = "registry+https://github.com/rust-lang/crates.io-index" 1296checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 1297dependencies = [ 1298 "icu_normalizer", 1299 "icu_properties", 1300] 1301 1302[[package]] 1303name = "indexmap" 1304version = "1.9.3" 1305source = "registry+https://github.com/rust-lang/crates.io-index" 1306checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1307dependencies = [ 1308 "autocfg", 1309 "hashbrown 0.12.3", 1310 "serde", 1311] 1312 1313[[package]] 1314name = "indexmap" 1315version = "2.11.4" 1316source = "registry+https://github.com/rust-lang/crates.io-index" 1317checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" 1318dependencies = [ 1319 "equivalent", 1320 "hashbrown 0.16.0", 1321 "serde", 1322 "serde_core", 1323] 1324 1325[[package]] 1326name = "indoc" 1327version = "2.0.6" 1328source = "registry+https://github.com/rust-lang/crates.io-index" 1329checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd" 1330 1331[[package]] 1332name = "io-uring" 1333version = "0.7.10" 1334source = "registry+https://github.com/rust-lang/crates.io-index" 1335checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b" 1336dependencies = [ 1337 "bitflags", 1338 "cfg-if", 1339 "libc", 1340] 1341 1342[[package]] 1343name = "ipld-core" 1344version = "0.4.2" 1345source = "registry+https://github.com/rust-lang/crates.io-index" 1346checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db" 1347dependencies = [ 1348 "cid", 1349 "serde", 1350 "serde_bytes", 1351] 1352 1353[[package]] 1354name = "ipnet" 1355version = "2.11.0" 1356source = "registry+https://github.com/rust-lang/crates.io-index" 1357checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 1358 1359[[package]] 1360name = "iri-string" 1361version = "0.7.8" 1362source = "registry+https://github.com/rust-lang/crates.io-index" 1363checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" 1364dependencies = [ 1365 "memchr", 1366 "serde", 1367] 1368 1369[[package]] 1370name = "is_terminal_polyfill" 1371version = "1.70.1" 1372source = "registry+https://github.com/rust-lang/crates.io-index" 1373checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 1374 1375[[package]] 1376name = "itertools" 1377version = "0.14.0" 1378source = "registry+https://github.com/rust-lang/crates.io-index" 1379checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 1380dependencies = [ 1381 "either", 1382] 1383 1384[[package]] 1385name = "itoa" 1386version = "1.0.15" 1387source = "registry+https://github.com/rust-lang/crates.io-index" 1388checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 1389 1390[[package]] 1391name = "jacquard" 1392version = "0.1.0" 1393source = "registry+https://github.com/rust-lang/crates.io-index" 1394checksum = "0e2fb462e7bd414bfd66918bd82eb3ada7c4c7bcb4e47abb9d72ddd32264b49c" 1395dependencies = [ 1396 "bytes", 1397 "clap", 1398 "http", 1399 "jacquard-api", 1400 "jacquard-common", 1401 "miette", 1402 "reqwest", 1403 "serde", 1404 "serde_html_form", 1405 "serde_ipld_dagcbor", 1406 "serde_json", 1407 "thiserror 2.0.17", 1408 "tokio", 1409] 1410 1411[[package]] 1412name = "jacquard-api" 1413version = "0.1.0" 1414source = "registry+https://github.com/rust-lang/crates.io-index" 1415checksum = "9175e40f71219451961f1da8f10c183617fb611e2e474219ce31bc669830c1f1" 1416dependencies = [ 1417 "bon", 1418 "bytes", 1419 "jacquard-common", 1420 "jacquard-derive", 1421 "miette", 1422 "serde", 1423 "thiserror 2.0.17", 1424] 1425 1426[[package]] 1427name = "jacquard-common" 1428version = "0.1.0" 1429source = "registry+https://github.com/rust-lang/crates.io-index" 1430checksum = "3b4a7bef3e4fbb0d7c22ad6709544a594a000e78cd514612b584cc001945056d" 1431dependencies = [ 1432 "base64", 1433 "bytes", 1434 "chrono", 1435 "cid", 1436 "enum_dispatch", 1437 "ipld-core", 1438 "langtag 0.4.0", 1439 "miette", 1440 "multibase", 1441 "multihash", 1442 "num-traits", 1443 "ouroboros", 1444 "rand", 1445 "regex", 1446 "serde", 1447 "serde_html_form", 1448 "serde_json", 1449 "serde_with", 1450 "smol_str", 1451 "thiserror 2.0.17", 1452 "url", 1453] 1454 1455[[package]] 1456name = "jacquard-derive" 1457version = "0.1.0" 1458source = "registry+https://github.com/rust-lang/crates.io-index" 1459checksum = "b068f4196f31793f90d682c97b8570bc0bac810d8fb681f6d561937d9bf1510e" 1460dependencies = [ 1461 "heck 0.5.0", 1462 "itertools", 1463 "prettyplease", 1464 "proc-macro2", 1465 "quote", 1466 "serde", 1467 "serde_json", 1468 "serde_repr", 1469 "serde_with", 1470 "syn 2.0.106", 1471] 1472 1473[[package]] 1474name = "jetstream" 1475version = "0.1.1" 1476dependencies = [ 1477 "async-trait", 1478 "atrium-api", 1479 "chrono", 1480 "futures-util", 1481 "log", 1482 "serde", 1483 "serde_json", 1484 "thiserror 2.0.17", 1485 "tokio", 1486 "tokio-tungstenite", 1487 "url", 1488 "zstd", 1489] 1490 1491[[package]] 1492name = "jiff" 1493version = "0.2.15" 1494source = "registry+https://github.com/rust-lang/crates.io-index" 1495checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49" 1496dependencies = [ 1497 "jiff-static", 1498 "log", 1499 "portable-atomic", 1500 "portable-atomic-util", 1501 "serde", 1502] 1503 1504[[package]] 1505name = "jiff-static" 1506version = "0.2.15" 1507source = "registry+https://github.com/rust-lang/crates.io-index" 1508checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4" 1509dependencies = [ 1510 "proc-macro2", 1511 "quote", 1512 "syn 2.0.106", 1513] 1514 1515[[package]] 1516name = "jobserver" 1517version = "0.1.34" 1518source = "registry+https://github.com/rust-lang/crates.io-index" 1519checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" 1520dependencies = [ 1521 "getrandom 0.3.3", 1522 "libc", 1523] 1524 1525[[package]] 1526name = "js-sys" 1527version = "0.3.81" 1528source = "registry+https://github.com/rust-lang/crates.io-index" 1529checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305" 1530dependencies = [ 1531 "once_cell", 1532 "wasm-bindgen", 1533] 1534 1535[[package]] 1536name = "langtag" 1537version = "0.3.4" 1538source = "registry+https://github.com/rust-lang/crates.io-index" 1539checksum = "ed60c85f254d6ae8450cec15eedd921efbc4d1bdf6fcf6202b9a58b403f6f805" 1540dependencies = [ 1541 "serde", 1542] 1543 1544[[package]] 1545name = "langtag" 1546version = "0.4.0" 1547source = "registry+https://github.com/rust-lang/crates.io-index" 1548checksum = "9ecb4c689a30e48ebeaa14237f34037e300dd072e6ad21a9ec72e810ff3c6600" 1549dependencies = [ 1550 "serde", 1551 "static-regular-grammar", 1552 "thiserror 1.0.69", 1553] 1554 1555[[package]] 1556name = "libc" 1557version = "0.2.176" 1558source = "registry+https://github.com/rust-lang/crates.io-index" 1559checksum = "58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174" 1560 1561[[package]] 1562name = "linux-raw-sys" 1563version = "0.11.0" 1564source = "registry+https://github.com/rust-lang/crates.io-index" 1565checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 1566 1567[[package]] 1568name = "litemap" 1569version = "0.8.0" 1570source = "registry+https://github.com/rust-lang/crates.io-index" 1571checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" 1572 1573[[package]] 1574name = "lock_api" 1575version = "0.4.14" 1576source = "registry+https://github.com/rust-lang/crates.io-index" 1577checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 1578dependencies = [ 1579 "scopeguard", 1580] 1581 1582[[package]] 1583name = "log" 1584version = "0.4.28" 1585source = "registry+https://github.com/rust-lang/crates.io-index" 1586checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" 1587 1588[[package]] 1589name = "lru" 1590version = "0.12.5" 1591source = "registry+https://github.com/rust-lang/crates.io-index" 1592checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" 1593dependencies = [ 1594 "hashbrown 0.15.5", 1595] 1596 1597[[package]] 1598name = "lru-slab" 1599version = "0.1.2" 1600source = "registry+https://github.com/rust-lang/crates.io-index" 1601checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 1602 1603[[package]] 1604name = "match-lookup" 1605version = "0.1.1" 1606source = "registry+https://github.com/rust-lang/crates.io-index" 1607checksum = "1265724d8cb29dbbc2b0f06fffb8bf1a8c0cf73a78eede9ba73a4a66c52a981e" 1608dependencies = [ 1609 "proc-macro2", 1610 "quote", 1611 "syn 1.0.109", 1612] 1613 1614[[package]] 1615name = "memchr" 1616version = "2.7.6" 1617source = "registry+https://github.com/rust-lang/crates.io-index" 1618checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 1619 1620[[package]] 1621name = "miette" 1622version = "7.6.0" 1623source = "registry+https://github.com/rust-lang/crates.io-index" 1624checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7" 1625dependencies = [ 1626 "cfg-if", 1627 "miette-derive", 1628 "unicode-width", 1629] 1630 1631[[package]] 1632name = "miette-derive" 1633version = "7.6.0" 1634source = "registry+https://github.com/rust-lang/crates.io-index" 1635checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b" 1636dependencies = [ 1637 "proc-macro2", 1638 "quote", 1639 "syn 2.0.106", 1640] 1641 1642[[package]] 1643name = "mime" 1644version = "0.3.17" 1645source = "registry+https://github.com/rust-lang/crates.io-index" 1646checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1647 1648[[package]] 1649name = "minimal-lexical" 1650version = "0.2.1" 1651source = "registry+https://github.com/rust-lang/crates.io-index" 1652checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1653 1654[[package]] 1655name = "miniz_oxide" 1656version = "0.8.9" 1657source = "registry+https://github.com/rust-lang/crates.io-index" 1658checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 1659dependencies = [ 1660 "adler2", 1661] 1662 1663[[package]] 1664name = "mio" 1665version = "1.0.4" 1666source = "registry+https://github.com/rust-lang/crates.io-index" 1667checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" 1668dependencies = [ 1669 "libc", 1670 "wasi 0.11.1+wasi-snapshot-preview1", 1671 "windows-sys 0.59.0", 1672] 1673 1674[[package]] 1675name = "moka" 1676version = "0.12.11" 1677source = "registry+https://github.com/rust-lang/crates.io-index" 1678checksum = "8261cd88c312e0004c1d51baad2980c66528dfdb2bee62003e643a4d8f86b077" 1679dependencies = [ 1680 "async-lock", 1681 "crossbeam-channel", 1682 "crossbeam-epoch", 1683 "crossbeam-utils", 1684 "equivalent", 1685 "event-listener", 1686 "futures-util", 1687 "parking_lot", 1688 "portable-atomic", 1689 "rustc_version", 1690 "smallvec", 1691 "tagptr", 1692 "uuid", 1693] 1694 1695[[package]] 1696name = "multibase" 1697version = "0.9.2" 1698source = "registry+https://github.com/rust-lang/crates.io-index" 1699checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77" 1700dependencies = [ 1701 "base-x", 1702 "base256emoji", 1703 "data-encoding", 1704 "data-encoding-macro", 1705] 1706 1707[[package]] 1708name = "multihash" 1709version = "0.19.3" 1710source = "registry+https://github.com/rust-lang/crates.io-index" 1711checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" 1712dependencies = [ 1713 "core2", 1714 "serde", 1715 "unsigned-varint", 1716] 1717 1718[[package]] 1719name = "native-tls" 1720version = "0.2.14" 1721source = "registry+https://github.com/rust-lang/crates.io-index" 1722checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" 1723dependencies = [ 1724 "libc", 1725 "log", 1726 "openssl", 1727 "openssl-probe", 1728 "openssl-sys", 1729 "schannel", 1730 "security-framework", 1731 "security-framework-sys", 1732 "tempfile", 1733] 1734 1735[[package]] 1736name = "nom" 1737version = "7.1.3" 1738source = "registry+https://github.com/rust-lang/crates.io-index" 1739checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1740dependencies = [ 1741 "memchr", 1742 "minimal-lexical", 1743] 1744 1745[[package]] 1746name = "num-conv" 1747version = "0.1.0" 1748source = "registry+https://github.com/rust-lang/crates.io-index" 1749checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1750 1751[[package]] 1752name = "num-traits" 1753version = "0.2.19" 1754source = "registry+https://github.com/rust-lang/crates.io-index" 1755checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1756dependencies = [ 1757 "autocfg", 1758] 1759 1760[[package]] 1761name = "object" 1762version = "0.37.3" 1763source = "registry+https://github.com/rust-lang/crates.io-index" 1764checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" 1765dependencies = [ 1766 "memchr", 1767] 1768 1769[[package]] 1770name = "once_cell" 1771version = "1.21.3" 1772source = "registry+https://github.com/rust-lang/crates.io-index" 1773checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 1774 1775[[package]] 1776name = "once_cell_polyfill" 1777version = "1.70.1" 1778source = "registry+https://github.com/rust-lang/crates.io-index" 1779checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" 1780 1781[[package]] 1782name = "openssl" 1783version = "0.10.73" 1784source = "registry+https://github.com/rust-lang/crates.io-index" 1785checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8" 1786dependencies = [ 1787 "bitflags", 1788 "cfg-if", 1789 "foreign-types", 1790 "libc", 1791 "once_cell", 1792 "openssl-macros", 1793 "openssl-sys", 1794] 1795 1796[[package]] 1797name = "openssl-macros" 1798version = "0.1.1" 1799source = "registry+https://github.com/rust-lang/crates.io-index" 1800checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 1801dependencies = [ 1802 "proc-macro2", 1803 "quote", 1804 "syn 2.0.106", 1805] 1806 1807[[package]] 1808name = "openssl-probe" 1809version = "0.1.6" 1810source = "registry+https://github.com/rust-lang/crates.io-index" 1811checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" 1812 1813[[package]] 1814name = "openssl-src" 1815version = "300.5.3+3.5.4" 1816source = "registry+https://github.com/rust-lang/crates.io-index" 1817checksum = "dc6bad8cd0233b63971e232cc9c5e83039375b8586d2312f31fda85db8f888c2" 1818dependencies = [ 1819 "cc", 1820] 1821 1822[[package]] 1823name = "openssl-sys" 1824version = "0.9.109" 1825source = "registry+https://github.com/rust-lang/crates.io-index" 1826checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571" 1827dependencies = [ 1828 "cc", 1829 "libc", 1830 "openssl-src", 1831 "pkg-config", 1832 "vcpkg", 1833] 1834 1835[[package]] 1836name = "ouroboros" 1837version = "0.18.5" 1838source = "registry+https://github.com/rust-lang/crates.io-index" 1839checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59" 1840dependencies = [ 1841 "aliasable", 1842 "ouroboros_macro", 1843 "static_assertions", 1844] 1845 1846[[package]] 1847name = "ouroboros_macro" 1848version = "0.18.5" 1849source = "registry+https://github.com/rust-lang/crates.io-index" 1850checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0" 1851dependencies = [ 1852 "heck 0.4.1", 1853 "proc-macro2", 1854 "proc-macro2-diagnostics", 1855 "quote", 1856 "syn 2.0.106", 1857] 1858 1859[[package]] 1860name = "parking" 1861version = "2.2.1" 1862source = "registry+https://github.com/rust-lang/crates.io-index" 1863checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 1864 1865[[package]] 1866name = "parking_lot" 1867version = "0.12.5" 1868source = "registry+https://github.com/rust-lang/crates.io-index" 1869checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 1870dependencies = [ 1871 "lock_api", 1872 "parking_lot_core", 1873] 1874 1875[[package]] 1876name = "parking_lot_core" 1877version = "0.9.12" 1878source = "registry+https://github.com/rust-lang/crates.io-index" 1879checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 1880dependencies = [ 1881 "cfg-if", 1882 "libc", 1883 "redox_syscall", 1884 "smallvec", 1885 "windows-link 0.2.0", 1886] 1887 1888[[package]] 1889name = "percent-encoding" 1890version = "2.3.2" 1891source = "registry+https://github.com/rust-lang/crates.io-index" 1892checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 1893 1894[[package]] 1895name = "pin-project-lite" 1896version = "0.2.16" 1897source = "registry+https://github.com/rust-lang/crates.io-index" 1898checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 1899 1900[[package]] 1901name = "pin-utils" 1902version = "0.1.0" 1903source = "registry+https://github.com/rust-lang/crates.io-index" 1904checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1905 1906[[package]] 1907name = "pkg-config" 1908version = "0.3.32" 1909source = "registry+https://github.com/rust-lang/crates.io-index" 1910checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 1911 1912[[package]] 1913name = "portable-atomic" 1914version = "1.11.1" 1915source = "registry+https://github.com/rust-lang/crates.io-index" 1916checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" 1917 1918[[package]] 1919name = "portable-atomic-util" 1920version = "0.2.4" 1921source = "registry+https://github.com/rust-lang/crates.io-index" 1922checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" 1923dependencies = [ 1924 "portable-atomic", 1925] 1926 1927[[package]] 1928name = "potential_utf" 1929version = "0.1.3" 1930source = "registry+https://github.com/rust-lang/crates.io-index" 1931checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a" 1932dependencies = [ 1933 "zerovec", 1934] 1935 1936[[package]] 1937name = "powerfmt" 1938version = "0.2.0" 1939source = "registry+https://github.com/rust-lang/crates.io-index" 1940checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1941 1942[[package]] 1943name = "ppv-lite86" 1944version = "0.2.21" 1945source = "registry+https://github.com/rust-lang/crates.io-index" 1946checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 1947dependencies = [ 1948 "zerocopy", 1949] 1950 1951[[package]] 1952name = "prettyplease" 1953version = "0.2.37" 1954source = "registry+https://github.com/rust-lang/crates.io-index" 1955checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" 1956dependencies = [ 1957 "proc-macro2", 1958 "syn 2.0.106", 1959] 1960 1961[[package]] 1962name = "proc-macro-error" 1963version = "1.0.4" 1964source = "registry+https://github.com/rust-lang/crates.io-index" 1965checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1966dependencies = [ 1967 "proc-macro-error-attr", 1968 "proc-macro2", 1969 "quote", 1970 "syn 1.0.109", 1971 "version_check", 1972] 1973 1974[[package]] 1975name = "proc-macro-error-attr" 1976version = "1.0.4" 1977source = "registry+https://github.com/rust-lang/crates.io-index" 1978checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1979dependencies = [ 1980 "proc-macro2", 1981 "quote", 1982 "version_check", 1983] 1984 1985[[package]] 1986name = "proc-macro2" 1987version = "1.0.101" 1988source = "registry+https://github.com/rust-lang/crates.io-index" 1989checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" 1990dependencies = [ 1991 "unicode-ident", 1992] 1993 1994[[package]] 1995name = "proc-macro2-diagnostics" 1996version = "0.10.1" 1997source = "registry+https://github.com/rust-lang/crates.io-index" 1998checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" 1999dependencies = [ 2000 "proc-macro2", 2001 "quote", 2002 "syn 2.0.106", 2003 "version_check", 2004 "yansi", 2005] 2006 2007[[package]] 2008name = "quinn" 2009version = "0.11.9" 2010source = "registry+https://github.com/rust-lang/crates.io-index" 2011checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 2012dependencies = [ 2013 "bytes", 2014 "cfg_aliases", 2015 "pin-project-lite", 2016 "quinn-proto", 2017 "quinn-udp", 2018 "rustc-hash", 2019 "rustls", 2020 "socket2", 2021 "thiserror 2.0.17", 2022 "tokio", 2023 "tracing", 2024 "web-time", 2025] 2026 2027[[package]] 2028name = "quinn-proto" 2029version = "0.11.13" 2030source = "registry+https://github.com/rust-lang/crates.io-index" 2031checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" 2032dependencies = [ 2033 "bytes", 2034 "getrandom 0.3.3", 2035 "lru-slab", 2036 "rand", 2037 "ring", 2038 "rustc-hash", 2039 "rustls", 2040 "rustls-pki-types", 2041 "slab", 2042 "thiserror 2.0.17", 2043 "tinyvec", 2044 "tracing", 2045 "web-time", 2046] 2047 2048[[package]] 2049name = "quinn-udp" 2050version = "0.5.14" 2051source = "registry+https://github.com/rust-lang/crates.io-index" 2052checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 2053dependencies = [ 2054 "cfg_aliases", 2055 "libc", 2056 "once_cell", 2057 "socket2", 2058 "tracing", 2059 "windows-sys 0.60.2", 2060] 2061 2062[[package]] 2063name = "quote" 2064version = "1.0.41" 2065source = "registry+https://github.com/rust-lang/crates.io-index" 2066checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1" 2067dependencies = [ 2068 "proc-macro2", 2069] 2070 2071[[package]] 2072name = "r-efi" 2073version = "5.3.0" 2074source = "registry+https://github.com/rust-lang/crates.io-index" 2075checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 2076 2077[[package]] 2078name = "rand" 2079version = "0.9.2" 2080source = "registry+https://github.com/rust-lang/crates.io-index" 2081checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 2082dependencies = [ 2083 "rand_chacha", 2084 "rand_core", 2085] 2086 2087[[package]] 2088name = "rand_chacha" 2089version = "0.9.0" 2090source = "registry+https://github.com/rust-lang/crates.io-index" 2091checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 2092dependencies = [ 2093 "ppv-lite86", 2094 "rand_core", 2095] 2096 2097[[package]] 2098name = "rand_core" 2099version = "0.9.3" 2100source = "registry+https://github.com/rust-lang/crates.io-index" 2101checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 2102dependencies = [ 2103 "getrandom 0.3.3", 2104] 2105 2106[[package]] 2107name = "range-traits" 2108version = "0.3.2" 2109source = "registry+https://github.com/rust-lang/crates.io-index" 2110checksum = "d20581732dd76fa913c7dff1a2412b714afe3573e94d41c34719de73337cc8ab" 2111 2112[[package]] 2113name = "redox_syscall" 2114version = "0.5.18" 2115source = "registry+https://github.com/rust-lang/crates.io-index" 2116checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 2117dependencies = [ 2118 "bitflags", 2119] 2120 2121[[package]] 2122name = "ref-cast" 2123version = "1.0.25" 2124source = "registry+https://github.com/rust-lang/crates.io-index" 2125checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" 2126dependencies = [ 2127 "ref-cast-impl", 2128] 2129 2130[[package]] 2131name = "ref-cast-impl" 2132version = "1.0.25" 2133source = "registry+https://github.com/rust-lang/crates.io-index" 2134checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" 2135dependencies = [ 2136 "proc-macro2", 2137 "quote", 2138 "syn 2.0.106", 2139] 2140 2141[[package]] 2142name = "regex" 2143version = "1.11.3" 2144source = "registry+https://github.com/rust-lang/crates.io-index" 2145checksum = "8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c" 2146dependencies = [ 2147 "aho-corasick", 2148 "memchr", 2149 "regex-automata", 2150 "regex-syntax", 2151] 2152 2153[[package]] 2154name = "regex-automata" 2155version = "0.4.11" 2156source = "registry+https://github.com/rust-lang/crates.io-index" 2157checksum = "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad" 2158dependencies = [ 2159 "aho-corasick", 2160 "memchr", 2161 "regex-syntax", 2162] 2163 2164[[package]] 2165name = "regex-syntax" 2166version = "0.8.6" 2167source = "registry+https://github.com/rust-lang/crates.io-index" 2168checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" 2169 2170[[package]] 2171name = "reqwest" 2172version = "0.12.23" 2173source = "registry+https://github.com/rust-lang/crates.io-index" 2174checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb" 2175dependencies = [ 2176 "async-compression", 2177 "base64", 2178 "bytes", 2179 "encoding_rs", 2180 "futures-core", 2181 "futures-util", 2182 "h2", 2183 "http", 2184 "http-body", 2185 "http-body-util", 2186 "hyper", 2187 "hyper-rustls", 2188 "hyper-tls", 2189 "hyper-util", 2190 "js-sys", 2191 "log", 2192 "mime", 2193 "native-tls", 2194 "percent-encoding", 2195 "pin-project-lite", 2196 "quinn", 2197 "rustls", 2198 "rustls-pki-types", 2199 "serde", 2200 "serde_json", 2201 "serde_urlencoded", 2202 "sync_wrapper", 2203 "tokio", 2204 "tokio-native-tls", 2205 "tokio-rustls", 2206 "tokio-util", 2207 "tower", 2208 "tower-http", 2209 "tower-service", 2210 "url", 2211 "wasm-bindgen", 2212 "wasm-bindgen-futures", 2213 "web-sys", 2214 "webpki-roots", 2215] 2216 2217[[package]] 2218name = "ring" 2219version = "0.17.14" 2220source = "registry+https://github.com/rust-lang/crates.io-index" 2221checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 2222dependencies = [ 2223 "cc", 2224 "cfg-if", 2225 "getrandom 0.2.16", 2226 "libc", 2227 "untrusted", 2228 "windows-sys 0.52.0", 2229] 2230 2231[[package]] 2232name = "rustc-demangle" 2233version = "0.1.26" 2234source = "registry+https://github.com/rust-lang/crates.io-index" 2235checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" 2236 2237[[package]] 2238name = "rustc-hash" 2239version = "2.1.1" 2240source = "registry+https://github.com/rust-lang/crates.io-index" 2241checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 2242 2243[[package]] 2244name = "rustc_version" 2245version = "0.4.1" 2246source = "registry+https://github.com/rust-lang/crates.io-index" 2247checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 2248dependencies = [ 2249 "semver", 2250] 2251 2252[[package]] 2253name = "rustix" 2254version = "1.1.2" 2255source = "registry+https://github.com/rust-lang/crates.io-index" 2256checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" 2257dependencies = [ 2258 "bitflags", 2259 "errno", 2260 "libc", 2261 "linux-raw-sys", 2262 "windows-sys 0.61.1", 2263] 2264 2265[[package]] 2266name = "rustls" 2267version = "0.23.32" 2268source = "registry+https://github.com/rust-lang/crates.io-index" 2269checksum = "cd3c25631629d034ce7cd9940adc9d45762d46de2b0f57193c4443b92c6d4d40" 2270dependencies = [ 2271 "once_cell", 2272 "ring", 2273 "rustls-pki-types", 2274 "rustls-webpki", 2275 "subtle", 2276 "zeroize", 2277] 2278 2279[[package]] 2280name = "rustls-pki-types" 2281version = "1.12.0" 2282source = "registry+https://github.com/rust-lang/crates.io-index" 2283checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" 2284dependencies = [ 2285 "web-time", 2286 "zeroize", 2287] 2288 2289[[package]] 2290name = "rustls-webpki" 2291version = "0.103.7" 2292source = "registry+https://github.com/rust-lang/crates.io-index" 2293checksum = "e10b3f4191e8a80e6b43eebabfac91e5dcecebb27a71f04e820c47ec41d314bf" 2294dependencies = [ 2295 "ring", 2296 "rustls-pki-types", 2297 "untrusted", 2298] 2299 2300[[package]] 2301name = "rustversion" 2302version = "1.0.22" 2303source = "registry+https://github.com/rust-lang/crates.io-index" 2304checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 2305 2306[[package]] 2307name = "ryu" 2308version = "1.0.20" 2309source = "registry+https://github.com/rust-lang/crates.io-index" 2310checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 2311 2312[[package]] 2313name = "schannel" 2314version = "0.1.28" 2315source = "registry+https://github.com/rust-lang/crates.io-index" 2316checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" 2317dependencies = [ 2318 "windows-sys 0.61.1", 2319] 2320 2321[[package]] 2322name = "schemars" 2323version = "0.9.0" 2324source = "registry+https://github.com/rust-lang/crates.io-index" 2325checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" 2326dependencies = [ 2327 "dyn-clone", 2328 "ref-cast", 2329 "serde", 2330 "serde_json", 2331] 2332 2333[[package]] 2334name = "schemars" 2335version = "1.0.4" 2336source = "registry+https://github.com/rust-lang/crates.io-index" 2337checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0" 2338dependencies = [ 2339 "dyn-clone", 2340 "ref-cast", 2341 "serde", 2342 "serde_json", 2343] 2344 2345[[package]] 2346name = "scopeguard" 2347version = "1.2.0" 2348source = "registry+https://github.com/rust-lang/crates.io-index" 2349checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2350 2351[[package]] 2352name = "security-framework" 2353version = "2.11.1" 2354source = "registry+https://github.com/rust-lang/crates.io-index" 2355checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 2356dependencies = [ 2357 "bitflags", 2358 "core-foundation", 2359 "core-foundation-sys", 2360 "libc", 2361 "security-framework-sys", 2362] 2363 2364[[package]] 2365name = "security-framework-sys" 2366version = "2.15.0" 2367source = "registry+https://github.com/rust-lang/crates.io-index" 2368checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" 2369dependencies = [ 2370 "core-foundation-sys", 2371 "libc", 2372] 2373 2374[[package]] 2375name = "semver" 2376version = "1.0.27" 2377source = "registry+https://github.com/rust-lang/crates.io-index" 2378checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" 2379 2380[[package]] 2381name = "serde" 2382version = "1.0.228" 2383source = "registry+https://github.com/rust-lang/crates.io-index" 2384checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 2385dependencies = [ 2386 "serde_core", 2387 "serde_derive", 2388] 2389 2390[[package]] 2391name = "serde_bytes" 2392version = "0.11.19" 2393source = "registry+https://github.com/rust-lang/crates.io-index" 2394checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" 2395dependencies = [ 2396 "serde", 2397 "serde_core", 2398] 2399 2400[[package]] 2401name = "serde_core" 2402version = "1.0.228" 2403source = "registry+https://github.com/rust-lang/crates.io-index" 2404checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 2405dependencies = [ 2406 "serde_derive", 2407] 2408 2409[[package]] 2410name = "serde_derive" 2411version = "1.0.228" 2412source = "registry+https://github.com/rust-lang/crates.io-index" 2413checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 2414dependencies = [ 2415 "proc-macro2", 2416 "quote", 2417 "syn 2.0.106", 2418] 2419 2420[[package]] 2421name = "serde_html_form" 2422version = "0.2.8" 2423source = "registry+https://github.com/rust-lang/crates.io-index" 2424checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f" 2425dependencies = [ 2426 "form_urlencoded", 2427 "indexmap 2.11.4", 2428 "itoa", 2429 "ryu", 2430 "serde_core", 2431] 2432 2433[[package]] 2434name = "serde_ipld_dagcbor" 2435version = "0.6.4" 2436source = "registry+https://github.com/rust-lang/crates.io-index" 2437checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778" 2438dependencies = [ 2439 "cbor4ii", 2440 "ipld-core", 2441 "scopeguard", 2442 "serde", 2443] 2444 2445[[package]] 2446name = "serde_json" 2447version = "1.0.145" 2448source = "registry+https://github.com/rust-lang/crates.io-index" 2449checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" 2450dependencies = [ 2451 "itoa", 2452 "memchr", 2453 "ryu", 2454 "serde", 2455 "serde_core", 2456] 2457 2458[[package]] 2459name = "serde_repr" 2460version = "0.1.20" 2461source = "registry+https://github.com/rust-lang/crates.io-index" 2462checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 2463dependencies = [ 2464 "proc-macro2", 2465 "quote", 2466 "syn 2.0.106", 2467] 2468 2469[[package]] 2470name = "serde_urlencoded" 2471version = "0.7.1" 2472source = "registry+https://github.com/rust-lang/crates.io-index" 2473checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2474dependencies = [ 2475 "form_urlencoded", 2476 "itoa", 2477 "ryu", 2478 "serde", 2479] 2480 2481[[package]] 2482name = "serde_with" 2483version = "3.15.0" 2484source = "registry+https://github.com/rust-lang/crates.io-index" 2485checksum = "6093cd8c01b25262b84927e0f7151692158fab02d961e04c979d3903eba7ecc5" 2486dependencies = [ 2487 "base64", 2488 "chrono", 2489 "hex", 2490 "indexmap 1.9.3", 2491 "indexmap 2.11.4", 2492 "schemars 0.9.0", 2493 "schemars 1.0.4", 2494 "serde_core", 2495 "serde_json", 2496 "serde_with_macros", 2497 "time", 2498] 2499 2500[[package]] 2501name = "serde_with_macros" 2502version = "3.15.0" 2503source = "registry+https://github.com/rust-lang/crates.io-index" 2504checksum = "a7e6c180db0816026a61afa1cff5344fb7ebded7e4d3062772179f2501481c27" 2505dependencies = [ 2506 "darling", 2507 "proc-macro2", 2508 "quote", 2509 "syn 2.0.106", 2510] 2511 2512[[package]] 2513name = "sha1" 2514version = "0.10.6" 2515source = "registry+https://github.com/rust-lang/crates.io-index" 2516checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 2517dependencies = [ 2518 "cfg-if", 2519 "cpufeatures", 2520 "digest", 2521] 2522 2523[[package]] 2524name = "sha2" 2525version = "0.10.9" 2526source = "registry+https://github.com/rust-lang/crates.io-index" 2527checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 2528dependencies = [ 2529 "cfg-if", 2530 "cpufeatures", 2531 "digest", 2532] 2533 2534[[package]] 2535name = "shlex" 2536version = "1.3.0" 2537source = "registry+https://github.com/rust-lang/crates.io-index" 2538checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2539 2540[[package]] 2541name = "signal-hook-registry" 2542version = "1.4.6" 2543source = "registry+https://github.com/rust-lang/crates.io-index" 2544checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" 2545dependencies = [ 2546 "libc", 2547] 2548 2549[[package]] 2550name = "slab" 2551version = "0.4.11" 2552source = "registry+https://github.com/rust-lang/crates.io-index" 2553checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 2554 2555[[package]] 2556name = "smallvec" 2557version = "1.15.1" 2558source = "registry+https://github.com/rust-lang/crates.io-index" 2559checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 2560 2561[[package]] 2562name = "smol_str" 2563version = "0.3.2" 2564source = "registry+https://github.com/rust-lang/crates.io-index" 2565checksum = "9676b89cd56310a87b93dec47b11af744f34d5fc9f367b829474eec0a891350d" 2566dependencies = [ 2567 "borsh", 2568 "serde", 2569] 2570 2571[[package]] 2572name = "socket2" 2573version = "0.6.0" 2574source = "registry+https://github.com/rust-lang/crates.io-index" 2575checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" 2576dependencies = [ 2577 "libc", 2578 "windows-sys 0.59.0", 2579] 2580 2581[[package]] 2582name = "stable_deref_trait" 2583version = "1.2.0" 2584source = "registry+https://github.com/rust-lang/crates.io-index" 2585checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2586 2587[[package]] 2588name = "static-regular-grammar" 2589version = "2.0.2" 2590source = "registry+https://github.com/rust-lang/crates.io-index" 2591checksum = "4f4a6c40247579acfbb138c3cd7de3dab113ab4ac6227f1b7de7d626ee667957" 2592dependencies = [ 2593 "abnf", 2594 "btree-range-map", 2595 "ciborium", 2596 "hex_fmt", 2597 "indoc", 2598 "proc-macro-error", 2599 "proc-macro2", 2600 "quote", 2601 "serde", 2602 "sha2", 2603 "syn 2.0.106", 2604 "thiserror 1.0.69", 2605] 2606 2607[[package]] 2608name = "static_assertions" 2609version = "1.1.0" 2610source = "registry+https://github.com/rust-lang/crates.io-index" 2611checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 2612 2613[[package]] 2614name = "strsim" 2615version = "0.11.1" 2616source = "registry+https://github.com/rust-lang/crates.io-index" 2617checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 2618 2619[[package]] 2620name = "subtle" 2621version = "2.6.1" 2622source = "registry+https://github.com/rust-lang/crates.io-index" 2623checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 2624 2625[[package]] 2626name = "syn" 2627version = "1.0.109" 2628source = "registry+https://github.com/rust-lang/crates.io-index" 2629checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2630dependencies = [ 2631 "proc-macro2", 2632 "quote", 2633 "unicode-ident", 2634] 2635 2636[[package]] 2637name = "syn" 2638version = "2.0.106" 2639source = "registry+https://github.com/rust-lang/crates.io-index" 2640checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" 2641dependencies = [ 2642 "proc-macro2", 2643 "quote", 2644 "unicode-ident", 2645] 2646 2647[[package]] 2648name = "sync_wrapper" 2649version = "1.0.2" 2650source = "registry+https://github.com/rust-lang/crates.io-index" 2651checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 2652dependencies = [ 2653 "futures-core", 2654] 2655 2656[[package]] 2657name = "synstructure" 2658version = "0.13.2" 2659source = "registry+https://github.com/rust-lang/crates.io-index" 2660checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 2661dependencies = [ 2662 "proc-macro2", 2663 "quote", 2664 "syn 2.0.106", 2665] 2666 2667[[package]] 2668name = "system-configuration" 2669version = "0.6.1" 2670source = "registry+https://github.com/rust-lang/crates.io-index" 2671checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" 2672dependencies = [ 2673 "bitflags", 2674 "core-foundation", 2675 "system-configuration-sys", 2676] 2677 2678[[package]] 2679name = "system-configuration-sys" 2680version = "0.6.0" 2681source = "registry+https://github.com/rust-lang/crates.io-index" 2682checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 2683dependencies = [ 2684 "core-foundation-sys", 2685 "libc", 2686] 2687 2688[[package]] 2689name = "tagptr" 2690version = "0.2.0" 2691source = "registry+https://github.com/rust-lang/crates.io-index" 2692checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" 2693 2694[[package]] 2695name = "tempfile" 2696version = "3.23.0" 2697source = "registry+https://github.com/rust-lang/crates.io-index" 2698checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" 2699dependencies = [ 2700 "fastrand", 2701 "getrandom 0.3.3", 2702 "once_cell", 2703 "rustix", 2704 "windows-sys 0.61.1", 2705] 2706 2707[[package]] 2708name = "thiserror" 2709version = "1.0.69" 2710source = "registry+https://github.com/rust-lang/crates.io-index" 2711checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 2712dependencies = [ 2713 "thiserror-impl 1.0.69", 2714] 2715 2716[[package]] 2717name = "thiserror" 2718version = "2.0.17" 2719source = "registry+https://github.com/rust-lang/crates.io-index" 2720checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 2721dependencies = [ 2722 "thiserror-impl 2.0.17", 2723] 2724 2725[[package]] 2726name = "thiserror-impl" 2727version = "1.0.69" 2728source = "registry+https://github.com/rust-lang/crates.io-index" 2729checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 2730dependencies = [ 2731 "proc-macro2", 2732 "quote", 2733 "syn 2.0.106", 2734] 2735 2736[[package]] 2737name = "thiserror-impl" 2738version = "2.0.17" 2739source = "registry+https://github.com/rust-lang/crates.io-index" 2740checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 2741dependencies = [ 2742 "proc-macro2", 2743 "quote", 2744 "syn 2.0.106", 2745] 2746 2747[[package]] 2748name = "time" 2749version = "0.3.44" 2750source = "registry+https://github.com/rust-lang/crates.io-index" 2751checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" 2752dependencies = [ 2753 "deranged", 2754 "itoa", 2755 "num-conv", 2756 "powerfmt", 2757 "serde", 2758 "time-core", 2759 "time-macros", 2760] 2761 2762[[package]] 2763name = "time-core" 2764version = "0.1.6" 2765source = "registry+https://github.com/rust-lang/crates.io-index" 2766checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" 2767 2768[[package]] 2769name = "time-macros" 2770version = "0.2.24" 2771source = "registry+https://github.com/rust-lang/crates.io-index" 2772checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" 2773dependencies = [ 2774 "num-conv", 2775 "time-core", 2776] 2777 2778[[package]] 2779name = "tinystr" 2780version = "0.8.1" 2781source = "registry+https://github.com/rust-lang/crates.io-index" 2782checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" 2783dependencies = [ 2784 "displaydoc", 2785 "zerovec", 2786] 2787 2788[[package]] 2789name = "tinyvec" 2790version = "1.10.0" 2791source = "registry+https://github.com/rust-lang/crates.io-index" 2792checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" 2793dependencies = [ 2794 "tinyvec_macros", 2795] 2796 2797[[package]] 2798name = "tinyvec_macros" 2799version = "0.1.1" 2800source = "registry+https://github.com/rust-lang/crates.io-index" 2801checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2802 2803[[package]] 2804name = "tokio" 2805version = "1.47.1" 2806source = "registry+https://github.com/rust-lang/crates.io-index" 2807checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" 2808dependencies = [ 2809 "backtrace", 2810 "bytes", 2811 "io-uring", 2812 "libc", 2813 "mio", 2814 "parking_lot", 2815 "pin-project-lite", 2816 "signal-hook-registry", 2817 "slab", 2818 "socket2", 2819 "tokio-macros", 2820 "windows-sys 0.59.0", 2821] 2822 2823[[package]] 2824name = "tokio-macros" 2825version = "2.5.0" 2826source = "registry+https://github.com/rust-lang/crates.io-index" 2827checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 2828dependencies = [ 2829 "proc-macro2", 2830 "quote", 2831 "syn 2.0.106", 2832] 2833 2834[[package]] 2835name = "tokio-native-tls" 2836version = "0.3.1" 2837source = "registry+https://github.com/rust-lang/crates.io-index" 2838checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 2839dependencies = [ 2840 "native-tls", 2841 "tokio", 2842] 2843 2844[[package]] 2845name = "tokio-rustls" 2846version = "0.26.4" 2847source = "registry+https://github.com/rust-lang/crates.io-index" 2848checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 2849dependencies = [ 2850 "rustls", 2851 "tokio", 2852] 2853 2854[[package]] 2855name = "tokio-tungstenite" 2856version = "0.26.2" 2857source = "registry+https://github.com/rust-lang/crates.io-index" 2858checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084" 2859dependencies = [ 2860 "futures-util", 2861 "log", 2862 "native-tls", 2863 "tokio", 2864 "tokio-native-tls", 2865 "tungstenite", 2866] 2867 2868[[package]] 2869name = "tokio-util" 2870version = "0.7.16" 2871source = "registry+https://github.com/rust-lang/crates.io-index" 2872checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5" 2873dependencies = [ 2874 "bytes", 2875 "futures-core", 2876 "futures-sink", 2877 "pin-project-lite", 2878 "tokio", 2879] 2880 2881[[package]] 2882name = "tower" 2883version = "0.5.2" 2884source = "registry+https://github.com/rust-lang/crates.io-index" 2885checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 2886dependencies = [ 2887 "futures-core", 2888 "futures-util", 2889 "pin-project-lite", 2890 "sync_wrapper", 2891 "tokio", 2892 "tower-layer", 2893 "tower-service", 2894] 2895 2896[[package]] 2897name = "tower-http" 2898version = "0.6.6" 2899source = "registry+https://github.com/rust-lang/crates.io-index" 2900checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" 2901dependencies = [ 2902 "bitflags", 2903 "bytes", 2904 "futures-util", 2905 "http", 2906 "http-body", 2907 "iri-string", 2908 "pin-project-lite", 2909 "tower", 2910 "tower-layer", 2911 "tower-service", 2912] 2913 2914[[package]] 2915name = "tower-layer" 2916version = "0.3.3" 2917source = "registry+https://github.com/rust-lang/crates.io-index" 2918checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 2919 2920[[package]] 2921name = "tower-service" 2922version = "0.3.3" 2923source = "registry+https://github.com/rust-lang/crates.io-index" 2924checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 2925 2926[[package]] 2927name = "tracing" 2928version = "0.1.41" 2929source = "registry+https://github.com/rust-lang/crates.io-index" 2930checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 2931dependencies = [ 2932 "pin-project-lite", 2933 "tracing-core", 2934] 2935 2936[[package]] 2937name = "tracing-core" 2938version = "0.1.34" 2939source = "registry+https://github.com/rust-lang/crates.io-index" 2940checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" 2941dependencies = [ 2942 "once_cell", 2943] 2944 2945[[package]] 2946name = "trait-variant" 2947version = "0.1.2" 2948source = "registry+https://github.com/rust-lang/crates.io-index" 2949checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" 2950dependencies = [ 2951 "proc-macro2", 2952 "quote", 2953 "syn 2.0.106", 2954] 2955 2956[[package]] 2957name = "try-lock" 2958version = "0.2.5" 2959source = "registry+https://github.com/rust-lang/crates.io-index" 2960checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 2961 2962[[package]] 2963name = "tungstenite" 2964version = "0.26.2" 2965source = "registry+https://github.com/rust-lang/crates.io-index" 2966checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13" 2967dependencies = [ 2968 "bytes", 2969 "data-encoding", 2970 "http", 2971 "httparse", 2972 "log", 2973 "native-tls", 2974 "rand", 2975 "sha1", 2976 "thiserror 2.0.17", 2977 "url", 2978 "utf-8", 2979] 2980 2981[[package]] 2982name = "typenum" 2983version = "1.19.0" 2984source = "registry+https://github.com/rust-lang/crates.io-index" 2985checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 2986 2987[[package]] 2988name = "unicode-ident" 2989version = "1.0.19" 2990source = "registry+https://github.com/rust-lang/crates.io-index" 2991checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" 2992 2993[[package]] 2994name = "unicode-width" 2995version = "0.1.14" 2996source = "registry+https://github.com/rust-lang/crates.io-index" 2997checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 2998 2999[[package]] 3000name = "unsigned-varint" 3001version = "0.8.0" 3002source = "registry+https://github.com/rust-lang/crates.io-index" 3003checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 3004 3005[[package]] 3006name = "untrusted" 3007version = "0.9.0" 3008source = "registry+https://github.com/rust-lang/crates.io-index" 3009checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 3010 3011[[package]] 3012name = "url" 3013version = "2.5.7" 3014source = "registry+https://github.com/rust-lang/crates.io-index" 3015checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" 3016dependencies = [ 3017 "form_urlencoded", 3018 "idna", 3019 "percent-encoding", 3020 "serde", 3021] 3022 3023[[package]] 3024name = "utf-8" 3025version = "0.7.6" 3026source = "registry+https://github.com/rust-lang/crates.io-index" 3027checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3028 3029[[package]] 3030name = "utf8_iter" 3031version = "1.0.4" 3032source = "registry+https://github.com/rust-lang/crates.io-index" 3033checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 3034 3035[[package]] 3036name = "utf8parse" 3037version = "0.2.2" 3038source = "registry+https://github.com/rust-lang/crates.io-index" 3039checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 3040 3041[[package]] 3042name = "uuid" 3043version = "1.18.1" 3044source = "registry+https://github.com/rust-lang/crates.io-index" 3045checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" 3046dependencies = [ 3047 "getrandom 0.3.3", 3048 "js-sys", 3049 "wasm-bindgen", 3050] 3051 3052[[package]] 3053name = "vcpkg" 3054version = "0.2.15" 3055source = "registry+https://github.com/rust-lang/crates.io-index" 3056checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3057 3058[[package]] 3059name = "version_check" 3060version = "0.9.5" 3061source = "registry+https://github.com/rust-lang/crates.io-index" 3062checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 3063 3064[[package]] 3065name = "want" 3066version = "0.3.1" 3067source = "registry+https://github.com/rust-lang/crates.io-index" 3068checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 3069dependencies = [ 3070 "try-lock", 3071] 3072 3073[[package]] 3074name = "wasi" 3075version = "0.11.1+wasi-snapshot-preview1" 3076source = "registry+https://github.com/rust-lang/crates.io-index" 3077checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 3078 3079[[package]] 3080name = "wasi" 3081version = "0.14.7+wasi-0.2.4" 3082source = "registry+https://github.com/rust-lang/crates.io-index" 3083checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c" 3084dependencies = [ 3085 "wasip2", 3086] 3087 3088[[package]] 3089name = "wasip2" 3090version = "1.0.1+wasi-0.2.4" 3091source = "registry+https://github.com/rust-lang/crates.io-index" 3092checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 3093dependencies = [ 3094 "wit-bindgen", 3095] 3096 3097[[package]] 3098name = "wasm-bindgen" 3099version = "0.2.104" 3100source = "registry+https://github.com/rust-lang/crates.io-index" 3101checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d" 3102dependencies = [ 3103 "cfg-if", 3104 "once_cell", 3105 "rustversion", 3106 "wasm-bindgen-macro", 3107 "wasm-bindgen-shared", 3108] 3109 3110[[package]] 3111name = "wasm-bindgen-backend" 3112version = "0.2.104" 3113source = "registry+https://github.com/rust-lang/crates.io-index" 3114checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19" 3115dependencies = [ 3116 "bumpalo", 3117 "log", 3118 "proc-macro2", 3119 "quote", 3120 "syn 2.0.106", 3121 "wasm-bindgen-shared", 3122] 3123 3124[[package]] 3125name = "wasm-bindgen-futures" 3126version = "0.4.54" 3127source = "registry+https://github.com/rust-lang/crates.io-index" 3128checksum = "7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c" 3129dependencies = [ 3130 "cfg-if", 3131 "js-sys", 3132 "once_cell", 3133 "wasm-bindgen", 3134 "web-sys", 3135] 3136 3137[[package]] 3138name = "wasm-bindgen-macro" 3139version = "0.2.104" 3140source = "registry+https://github.com/rust-lang/crates.io-index" 3141checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119" 3142dependencies = [ 3143 "quote", 3144 "wasm-bindgen-macro-support", 3145] 3146 3147[[package]] 3148name = "wasm-bindgen-macro-support" 3149version = "0.2.104" 3150source = "registry+https://github.com/rust-lang/crates.io-index" 3151checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7" 3152dependencies = [ 3153 "proc-macro2", 3154 "quote", 3155 "syn 2.0.106", 3156 "wasm-bindgen-backend", 3157 "wasm-bindgen-shared", 3158] 3159 3160[[package]] 3161name = "wasm-bindgen-shared" 3162version = "0.2.104" 3163source = "registry+https://github.com/rust-lang/crates.io-index" 3164checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1" 3165dependencies = [ 3166 "unicode-ident", 3167] 3168 3169[[package]] 3170name = "web-sys" 3171version = "0.3.81" 3172source = "registry+https://github.com/rust-lang/crates.io-index" 3173checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120" 3174dependencies = [ 3175 "js-sys", 3176 "wasm-bindgen", 3177] 3178 3179[[package]] 3180name = "web-time" 3181version = "1.1.0" 3182source = "registry+https://github.com/rust-lang/crates.io-index" 3183checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 3184dependencies = [ 3185 "js-sys", 3186 "wasm-bindgen", 3187] 3188 3189[[package]] 3190name = "webpki-roots" 3191version = "1.0.2" 3192source = "registry+https://github.com/rust-lang/crates.io-index" 3193checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2" 3194dependencies = [ 3195 "rustls-pki-types", 3196] 3197 3198[[package]] 3199name = "windows-core" 3200version = "0.62.1" 3201source = "registry+https://github.com/rust-lang/crates.io-index" 3202checksum = "6844ee5416b285084d3d3fffd743b925a6c9385455f64f6d4fa3031c4c2749a9" 3203dependencies = [ 3204 "windows-implement", 3205 "windows-interface", 3206 "windows-link 0.2.0", 3207 "windows-result 0.4.0", 3208 "windows-strings 0.5.0", 3209] 3210 3211[[package]] 3212name = "windows-implement" 3213version = "0.60.1" 3214source = "registry+https://github.com/rust-lang/crates.io-index" 3215checksum = "edb307e42a74fb6de9bf3a02d9712678b22399c87e6fa869d6dfcd8c1b7754e0" 3216dependencies = [ 3217 "proc-macro2", 3218 "quote", 3219 "syn 2.0.106", 3220] 3221 3222[[package]] 3223name = "windows-interface" 3224version = "0.59.2" 3225source = "registry+https://github.com/rust-lang/crates.io-index" 3226checksum = "c0abd1ddbc6964ac14db11c7213d6532ef34bd9aa042c2e5935f59d7908b46a5" 3227dependencies = [ 3228 "proc-macro2", 3229 "quote", 3230 "syn 2.0.106", 3231] 3232 3233[[package]] 3234name = "windows-link" 3235version = "0.1.3" 3236source = "registry+https://github.com/rust-lang/crates.io-index" 3237checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 3238 3239[[package]] 3240name = "windows-link" 3241version = "0.2.0" 3242source = "registry+https://github.com/rust-lang/crates.io-index" 3243checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65" 3244 3245[[package]] 3246name = "windows-registry" 3247version = "0.5.3" 3248source = "registry+https://github.com/rust-lang/crates.io-index" 3249checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e" 3250dependencies = [ 3251 "windows-link 0.1.3", 3252 "windows-result 0.3.4", 3253 "windows-strings 0.4.2", 3254] 3255 3256[[package]] 3257name = "windows-result" 3258version = "0.3.4" 3259source = "registry+https://github.com/rust-lang/crates.io-index" 3260checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 3261dependencies = [ 3262 "windows-link 0.1.3", 3263] 3264 3265[[package]] 3266name = "windows-result" 3267version = "0.4.0" 3268source = "registry+https://github.com/rust-lang/crates.io-index" 3269checksum = "7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f" 3270dependencies = [ 3271 "windows-link 0.2.0", 3272] 3273 3274[[package]] 3275name = "windows-strings" 3276version = "0.4.2" 3277source = "registry+https://github.com/rust-lang/crates.io-index" 3278checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 3279dependencies = [ 3280 "windows-link 0.1.3", 3281] 3282 3283[[package]] 3284name = "windows-strings" 3285version = "0.5.0" 3286source = "registry+https://github.com/rust-lang/crates.io-index" 3287checksum = "7218c655a553b0bed4426cf54b20d7ba363ef543b52d515b3e48d7fd55318dda" 3288dependencies = [ 3289 "windows-link 0.2.0", 3290] 3291 3292[[package]] 3293name = "windows-sys" 3294version = "0.52.0" 3295source = "registry+https://github.com/rust-lang/crates.io-index" 3296checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3297dependencies = [ 3298 "windows-targets 0.52.6", 3299] 3300 3301[[package]] 3302name = "windows-sys" 3303version = "0.59.0" 3304source = "registry+https://github.com/rust-lang/crates.io-index" 3305checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 3306dependencies = [ 3307 "windows-targets 0.52.6", 3308] 3309 3310[[package]] 3311name = "windows-sys" 3312version = "0.60.2" 3313source = "registry+https://github.com/rust-lang/crates.io-index" 3314checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 3315dependencies = [ 3316 "windows-targets 0.53.4", 3317] 3318 3319[[package]] 3320name = "windows-sys" 3321version = "0.61.1" 3322source = "registry+https://github.com/rust-lang/crates.io-index" 3323checksum = "6f109e41dd4a3c848907eb83d5a42ea98b3769495597450cf6d153507b166f0f" 3324dependencies = [ 3325 "windows-link 0.2.0", 3326] 3327 3328[[package]] 3329name = "windows-targets" 3330version = "0.52.6" 3331source = "registry+https://github.com/rust-lang/crates.io-index" 3332checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 3333dependencies = [ 3334 "windows_aarch64_gnullvm 0.52.6", 3335 "windows_aarch64_msvc 0.52.6", 3336 "windows_i686_gnu 0.52.6", 3337 "windows_i686_gnullvm 0.52.6", 3338 "windows_i686_msvc 0.52.6", 3339 "windows_x86_64_gnu 0.52.6", 3340 "windows_x86_64_gnullvm 0.52.6", 3341 "windows_x86_64_msvc 0.52.6", 3342] 3343 3344[[package]] 3345name = "windows-targets" 3346version = "0.53.4" 3347source = "registry+https://github.com/rust-lang/crates.io-index" 3348checksum = "2d42b7b7f66d2a06854650af09cfdf8713e427a439c97ad65a6375318033ac4b" 3349dependencies = [ 3350 "windows-link 0.2.0", 3351 "windows_aarch64_gnullvm 0.53.0", 3352 "windows_aarch64_msvc 0.53.0", 3353 "windows_i686_gnu 0.53.0", 3354 "windows_i686_gnullvm 0.53.0", 3355 "windows_i686_msvc 0.53.0", 3356 "windows_x86_64_gnu 0.53.0", 3357 "windows_x86_64_gnullvm 0.53.0", 3358 "windows_x86_64_msvc 0.53.0", 3359] 3360 3361[[package]] 3362name = "windows_aarch64_gnullvm" 3363version = "0.52.6" 3364source = "registry+https://github.com/rust-lang/crates.io-index" 3365checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 3366 3367[[package]] 3368name = "windows_aarch64_gnullvm" 3369version = "0.53.0" 3370source = "registry+https://github.com/rust-lang/crates.io-index" 3371checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 3372 3373[[package]] 3374name = "windows_aarch64_msvc" 3375version = "0.52.6" 3376source = "registry+https://github.com/rust-lang/crates.io-index" 3377checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 3378 3379[[package]] 3380name = "windows_aarch64_msvc" 3381version = "0.53.0" 3382source = "registry+https://github.com/rust-lang/crates.io-index" 3383checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 3384 3385[[package]] 3386name = "windows_i686_gnu" 3387version = "0.52.6" 3388source = "registry+https://github.com/rust-lang/crates.io-index" 3389checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 3390 3391[[package]] 3392name = "windows_i686_gnu" 3393version = "0.53.0" 3394source = "registry+https://github.com/rust-lang/crates.io-index" 3395checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 3396 3397[[package]] 3398name = "windows_i686_gnullvm" 3399version = "0.52.6" 3400source = "registry+https://github.com/rust-lang/crates.io-index" 3401checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 3402 3403[[package]] 3404name = "windows_i686_gnullvm" 3405version = "0.53.0" 3406source = "registry+https://github.com/rust-lang/crates.io-index" 3407checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 3408 3409[[package]] 3410name = "windows_i686_msvc" 3411version = "0.52.6" 3412source = "registry+https://github.com/rust-lang/crates.io-index" 3413checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 3414 3415[[package]] 3416name = "windows_i686_msvc" 3417version = "0.53.0" 3418source = "registry+https://github.com/rust-lang/crates.io-index" 3419checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 3420 3421[[package]] 3422name = "windows_x86_64_gnu" 3423version = "0.52.6" 3424source = "registry+https://github.com/rust-lang/crates.io-index" 3425checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 3426 3427[[package]] 3428name = "windows_x86_64_gnu" 3429version = "0.53.0" 3430source = "registry+https://github.com/rust-lang/crates.io-index" 3431checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 3432 3433[[package]] 3434name = "windows_x86_64_gnullvm" 3435version = "0.52.6" 3436source = "registry+https://github.com/rust-lang/crates.io-index" 3437checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 3438 3439[[package]] 3440name = "windows_x86_64_gnullvm" 3441version = "0.53.0" 3442source = "registry+https://github.com/rust-lang/crates.io-index" 3443checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 3444 3445[[package]] 3446name = "windows_x86_64_msvc" 3447version = "0.52.6" 3448source = "registry+https://github.com/rust-lang/crates.io-index" 3449checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 3450 3451[[package]] 3452name = "windows_x86_64_msvc" 3453version = "0.53.0" 3454source = "registry+https://github.com/rust-lang/crates.io-index" 3455checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 3456 3457[[package]] 3458name = "wit-bindgen" 3459version = "0.46.0" 3460source = "registry+https://github.com/rust-lang/crates.io-index" 3461checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 3462 3463[[package]] 3464name = "writeable" 3465version = "0.6.1" 3466source = "registry+https://github.com/rust-lang/crates.io-index" 3467checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" 3468 3469[[package]] 3470name = "yansi" 3471version = "1.0.1" 3472source = "registry+https://github.com/rust-lang/crates.io-index" 3473checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 3474 3475[[package]] 3476name = "yoke" 3477version = "0.8.0" 3478source = "registry+https://github.com/rust-lang/crates.io-index" 3479checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" 3480dependencies = [ 3481 "serde", 3482 "stable_deref_trait", 3483 "yoke-derive", 3484 "zerofrom", 3485] 3486 3487[[package]] 3488name = "yoke-derive" 3489version = "0.8.0" 3490source = "registry+https://github.com/rust-lang/crates.io-index" 3491checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" 3492dependencies = [ 3493 "proc-macro2", 3494 "quote", 3495 "syn 2.0.106", 3496 "synstructure", 3497] 3498 3499[[package]] 3500name = "zerocopy" 3501version = "0.8.27" 3502source = "registry+https://github.com/rust-lang/crates.io-index" 3503checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" 3504dependencies = [ 3505 "zerocopy-derive", 3506] 3507 3508[[package]] 3509name = "zerocopy-derive" 3510version = "0.8.27" 3511source = "registry+https://github.com/rust-lang/crates.io-index" 3512checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" 3513dependencies = [ 3514 "proc-macro2", 3515 "quote", 3516 "syn 2.0.106", 3517] 3518 3519[[package]] 3520name = "zerofrom" 3521version = "0.1.6" 3522source = "registry+https://github.com/rust-lang/crates.io-index" 3523checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 3524dependencies = [ 3525 "zerofrom-derive", 3526] 3527 3528[[package]] 3529name = "zerofrom-derive" 3530version = "0.1.6" 3531source = "registry+https://github.com/rust-lang/crates.io-index" 3532checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 3533dependencies = [ 3534 "proc-macro2", 3535 "quote", 3536 "syn 2.0.106", 3537 "synstructure", 3538] 3539 3540[[package]] 3541name = "zeroize" 3542version = "1.8.2" 3543source = "registry+https://github.com/rust-lang/crates.io-index" 3544checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 3545 3546[[package]] 3547name = "zerotrie" 3548version = "0.2.2" 3549source = "registry+https://github.com/rust-lang/crates.io-index" 3550checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" 3551dependencies = [ 3552 "displaydoc", 3553 "yoke", 3554 "zerofrom", 3555] 3556 3557[[package]] 3558name = "zerovec" 3559version = "0.11.4" 3560source = "registry+https://github.com/rust-lang/crates.io-index" 3561checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" 3562dependencies = [ 3563 "yoke", 3564 "zerofrom", 3565 "zerovec-derive", 3566] 3567 3568[[package]] 3569name = "zerovec-derive" 3570version = "0.11.1" 3571source = "registry+https://github.com/rust-lang/crates.io-index" 3572checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" 3573dependencies = [ 3574 "proc-macro2", 3575 "quote", 3576 "syn 2.0.106", 3577] 3578 3579[[package]] 3580name = "zstd" 3581version = "0.13.3" 3582source = "registry+https://github.com/rust-lang/crates.io-index" 3583checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" 3584dependencies = [ 3585 "zstd-safe", 3586] 3587 3588[[package]] 3589name = "zstd-safe" 3590version = "7.2.4" 3591source = "registry+https://github.com/rust-lang/crates.io-index" 3592checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" 3593dependencies = [ 3594 "zstd-sys", 3595] 3596 3597[[package]] 3598name = "zstd-sys" 3599version = "2.0.16+zstd.1.5.7" 3600source = "registry+https://github.com/rust-lang/crates.io-index" 3601checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" 3602dependencies = [ 3603 "cc", 3604 "pkg-config", 3605]