A better Rust ATProto crate
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 = "aho-corasick" 26version = "1.1.3" 27source = "registry+https://github.com/rust-lang/crates.io-index" 28checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 29dependencies = [ 30 "memchr", 31] 32 33[[package]] 34name = "aliasable" 35version = "0.1.3" 36source = "registry+https://github.com/rust-lang/crates.io-index" 37checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" 38 39[[package]] 40name = "android_system_properties" 41version = "0.1.5" 42source = "registry+https://github.com/rust-lang/crates.io-index" 43checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 44dependencies = [ 45 "libc", 46] 47 48[[package]] 49name = "anstream" 50version = "0.6.20" 51source = "registry+https://github.com/rust-lang/crates.io-index" 52checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192" 53dependencies = [ 54 "anstyle", 55 "anstyle-parse", 56 "anstyle-query", 57 "anstyle-wincon", 58 "colorchoice", 59 "is_terminal_polyfill", 60 "utf8parse", 61] 62 63[[package]] 64name = "anstyle" 65version = "1.0.11" 66source = "registry+https://github.com/rust-lang/crates.io-index" 67checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" 68 69[[package]] 70name = "anstyle-parse" 71version = "0.2.7" 72source = "registry+https://github.com/rust-lang/crates.io-index" 73checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 74dependencies = [ 75 "utf8parse", 76] 77 78[[package]] 79name = "anstyle-query" 80version = "1.1.4" 81source = "registry+https://github.com/rust-lang/crates.io-index" 82checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" 83dependencies = [ 84 "windows-sys", 85] 86 87[[package]] 88name = "anstyle-wincon" 89version = "3.0.10" 90source = "registry+https://github.com/rust-lang/crates.io-index" 91checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" 92dependencies = [ 93 "anstyle", 94 "once_cell_polyfill", 95 "windows-sys", 96] 97 98[[package]] 99name = "autocfg" 100version = "1.5.0" 101source = "registry+https://github.com/rust-lang/crates.io-index" 102checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 103 104[[package]] 105name = "base-x" 106version = "0.2.11" 107source = "registry+https://github.com/rust-lang/crates.io-index" 108checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 109 110[[package]] 111name = "base64" 112version = "0.22.1" 113source = "registry+https://github.com/rust-lang/crates.io-index" 114checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 115 116[[package]] 117name = "block-buffer" 118version = "0.10.4" 119source = "registry+https://github.com/rust-lang/crates.io-index" 120checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 121dependencies = [ 122 "generic-array", 123] 124 125[[package]] 126name = "borsh" 127version = "1.5.7" 128source = "registry+https://github.com/rust-lang/crates.io-index" 129checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce" 130dependencies = [ 131 "cfg_aliases", 132] 133 134[[package]] 135name = "btree-range-map" 136version = "0.7.2" 137source = "registry+https://github.com/rust-lang/crates.io-index" 138checksum = "1be5c9672446d3800bcbcaabaeba121fe22f1fb25700c4562b22faf76d377c33" 139dependencies = [ 140 "btree-slab", 141 "cc-traits", 142 "range-traits", 143 "serde", 144 "slab", 145] 146 147[[package]] 148name = "btree-slab" 149version = "0.6.1" 150source = "registry+https://github.com/rust-lang/crates.io-index" 151checksum = "7a2b56d3029f075c4fa892428a098425b86cef5c89ae54073137ece416aef13c" 152dependencies = [ 153 "cc-traits", 154 "slab", 155 "smallvec", 156] 157 158[[package]] 159name = "bumpalo" 160version = "3.19.0" 161source = "registry+https://github.com/rust-lang/crates.io-index" 162checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 163 164[[package]] 165name = "bytes" 166version = "1.10.1" 167source = "registry+https://github.com/rust-lang/crates.io-index" 168checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 169dependencies = [ 170 "serde", 171] 172 173[[package]] 174name = "cc" 175version = "1.2.39" 176source = "registry+https://github.com/rust-lang/crates.io-index" 177checksum = "e1354349954c6fc9cb0deab020f27f783cf0b604e8bb754dc4658ecf0d29c35f" 178dependencies = [ 179 "find-msvc-tools", 180 "shlex", 181] 182 183[[package]] 184name = "cc-traits" 185version = "2.0.0" 186source = "registry+https://github.com/rust-lang/crates.io-index" 187checksum = "060303ef31ef4a522737e1b1ab68c67916f2a787bb2f4f54f383279adba962b5" 188dependencies = [ 189 "slab", 190] 191 192[[package]] 193name = "cfg-if" 194version = "1.0.3" 195source = "registry+https://github.com/rust-lang/crates.io-index" 196checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" 197 198[[package]] 199name = "cfg_aliases" 200version = "0.2.1" 201source = "registry+https://github.com/rust-lang/crates.io-index" 202checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 203 204[[package]] 205name = "chrono" 206version = "0.4.42" 207source = "registry+https://github.com/rust-lang/crates.io-index" 208checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" 209dependencies = [ 210 "iana-time-zone", 211 "js-sys", 212 "num-traits", 213 "serde", 214 "wasm-bindgen", 215 "windows-link", 216] 217 218[[package]] 219name = "ciborium" 220version = "0.2.2" 221source = "registry+https://github.com/rust-lang/crates.io-index" 222checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 223dependencies = [ 224 "ciborium-io", 225 "ciborium-ll", 226 "serde", 227] 228 229[[package]] 230name = "ciborium-io" 231version = "0.2.2" 232source = "registry+https://github.com/rust-lang/crates.io-index" 233checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 234 235[[package]] 236name = "ciborium-ll" 237version = "0.2.2" 238source = "registry+https://github.com/rust-lang/crates.io-index" 239checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 240dependencies = [ 241 "ciborium-io", 242 "half", 243] 244 245[[package]] 246name = "cid" 247version = "0.11.1" 248source = "registry+https://github.com/rust-lang/crates.io-index" 249checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" 250dependencies = [ 251 "core2", 252 "multibase", 253 "multihash", 254 "serde", 255 "serde_bytes", 256 "unsigned-varint", 257] 258 259[[package]] 260name = "clap" 261version = "4.5.48" 262source = "registry+https://github.com/rust-lang/crates.io-index" 263checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae" 264dependencies = [ 265 "clap_builder", 266 "clap_derive", 267] 268 269[[package]] 270name = "clap_builder" 271version = "4.5.48" 272source = "registry+https://github.com/rust-lang/crates.io-index" 273checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9" 274dependencies = [ 275 "anstream", 276 "anstyle", 277 "clap_lex", 278 "strsim", 279] 280 281[[package]] 282name = "clap_derive" 283version = "4.5.47" 284source = "registry+https://github.com/rust-lang/crates.io-index" 285checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c" 286dependencies = [ 287 "heck 0.5.0", 288 "proc-macro2", 289 "quote", 290 "syn 2.0.106", 291] 292 293[[package]] 294name = "clap_lex" 295version = "0.7.5" 296source = "registry+https://github.com/rust-lang/crates.io-index" 297checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" 298 299[[package]] 300name = "colorchoice" 301version = "1.0.4" 302source = "registry+https://github.com/rust-lang/crates.io-index" 303checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 304 305[[package]] 306name = "core-foundation-sys" 307version = "0.8.7" 308source = "registry+https://github.com/rust-lang/crates.io-index" 309checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 310 311[[package]] 312name = "core2" 313version = "0.4.0" 314source = "registry+https://github.com/rust-lang/crates.io-index" 315checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 316dependencies = [ 317 "memchr", 318] 319 320[[package]] 321name = "cpufeatures" 322version = "0.2.17" 323source = "registry+https://github.com/rust-lang/crates.io-index" 324checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 325dependencies = [ 326 "libc", 327] 328 329[[package]] 330name = "crunchy" 331version = "0.2.4" 332source = "registry+https://github.com/rust-lang/crates.io-index" 333checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 334 335[[package]] 336name = "crypto-common" 337version = "0.1.6" 338source = "registry+https://github.com/rust-lang/crates.io-index" 339checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 340dependencies = [ 341 "generic-array", 342 "typenum", 343] 344 345[[package]] 346name = "darling" 347version = "0.21.3" 348source = "registry+https://github.com/rust-lang/crates.io-index" 349checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" 350dependencies = [ 351 "darling_core", 352 "darling_macro", 353] 354 355[[package]] 356name = "darling_core" 357version = "0.21.3" 358source = "registry+https://github.com/rust-lang/crates.io-index" 359checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" 360dependencies = [ 361 "fnv", 362 "ident_case", 363 "proc-macro2", 364 "quote", 365 "strsim", 366 "syn 2.0.106", 367] 368 369[[package]] 370name = "darling_macro" 371version = "0.21.3" 372source = "registry+https://github.com/rust-lang/crates.io-index" 373checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" 374dependencies = [ 375 "darling_core", 376 "quote", 377 "syn 2.0.106", 378] 379 380[[package]] 381name = "data-encoding" 382version = "2.9.0" 383source = "registry+https://github.com/rust-lang/crates.io-index" 384checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 385 386[[package]] 387name = "data-encoding-macro" 388version = "0.1.18" 389source = "registry+https://github.com/rust-lang/crates.io-index" 390checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d" 391dependencies = [ 392 "data-encoding", 393 "data-encoding-macro-internal", 394] 395 396[[package]] 397name = "data-encoding-macro-internal" 398version = "0.1.16" 399source = "registry+https://github.com/rust-lang/crates.io-index" 400checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" 401dependencies = [ 402 "data-encoding", 403 "syn 2.0.106", 404] 405 406[[package]] 407name = "deranged" 408version = "0.5.4" 409source = "registry+https://github.com/rust-lang/crates.io-index" 410checksum = "a41953f86f8a05768a6cda24def994fd2f424b04ec5c719cf89989779f199071" 411dependencies = [ 412 "powerfmt", 413 "serde_core", 414] 415 416[[package]] 417name = "digest" 418version = "0.10.7" 419source = "registry+https://github.com/rust-lang/crates.io-index" 420checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 421dependencies = [ 422 "block-buffer", 423 "crypto-common", 424] 425 426[[package]] 427name = "displaydoc" 428version = "0.2.5" 429source = "registry+https://github.com/rust-lang/crates.io-index" 430checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 431dependencies = [ 432 "proc-macro2", 433 "quote", 434 "syn 2.0.106", 435] 436 437[[package]] 438name = "dyn-clone" 439version = "1.0.20" 440source = "registry+https://github.com/rust-lang/crates.io-index" 441checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" 442 443[[package]] 444name = "either" 445version = "1.15.0" 446source = "registry+https://github.com/rust-lang/crates.io-index" 447checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 448 449[[package]] 450name = "enum_dispatch" 451version = "0.3.13" 452source = "registry+https://github.com/rust-lang/crates.io-index" 453checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd" 454dependencies = [ 455 "once_cell", 456 "proc-macro2", 457 "quote", 458 "syn 2.0.106", 459] 460 461[[package]] 462name = "equivalent" 463version = "1.0.2" 464source = "registry+https://github.com/rust-lang/crates.io-index" 465checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 466 467[[package]] 468name = "find-msvc-tools" 469version = "0.1.2" 470source = "registry+https://github.com/rust-lang/crates.io-index" 471checksum = "1ced73b1dacfc750a6db6c0a0c3a3853c8b41997e2e2c563dc90804ae6867959" 472 473[[package]] 474name = "fnv" 475version = "1.0.7" 476source = "registry+https://github.com/rust-lang/crates.io-index" 477checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 478 479[[package]] 480name = "form_urlencoded" 481version = "1.2.2" 482source = "registry+https://github.com/rust-lang/crates.io-index" 483checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 484dependencies = [ 485 "percent-encoding", 486] 487 488[[package]] 489name = "generic-array" 490version = "0.14.7" 491source = "registry+https://github.com/rust-lang/crates.io-index" 492checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 493dependencies = [ 494 "typenum", 495 "version_check", 496] 497 498[[package]] 499name = "getrandom" 500version = "0.3.3" 501source = "registry+https://github.com/rust-lang/crates.io-index" 502checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 503dependencies = [ 504 "cfg-if", 505 "libc", 506 "r-efi", 507 "wasi", 508] 509 510[[package]] 511name = "half" 512version = "2.6.0" 513source = "registry+https://github.com/rust-lang/crates.io-index" 514checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9" 515dependencies = [ 516 "cfg-if", 517 "crunchy", 518] 519 520[[package]] 521name = "hashbrown" 522version = "0.12.3" 523source = "registry+https://github.com/rust-lang/crates.io-index" 524checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 525 526[[package]] 527name = "hashbrown" 528version = "0.16.0" 529source = "registry+https://github.com/rust-lang/crates.io-index" 530checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" 531 532[[package]] 533name = "heck" 534version = "0.4.1" 535source = "registry+https://github.com/rust-lang/crates.io-index" 536checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 537 538[[package]] 539name = "heck" 540version = "0.5.0" 541source = "registry+https://github.com/rust-lang/crates.io-index" 542checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 543 544[[package]] 545name = "hex" 546version = "0.4.3" 547source = "registry+https://github.com/rust-lang/crates.io-index" 548checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 549 550[[package]] 551name = "hex_fmt" 552version = "0.3.0" 553source = "registry+https://github.com/rust-lang/crates.io-index" 554checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f" 555 556[[package]] 557name = "iana-time-zone" 558version = "0.1.64" 559source = "registry+https://github.com/rust-lang/crates.io-index" 560checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" 561dependencies = [ 562 "android_system_properties", 563 "core-foundation-sys", 564 "iana-time-zone-haiku", 565 "js-sys", 566 "log", 567 "wasm-bindgen", 568 "windows-core", 569] 570 571[[package]] 572name = "iana-time-zone-haiku" 573version = "0.1.2" 574source = "registry+https://github.com/rust-lang/crates.io-index" 575checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 576dependencies = [ 577 "cc", 578] 579 580[[package]] 581name = "icu_collections" 582version = "2.0.0" 583source = "registry+https://github.com/rust-lang/crates.io-index" 584checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" 585dependencies = [ 586 "displaydoc", 587 "potential_utf", 588 "yoke", 589 "zerofrom", 590 "zerovec", 591] 592 593[[package]] 594name = "icu_locale_core" 595version = "2.0.0" 596source = "registry+https://github.com/rust-lang/crates.io-index" 597checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" 598dependencies = [ 599 "displaydoc", 600 "litemap", 601 "tinystr", 602 "writeable", 603 "zerovec", 604] 605 606[[package]] 607name = "icu_normalizer" 608version = "2.0.0" 609source = "registry+https://github.com/rust-lang/crates.io-index" 610checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" 611dependencies = [ 612 "displaydoc", 613 "icu_collections", 614 "icu_normalizer_data", 615 "icu_properties", 616 "icu_provider", 617 "smallvec", 618 "zerovec", 619] 620 621[[package]] 622name = "icu_normalizer_data" 623version = "2.0.0" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" 626 627[[package]] 628name = "icu_properties" 629version = "2.0.1" 630source = "registry+https://github.com/rust-lang/crates.io-index" 631checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" 632dependencies = [ 633 "displaydoc", 634 "icu_collections", 635 "icu_locale_core", 636 "icu_properties_data", 637 "icu_provider", 638 "potential_utf", 639 "zerotrie", 640 "zerovec", 641] 642 643[[package]] 644name = "icu_properties_data" 645version = "2.0.1" 646source = "registry+https://github.com/rust-lang/crates.io-index" 647checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" 648 649[[package]] 650name = "icu_provider" 651version = "2.0.0" 652source = "registry+https://github.com/rust-lang/crates.io-index" 653checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" 654dependencies = [ 655 "displaydoc", 656 "icu_locale_core", 657 "stable_deref_trait", 658 "tinystr", 659 "writeable", 660 "yoke", 661 "zerofrom", 662 "zerotrie", 663 "zerovec", 664] 665 666[[package]] 667name = "ident_case" 668version = "1.0.1" 669source = "registry+https://github.com/rust-lang/crates.io-index" 670checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 671 672[[package]] 673name = "idna" 674version = "1.1.0" 675source = "registry+https://github.com/rust-lang/crates.io-index" 676checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 677dependencies = [ 678 "idna_adapter", 679 "smallvec", 680 "utf8_iter", 681] 682 683[[package]] 684name = "idna_adapter" 685version = "1.2.1" 686source = "registry+https://github.com/rust-lang/crates.io-index" 687checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 688dependencies = [ 689 "icu_normalizer", 690 "icu_properties", 691] 692 693[[package]] 694name = "indexmap" 695version = "1.9.3" 696source = "registry+https://github.com/rust-lang/crates.io-index" 697checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 698dependencies = [ 699 "autocfg", 700 "hashbrown 0.12.3", 701 "serde", 702] 703 704[[package]] 705name = "indexmap" 706version = "2.11.4" 707source = "registry+https://github.com/rust-lang/crates.io-index" 708checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" 709dependencies = [ 710 "equivalent", 711 "hashbrown 0.16.0", 712 "serde", 713 "serde_core", 714] 715 716[[package]] 717name = "indoc" 718version = "2.0.6" 719source = "registry+https://github.com/rust-lang/crates.io-index" 720checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd" 721 722[[package]] 723name = "ipld-core" 724version = "0.4.2" 725source = "registry+https://github.com/rust-lang/crates.io-index" 726checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db" 727dependencies = [ 728 "cid", 729 "serde", 730 "serde_bytes", 731] 732 733[[package]] 734name = "is_terminal_polyfill" 735version = "1.70.1" 736source = "registry+https://github.com/rust-lang/crates.io-index" 737checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 738 739[[package]] 740name = "itertools" 741version = "0.14.0" 742source = "registry+https://github.com/rust-lang/crates.io-index" 743checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 744dependencies = [ 745 "either", 746] 747 748[[package]] 749name = "itoa" 750version = "1.0.15" 751source = "registry+https://github.com/rust-lang/crates.io-index" 752checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 753 754[[package]] 755name = "jacquard" 756version = "0.1.0" 757dependencies = [ 758 "clap", 759 "jacquard-common", 760] 761 762[[package]] 763name = "jacquard-api" 764version = "0.1.0" 765dependencies = [ 766 "bytes", 767 "jacquard-common", 768 "jacquard-derive", 769 "miette", 770 "serde", 771 "thiserror 2.0.17", 772] 773 774[[package]] 775name = "jacquard-common" 776version = "0.1.0" 777dependencies = [ 778 "base64", 779 "bytes", 780 "chrono", 781 "cid", 782 "enum_dispatch", 783 "ipld-core", 784 "langtag", 785 "miette", 786 "multibase", 787 "multihash", 788 "num-traits", 789 "ouroboros", 790 "rand", 791 "regex", 792 "serde", 793 "serde_html_form", 794 "serde_json", 795 "serde_with", 796 "smol_str", 797 "thiserror 2.0.17", 798 "url", 799] 800 801[[package]] 802name = "jacquard-derive" 803version = "0.1.0" 804dependencies = [ 805 "heck 0.5.0", 806 "itertools", 807 "jacquard-common", 808 "jacquard-lexicon", 809 "prettyplease", 810 "proc-macro2", 811 "quote", 812 "serde", 813 "serde_json", 814 "serde_repr", 815 "serde_with", 816 "syn 2.0.106", 817] 818 819[[package]] 820name = "jacquard-lexicon" 821version = "0.1.0" 822dependencies = [ 823 "clap", 824 "heck 0.5.0", 825 "itertools", 826 "jacquard-common", 827 "miette", 828 "prettyplease", 829 "proc-macro2", 830 "quote", 831 "serde", 832 "serde_json", 833 "serde_repr", 834 "serde_with", 835 "syn 2.0.106", 836 "thiserror 2.0.17", 837] 838 839[[package]] 840name = "js-sys" 841version = "0.3.81" 842source = "registry+https://github.com/rust-lang/crates.io-index" 843checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305" 844dependencies = [ 845 "once_cell", 846 "wasm-bindgen", 847] 848 849[[package]] 850name = "langtag" 851version = "0.4.0" 852source = "registry+https://github.com/rust-lang/crates.io-index" 853checksum = "9ecb4c689a30e48ebeaa14237f34037e300dd072e6ad21a9ec72e810ff3c6600" 854dependencies = [ 855 "serde", 856 "static-regular-grammar", 857 "thiserror 1.0.69", 858] 859 860[[package]] 861name = "libc" 862version = "0.2.176" 863source = "registry+https://github.com/rust-lang/crates.io-index" 864checksum = "58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174" 865 866[[package]] 867name = "litemap" 868version = "0.8.0" 869source = "registry+https://github.com/rust-lang/crates.io-index" 870checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" 871 872[[package]] 873name = "log" 874version = "0.4.28" 875source = "registry+https://github.com/rust-lang/crates.io-index" 876checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" 877 878[[package]] 879name = "memchr" 880version = "2.7.6" 881source = "registry+https://github.com/rust-lang/crates.io-index" 882checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 883 884[[package]] 885name = "miette" 886version = "7.6.0" 887source = "registry+https://github.com/rust-lang/crates.io-index" 888checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7" 889dependencies = [ 890 "cfg-if", 891 "miette-derive", 892 "unicode-width", 893] 894 895[[package]] 896name = "miette-derive" 897version = "7.6.0" 898source = "registry+https://github.com/rust-lang/crates.io-index" 899checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b" 900dependencies = [ 901 "proc-macro2", 902 "quote", 903 "syn 2.0.106", 904] 905 906[[package]] 907name = "minimal-lexical" 908version = "0.2.1" 909source = "registry+https://github.com/rust-lang/crates.io-index" 910checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 911 912[[package]] 913name = "multibase" 914version = "0.9.1" 915source = "registry+https://github.com/rust-lang/crates.io-index" 916checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404" 917dependencies = [ 918 "base-x", 919 "data-encoding", 920 "data-encoding-macro", 921] 922 923[[package]] 924name = "multihash" 925version = "0.19.3" 926source = "registry+https://github.com/rust-lang/crates.io-index" 927checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" 928dependencies = [ 929 "core2", 930 "serde", 931 "unsigned-varint", 932] 933 934[[package]] 935name = "nom" 936version = "7.1.3" 937source = "registry+https://github.com/rust-lang/crates.io-index" 938checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 939dependencies = [ 940 "memchr", 941 "minimal-lexical", 942] 943 944[[package]] 945name = "num-conv" 946version = "0.1.0" 947source = "registry+https://github.com/rust-lang/crates.io-index" 948checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 949 950[[package]] 951name = "num-traits" 952version = "0.2.19" 953source = "registry+https://github.com/rust-lang/crates.io-index" 954checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 955dependencies = [ 956 "autocfg", 957] 958 959[[package]] 960name = "once_cell" 961version = "1.21.3" 962source = "registry+https://github.com/rust-lang/crates.io-index" 963checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 964 965[[package]] 966name = "once_cell_polyfill" 967version = "1.70.1" 968source = "registry+https://github.com/rust-lang/crates.io-index" 969checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" 970 971[[package]] 972name = "ouroboros" 973version = "0.18.5" 974source = "registry+https://github.com/rust-lang/crates.io-index" 975checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59" 976dependencies = [ 977 "aliasable", 978 "ouroboros_macro", 979 "static_assertions", 980] 981 982[[package]] 983name = "ouroboros_macro" 984version = "0.18.5" 985source = "registry+https://github.com/rust-lang/crates.io-index" 986checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0" 987dependencies = [ 988 "heck 0.4.1", 989 "proc-macro2", 990 "proc-macro2-diagnostics", 991 "quote", 992 "syn 2.0.106", 993] 994 995[[package]] 996name = "percent-encoding" 997version = "2.3.2" 998source = "registry+https://github.com/rust-lang/crates.io-index" 999checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 1000 1001[[package]] 1002name = "potential_utf" 1003version = "0.1.3" 1004source = "registry+https://github.com/rust-lang/crates.io-index" 1005checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a" 1006dependencies = [ 1007 "zerovec", 1008] 1009 1010[[package]] 1011name = "powerfmt" 1012version = "0.2.0" 1013source = "registry+https://github.com/rust-lang/crates.io-index" 1014checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1015 1016[[package]] 1017name = "ppv-lite86" 1018version = "0.2.21" 1019source = "registry+https://github.com/rust-lang/crates.io-index" 1020checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 1021dependencies = [ 1022 "zerocopy", 1023] 1024 1025[[package]] 1026name = "prettyplease" 1027version = "0.2.37" 1028source = "registry+https://github.com/rust-lang/crates.io-index" 1029checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" 1030dependencies = [ 1031 "proc-macro2", 1032 "syn 2.0.106", 1033] 1034 1035[[package]] 1036name = "proc-macro-error" 1037version = "1.0.4" 1038source = "registry+https://github.com/rust-lang/crates.io-index" 1039checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1040dependencies = [ 1041 "proc-macro-error-attr", 1042 "proc-macro2", 1043 "quote", 1044 "syn 1.0.109", 1045 "version_check", 1046] 1047 1048[[package]] 1049name = "proc-macro-error-attr" 1050version = "1.0.4" 1051source = "registry+https://github.com/rust-lang/crates.io-index" 1052checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1053dependencies = [ 1054 "proc-macro2", 1055 "quote", 1056 "version_check", 1057] 1058 1059[[package]] 1060name = "proc-macro2" 1061version = "1.0.101" 1062source = "registry+https://github.com/rust-lang/crates.io-index" 1063checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" 1064dependencies = [ 1065 "unicode-ident", 1066] 1067 1068[[package]] 1069name = "proc-macro2-diagnostics" 1070version = "0.10.1" 1071source = "registry+https://github.com/rust-lang/crates.io-index" 1072checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" 1073dependencies = [ 1074 "proc-macro2", 1075 "quote", 1076 "syn 2.0.106", 1077 "version_check", 1078 "yansi", 1079] 1080 1081[[package]] 1082name = "quote" 1083version = "1.0.41" 1084source = "registry+https://github.com/rust-lang/crates.io-index" 1085checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1" 1086dependencies = [ 1087 "proc-macro2", 1088] 1089 1090[[package]] 1091name = "r-efi" 1092version = "5.3.0" 1093source = "registry+https://github.com/rust-lang/crates.io-index" 1094checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 1095 1096[[package]] 1097name = "rand" 1098version = "0.9.2" 1099source = "registry+https://github.com/rust-lang/crates.io-index" 1100checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 1101dependencies = [ 1102 "rand_chacha", 1103 "rand_core", 1104] 1105 1106[[package]] 1107name = "rand_chacha" 1108version = "0.9.0" 1109source = "registry+https://github.com/rust-lang/crates.io-index" 1110checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 1111dependencies = [ 1112 "ppv-lite86", 1113 "rand_core", 1114] 1115 1116[[package]] 1117name = "rand_core" 1118version = "0.9.3" 1119source = "registry+https://github.com/rust-lang/crates.io-index" 1120checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 1121dependencies = [ 1122 "getrandom", 1123] 1124 1125[[package]] 1126name = "range-traits" 1127version = "0.3.2" 1128source = "registry+https://github.com/rust-lang/crates.io-index" 1129checksum = "d20581732dd76fa913c7dff1a2412b714afe3573e94d41c34719de73337cc8ab" 1130 1131[[package]] 1132name = "ref-cast" 1133version = "1.0.24" 1134source = "registry+https://github.com/rust-lang/crates.io-index" 1135checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf" 1136dependencies = [ 1137 "ref-cast-impl", 1138] 1139 1140[[package]] 1141name = "ref-cast-impl" 1142version = "1.0.24" 1143source = "registry+https://github.com/rust-lang/crates.io-index" 1144checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7" 1145dependencies = [ 1146 "proc-macro2", 1147 "quote", 1148 "syn 2.0.106", 1149] 1150 1151[[package]] 1152name = "regex" 1153version = "1.11.3" 1154source = "registry+https://github.com/rust-lang/crates.io-index" 1155checksum = "8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c" 1156dependencies = [ 1157 "aho-corasick", 1158 "memchr", 1159 "regex-automata", 1160 "regex-syntax", 1161] 1162 1163[[package]] 1164name = "regex-automata" 1165version = "0.4.11" 1166source = "registry+https://github.com/rust-lang/crates.io-index" 1167checksum = "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad" 1168dependencies = [ 1169 "aho-corasick", 1170 "memchr", 1171 "regex-syntax", 1172] 1173 1174[[package]] 1175name = "regex-syntax" 1176version = "0.8.6" 1177source = "registry+https://github.com/rust-lang/crates.io-index" 1178checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" 1179 1180[[package]] 1181name = "rustversion" 1182version = "1.0.22" 1183source = "registry+https://github.com/rust-lang/crates.io-index" 1184checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 1185 1186[[package]] 1187name = "ryu" 1188version = "1.0.20" 1189source = "registry+https://github.com/rust-lang/crates.io-index" 1190checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 1191 1192[[package]] 1193name = "schemars" 1194version = "0.9.0" 1195source = "registry+https://github.com/rust-lang/crates.io-index" 1196checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" 1197dependencies = [ 1198 "dyn-clone", 1199 "ref-cast", 1200 "serde", 1201 "serde_json", 1202] 1203 1204[[package]] 1205name = "schemars" 1206version = "1.0.4" 1207source = "registry+https://github.com/rust-lang/crates.io-index" 1208checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0" 1209dependencies = [ 1210 "dyn-clone", 1211 "ref-cast", 1212 "serde", 1213 "serde_json", 1214] 1215 1216[[package]] 1217name = "serde" 1218version = "1.0.228" 1219source = "registry+https://github.com/rust-lang/crates.io-index" 1220checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 1221dependencies = [ 1222 "serde_core", 1223 "serde_derive", 1224] 1225 1226[[package]] 1227name = "serde_bytes" 1228version = "0.11.17" 1229source = "registry+https://github.com/rust-lang/crates.io-index" 1230checksum = "8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96" 1231dependencies = [ 1232 "serde", 1233] 1234 1235[[package]] 1236name = "serde_core" 1237version = "1.0.228" 1238source = "registry+https://github.com/rust-lang/crates.io-index" 1239checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 1240dependencies = [ 1241 "serde_derive", 1242] 1243 1244[[package]] 1245name = "serde_derive" 1246version = "1.0.228" 1247source = "registry+https://github.com/rust-lang/crates.io-index" 1248checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 1249dependencies = [ 1250 "proc-macro2", 1251 "quote", 1252 "syn 2.0.106", 1253] 1254 1255[[package]] 1256name = "serde_html_form" 1257version = "0.2.8" 1258source = "registry+https://github.com/rust-lang/crates.io-index" 1259checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f" 1260dependencies = [ 1261 "form_urlencoded", 1262 "indexmap 2.11.4", 1263 "itoa", 1264 "ryu", 1265 "serde_core", 1266] 1267 1268[[package]] 1269name = "serde_json" 1270version = "1.0.145" 1271source = "registry+https://github.com/rust-lang/crates.io-index" 1272checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" 1273dependencies = [ 1274 "itoa", 1275 "memchr", 1276 "ryu", 1277 "serde", 1278 "serde_core", 1279] 1280 1281[[package]] 1282name = "serde_repr" 1283version = "0.1.20" 1284source = "registry+https://github.com/rust-lang/crates.io-index" 1285checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 1286dependencies = [ 1287 "proc-macro2", 1288 "quote", 1289 "syn 2.0.106", 1290] 1291 1292[[package]] 1293name = "serde_with" 1294version = "3.14.1" 1295source = "registry+https://github.com/rust-lang/crates.io-index" 1296checksum = "c522100790450cf78eeac1507263d0a350d4d5b30df0c8e1fe051a10c22b376e" 1297dependencies = [ 1298 "base64", 1299 "chrono", 1300 "hex", 1301 "indexmap 1.9.3", 1302 "indexmap 2.11.4", 1303 "schemars 0.9.0", 1304 "schemars 1.0.4", 1305 "serde", 1306 "serde_derive", 1307 "serde_json", 1308 "serde_with_macros", 1309 "time", 1310] 1311 1312[[package]] 1313name = "serde_with_macros" 1314version = "3.14.1" 1315source = "registry+https://github.com/rust-lang/crates.io-index" 1316checksum = "327ada00f7d64abaac1e55a6911e90cf665aa051b9a561c7006c157f4633135e" 1317dependencies = [ 1318 "darling", 1319 "proc-macro2", 1320 "quote", 1321 "syn 2.0.106", 1322] 1323 1324[[package]] 1325name = "sha2" 1326version = "0.10.9" 1327source = "registry+https://github.com/rust-lang/crates.io-index" 1328checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 1329dependencies = [ 1330 "cfg-if", 1331 "cpufeatures", 1332 "digest", 1333] 1334 1335[[package]] 1336name = "shlex" 1337version = "1.3.0" 1338source = "registry+https://github.com/rust-lang/crates.io-index" 1339checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1340 1341[[package]] 1342name = "slab" 1343version = "0.4.11" 1344source = "registry+https://github.com/rust-lang/crates.io-index" 1345checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 1346 1347[[package]] 1348name = "smallvec" 1349version = "1.15.1" 1350source = "registry+https://github.com/rust-lang/crates.io-index" 1351checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 1352 1353[[package]] 1354name = "smol_str" 1355version = "0.3.2" 1356source = "registry+https://github.com/rust-lang/crates.io-index" 1357checksum = "9676b89cd56310a87b93dec47b11af744f34d5fc9f367b829474eec0a891350d" 1358dependencies = [ 1359 "borsh", 1360 "serde", 1361] 1362 1363[[package]] 1364name = "stable_deref_trait" 1365version = "1.2.0" 1366source = "registry+https://github.com/rust-lang/crates.io-index" 1367checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 1368 1369[[package]] 1370name = "static-regular-grammar" 1371version = "2.0.2" 1372source = "registry+https://github.com/rust-lang/crates.io-index" 1373checksum = "4f4a6c40247579acfbb138c3cd7de3dab113ab4ac6227f1b7de7d626ee667957" 1374dependencies = [ 1375 "abnf", 1376 "btree-range-map", 1377 "ciborium", 1378 "hex_fmt", 1379 "indoc", 1380 "proc-macro-error", 1381 "proc-macro2", 1382 "quote", 1383 "serde", 1384 "sha2", 1385 "syn 2.0.106", 1386 "thiserror 1.0.69", 1387] 1388 1389[[package]] 1390name = "static_assertions" 1391version = "1.1.0" 1392source = "registry+https://github.com/rust-lang/crates.io-index" 1393checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 1394 1395[[package]] 1396name = "strsim" 1397version = "0.11.1" 1398source = "registry+https://github.com/rust-lang/crates.io-index" 1399checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 1400 1401[[package]] 1402name = "syn" 1403version = "1.0.109" 1404source = "registry+https://github.com/rust-lang/crates.io-index" 1405checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1406dependencies = [ 1407 "proc-macro2", 1408 "unicode-ident", 1409] 1410 1411[[package]] 1412name = "syn" 1413version = "2.0.106" 1414source = "registry+https://github.com/rust-lang/crates.io-index" 1415checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" 1416dependencies = [ 1417 "proc-macro2", 1418 "quote", 1419 "unicode-ident", 1420] 1421 1422[[package]] 1423name = "synstructure" 1424version = "0.13.2" 1425source = "registry+https://github.com/rust-lang/crates.io-index" 1426checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 1427dependencies = [ 1428 "proc-macro2", 1429 "quote", 1430 "syn 2.0.106", 1431] 1432 1433[[package]] 1434name = "thiserror" 1435version = "1.0.69" 1436source = "registry+https://github.com/rust-lang/crates.io-index" 1437checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 1438dependencies = [ 1439 "thiserror-impl 1.0.69", 1440] 1441 1442[[package]] 1443name = "thiserror" 1444version = "2.0.17" 1445source = "registry+https://github.com/rust-lang/crates.io-index" 1446checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 1447dependencies = [ 1448 "thiserror-impl 2.0.17", 1449] 1450 1451[[package]] 1452name = "thiserror-impl" 1453version = "1.0.69" 1454source = "registry+https://github.com/rust-lang/crates.io-index" 1455checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 1456dependencies = [ 1457 "proc-macro2", 1458 "quote", 1459 "syn 2.0.106", 1460] 1461 1462[[package]] 1463name = "thiserror-impl" 1464version = "2.0.17" 1465source = "registry+https://github.com/rust-lang/crates.io-index" 1466checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 1467dependencies = [ 1468 "proc-macro2", 1469 "quote", 1470 "syn 2.0.106", 1471] 1472 1473[[package]] 1474name = "time" 1475version = "0.3.44" 1476source = "registry+https://github.com/rust-lang/crates.io-index" 1477checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" 1478dependencies = [ 1479 "deranged", 1480 "itoa", 1481 "num-conv", 1482 "powerfmt", 1483 "serde", 1484 "time-core", 1485 "time-macros", 1486] 1487 1488[[package]] 1489name = "time-core" 1490version = "0.1.6" 1491source = "registry+https://github.com/rust-lang/crates.io-index" 1492checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" 1493 1494[[package]] 1495name = "time-macros" 1496version = "0.2.24" 1497source = "registry+https://github.com/rust-lang/crates.io-index" 1498checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" 1499dependencies = [ 1500 "num-conv", 1501 "time-core", 1502] 1503 1504[[package]] 1505name = "tinystr" 1506version = "0.8.1" 1507source = "registry+https://github.com/rust-lang/crates.io-index" 1508checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" 1509dependencies = [ 1510 "displaydoc", 1511 "zerovec", 1512] 1513 1514[[package]] 1515name = "typenum" 1516version = "1.18.0" 1517source = "registry+https://github.com/rust-lang/crates.io-index" 1518checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" 1519 1520[[package]] 1521name = "unicode-ident" 1522version = "1.0.19" 1523source = "registry+https://github.com/rust-lang/crates.io-index" 1524checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" 1525 1526[[package]] 1527name = "unicode-width" 1528version = "0.1.14" 1529source = "registry+https://github.com/rust-lang/crates.io-index" 1530checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 1531 1532[[package]] 1533name = "unsigned-varint" 1534version = "0.8.0" 1535source = "registry+https://github.com/rust-lang/crates.io-index" 1536checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 1537 1538[[package]] 1539name = "url" 1540version = "2.5.7" 1541source = "registry+https://github.com/rust-lang/crates.io-index" 1542checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" 1543dependencies = [ 1544 "form_urlencoded", 1545 "idna", 1546 "percent-encoding", 1547 "serde", 1548] 1549 1550[[package]] 1551name = "utf8_iter" 1552version = "1.0.4" 1553source = "registry+https://github.com/rust-lang/crates.io-index" 1554checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 1555 1556[[package]] 1557name = "utf8parse" 1558version = "0.2.2" 1559source = "registry+https://github.com/rust-lang/crates.io-index" 1560checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 1561 1562[[package]] 1563name = "version_check" 1564version = "0.9.5" 1565source = "registry+https://github.com/rust-lang/crates.io-index" 1566checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 1567 1568[[package]] 1569name = "wasi" 1570version = "0.14.7+wasi-0.2.4" 1571source = "registry+https://github.com/rust-lang/crates.io-index" 1572checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c" 1573dependencies = [ 1574 "wasip2", 1575] 1576 1577[[package]] 1578name = "wasip2" 1579version = "1.0.1+wasi-0.2.4" 1580source = "registry+https://github.com/rust-lang/crates.io-index" 1581checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 1582dependencies = [ 1583 "wit-bindgen", 1584] 1585 1586[[package]] 1587name = "wasm-bindgen" 1588version = "0.2.104" 1589source = "registry+https://github.com/rust-lang/crates.io-index" 1590checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d" 1591dependencies = [ 1592 "cfg-if", 1593 "once_cell", 1594 "rustversion", 1595 "wasm-bindgen-macro", 1596 "wasm-bindgen-shared", 1597] 1598 1599[[package]] 1600name = "wasm-bindgen-backend" 1601version = "0.2.104" 1602source = "registry+https://github.com/rust-lang/crates.io-index" 1603checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19" 1604dependencies = [ 1605 "bumpalo", 1606 "log", 1607 "proc-macro2", 1608 "quote", 1609 "syn 2.0.106", 1610 "wasm-bindgen-shared", 1611] 1612 1613[[package]] 1614name = "wasm-bindgen-macro" 1615version = "0.2.104" 1616source = "registry+https://github.com/rust-lang/crates.io-index" 1617checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119" 1618dependencies = [ 1619 "quote", 1620 "wasm-bindgen-macro-support", 1621] 1622 1623[[package]] 1624name = "wasm-bindgen-macro-support" 1625version = "0.2.104" 1626source = "registry+https://github.com/rust-lang/crates.io-index" 1627checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7" 1628dependencies = [ 1629 "proc-macro2", 1630 "quote", 1631 "syn 2.0.106", 1632 "wasm-bindgen-backend", 1633 "wasm-bindgen-shared", 1634] 1635 1636[[package]] 1637name = "wasm-bindgen-shared" 1638version = "0.2.104" 1639source = "registry+https://github.com/rust-lang/crates.io-index" 1640checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1" 1641dependencies = [ 1642 "unicode-ident", 1643] 1644 1645[[package]] 1646name = "windows-core" 1647version = "0.62.1" 1648source = "registry+https://github.com/rust-lang/crates.io-index" 1649checksum = "6844ee5416b285084d3d3fffd743b925a6c9385455f64f6d4fa3031c4c2749a9" 1650dependencies = [ 1651 "windows-implement", 1652 "windows-interface", 1653 "windows-link", 1654 "windows-result", 1655 "windows-strings", 1656] 1657 1658[[package]] 1659name = "windows-implement" 1660version = "0.60.1" 1661source = "registry+https://github.com/rust-lang/crates.io-index" 1662checksum = "edb307e42a74fb6de9bf3a02d9712678b22399c87e6fa869d6dfcd8c1b7754e0" 1663dependencies = [ 1664 "proc-macro2", 1665 "quote", 1666 "syn 2.0.106", 1667] 1668 1669[[package]] 1670name = "windows-interface" 1671version = "0.59.2" 1672source = "registry+https://github.com/rust-lang/crates.io-index" 1673checksum = "c0abd1ddbc6964ac14db11c7213d6532ef34bd9aa042c2e5935f59d7908b46a5" 1674dependencies = [ 1675 "proc-macro2", 1676 "quote", 1677 "syn 2.0.106", 1678] 1679 1680[[package]] 1681name = "windows-link" 1682version = "0.2.0" 1683source = "registry+https://github.com/rust-lang/crates.io-index" 1684checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65" 1685 1686[[package]] 1687name = "windows-result" 1688version = "0.4.0" 1689source = "registry+https://github.com/rust-lang/crates.io-index" 1690checksum = "7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f" 1691dependencies = [ 1692 "windows-link", 1693] 1694 1695[[package]] 1696name = "windows-strings" 1697version = "0.5.0" 1698source = "registry+https://github.com/rust-lang/crates.io-index" 1699checksum = "7218c655a553b0bed4426cf54b20d7ba363ef543b52d515b3e48d7fd55318dda" 1700dependencies = [ 1701 "windows-link", 1702] 1703 1704[[package]] 1705name = "windows-sys" 1706version = "0.60.2" 1707source = "registry+https://github.com/rust-lang/crates.io-index" 1708checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 1709dependencies = [ 1710 "windows-targets", 1711] 1712 1713[[package]] 1714name = "windows-targets" 1715version = "0.53.4" 1716source = "registry+https://github.com/rust-lang/crates.io-index" 1717checksum = "2d42b7b7f66d2a06854650af09cfdf8713e427a439c97ad65a6375318033ac4b" 1718dependencies = [ 1719 "windows-link", 1720 "windows_aarch64_gnullvm", 1721 "windows_aarch64_msvc", 1722 "windows_i686_gnu", 1723 "windows_i686_gnullvm", 1724 "windows_i686_msvc", 1725 "windows_x86_64_gnu", 1726 "windows_x86_64_gnullvm", 1727 "windows_x86_64_msvc", 1728] 1729 1730[[package]] 1731name = "windows_aarch64_gnullvm" 1732version = "0.53.0" 1733source = "registry+https://github.com/rust-lang/crates.io-index" 1734checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 1735 1736[[package]] 1737name = "windows_aarch64_msvc" 1738version = "0.53.0" 1739source = "registry+https://github.com/rust-lang/crates.io-index" 1740checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 1741 1742[[package]] 1743name = "windows_i686_gnu" 1744version = "0.53.0" 1745source = "registry+https://github.com/rust-lang/crates.io-index" 1746checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 1747 1748[[package]] 1749name = "windows_i686_gnullvm" 1750version = "0.53.0" 1751source = "registry+https://github.com/rust-lang/crates.io-index" 1752checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 1753 1754[[package]] 1755name = "windows_i686_msvc" 1756version = "0.53.0" 1757source = "registry+https://github.com/rust-lang/crates.io-index" 1758checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 1759 1760[[package]] 1761name = "windows_x86_64_gnu" 1762version = "0.53.0" 1763source = "registry+https://github.com/rust-lang/crates.io-index" 1764checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 1765 1766[[package]] 1767name = "windows_x86_64_gnullvm" 1768version = "0.53.0" 1769source = "registry+https://github.com/rust-lang/crates.io-index" 1770checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 1771 1772[[package]] 1773name = "windows_x86_64_msvc" 1774version = "0.53.0" 1775source = "registry+https://github.com/rust-lang/crates.io-index" 1776checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 1777 1778[[package]] 1779name = "wit-bindgen" 1780version = "0.46.0" 1781source = "registry+https://github.com/rust-lang/crates.io-index" 1782checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 1783 1784[[package]] 1785name = "writeable" 1786version = "0.6.1" 1787source = "registry+https://github.com/rust-lang/crates.io-index" 1788checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" 1789 1790[[package]] 1791name = "yansi" 1792version = "1.0.1" 1793source = "registry+https://github.com/rust-lang/crates.io-index" 1794checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 1795 1796[[package]] 1797name = "yoke" 1798version = "0.8.0" 1799source = "registry+https://github.com/rust-lang/crates.io-index" 1800checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" 1801dependencies = [ 1802 "serde", 1803 "stable_deref_trait", 1804 "yoke-derive", 1805 "zerofrom", 1806] 1807 1808[[package]] 1809name = "yoke-derive" 1810version = "0.8.0" 1811source = "registry+https://github.com/rust-lang/crates.io-index" 1812checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" 1813dependencies = [ 1814 "proc-macro2", 1815 "quote", 1816 "syn 2.0.106", 1817 "synstructure", 1818] 1819 1820[[package]] 1821name = "zerocopy" 1822version = "0.8.27" 1823source = "registry+https://github.com/rust-lang/crates.io-index" 1824checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" 1825dependencies = [ 1826 "zerocopy-derive", 1827] 1828 1829[[package]] 1830name = "zerocopy-derive" 1831version = "0.8.27" 1832source = "registry+https://github.com/rust-lang/crates.io-index" 1833checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" 1834dependencies = [ 1835 "proc-macro2", 1836 "quote", 1837 "syn 2.0.106", 1838] 1839 1840[[package]] 1841name = "zerofrom" 1842version = "0.1.6" 1843source = "registry+https://github.com/rust-lang/crates.io-index" 1844checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 1845dependencies = [ 1846 "zerofrom-derive", 1847] 1848 1849[[package]] 1850name = "zerofrom-derive" 1851version = "0.1.6" 1852source = "registry+https://github.com/rust-lang/crates.io-index" 1853checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 1854dependencies = [ 1855 "proc-macro2", 1856 "quote", 1857 "syn 2.0.106", 1858 "synstructure", 1859] 1860 1861[[package]] 1862name = "zerotrie" 1863version = "0.2.2" 1864source = "registry+https://github.com/rust-lang/crates.io-index" 1865checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" 1866dependencies = [ 1867 "displaydoc", 1868 "yoke", 1869 "zerofrom", 1870] 1871 1872[[package]] 1873name = "zerovec" 1874version = "0.11.4" 1875source = "registry+https://github.com/rust-lang/crates.io-index" 1876checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" 1877dependencies = [ 1878 "yoke", 1879 "zerofrom", 1880 "zerovec-derive", 1881] 1882 1883[[package]] 1884name = "zerovec-derive" 1885version = "0.11.1" 1886source = "registry+https://github.com/rust-lang/crates.io-index" 1887checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" 1888dependencies = [ 1889 "proc-macro2", 1890 "quote", 1891 "syn 2.0.106", 1892]