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