[WIP] A (somewhat barebones) atproto app for creating custom sites without hosting!
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

at f58a29eb930f1998bfd0931b7a656c928375d5a9 4154 lines 104 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "abnf" 7version = "0.13.0" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "087113bd50d9adce24850eed5d0476c7d199d532fce8fab5173650331e09033a" 10dependencies = [ 11 "abnf-core", 12 "nom", 13] 14 15[[package]] 16name = "abnf-core" 17version = "0.5.0" 18source = "registry+https://github.com/rust-lang/crates.io-index" 19checksum = "c44e09c43ae1c368fb91a03a566472d0087c26cf7e1b9e8e289c14ede681dd7d" 20dependencies = [ 21 "nom", 22] 23 24[[package]] 25name = "adler2" 26version = "2.0.1" 27source = "registry+https://github.com/rust-lang/crates.io-index" 28checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 29 30[[package]] 31name = "adler32" 32version = "1.2.0" 33source = "registry+https://github.com/rust-lang/crates.io-index" 34checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 35 36[[package]] 37name = "aho-corasick" 38version = "1.1.3" 39source = "registry+https://github.com/rust-lang/crates.io-index" 40checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 41dependencies = [ 42 "memchr", 43] 44 45[[package]] 46name = "aliasable" 47version = "0.1.3" 48source = "registry+https://github.com/rust-lang/crates.io-index" 49checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" 50 51[[package]] 52name = "alloc-no-stdlib" 53version = "2.0.4" 54source = "registry+https://github.com/rust-lang/crates.io-index" 55checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 56 57[[package]] 58name = "alloc-stdlib" 59version = "0.2.2" 60source = "registry+https://github.com/rust-lang/crates.io-index" 61checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 62dependencies = [ 63 "alloc-no-stdlib", 64] 65 66[[package]] 67name = "android_system_properties" 68version = "0.1.5" 69source = "registry+https://github.com/rust-lang/crates.io-index" 70checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 71dependencies = [ 72 "libc", 73] 74 75[[package]] 76name = "anstream" 77version = "0.6.21" 78source = "registry+https://github.com/rust-lang/crates.io-index" 79checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" 80dependencies = [ 81 "anstyle", 82 "anstyle-parse", 83 "anstyle-query", 84 "anstyle-wincon", 85 "colorchoice", 86 "is_terminal_polyfill", 87 "utf8parse", 88] 89 90[[package]] 91name = "anstyle" 92version = "1.0.13" 93source = "registry+https://github.com/rust-lang/crates.io-index" 94checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" 95 96[[package]] 97name = "anstyle-parse" 98version = "0.2.7" 99source = "registry+https://github.com/rust-lang/crates.io-index" 100checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 101dependencies = [ 102 "utf8parse", 103] 104 105[[package]] 106name = "anstyle-query" 107version = "1.1.4" 108source = "registry+https://github.com/rust-lang/crates.io-index" 109checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" 110dependencies = [ 111 "windows-sys 0.60.2", 112] 113 114[[package]] 115name = "anstyle-wincon" 116version = "3.0.10" 117source = "registry+https://github.com/rust-lang/crates.io-index" 118checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" 119dependencies = [ 120 "anstyle", 121 "once_cell_polyfill", 122 "windows-sys 0.60.2", 123] 124 125[[package]] 126name = "ascii" 127version = "1.1.0" 128source = "registry+https://github.com/rust-lang/crates.io-index" 129checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16" 130 131[[package]] 132name = "async-compression" 133version = "0.4.32" 134source = "registry+https://github.com/rust-lang/crates.io-index" 135checksum = "5a89bce6054c720275ac2432fbba080a66a2106a44a1b804553930ca6909f4e0" 136dependencies = [ 137 "compression-codecs", 138 "compression-core", 139 "futures-core", 140 "pin-project-lite", 141 "tokio", 142] 143 144[[package]] 145name = "async-trait" 146version = "0.1.89" 147source = "registry+https://github.com/rust-lang/crates.io-index" 148checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 149dependencies = [ 150 "proc-macro2", 151 "quote", 152 "syn 2.0.106", 153] 154 155[[package]] 156name = "atcities-upload" 157version = "0.1.0" 158dependencies = [ 159 "clap", 160 "ignore", 161 "jacquard", 162 "mime_guess", 163 "regex", 164 "reqwest", 165 "tokio", 166] 167 168[[package]] 169name = "atomic-waker" 170version = "1.1.2" 171source = "registry+https://github.com/rust-lang/crates.io-index" 172checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 173 174[[package]] 175name = "autocfg" 176version = "1.5.0" 177source = "registry+https://github.com/rust-lang/crates.io-index" 178checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 179 180[[package]] 181name = "base-x" 182version = "0.2.11" 183source = "registry+https://github.com/rust-lang/crates.io-index" 184checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 185 186[[package]] 187name = "base16ct" 188version = "0.2.0" 189source = "registry+https://github.com/rust-lang/crates.io-index" 190checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 191 192[[package]] 193name = "base256emoji" 194version = "1.0.2" 195source = "registry+https://github.com/rust-lang/crates.io-index" 196checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c" 197dependencies = [ 198 "const-str", 199 "match-lookup", 200] 201 202[[package]] 203name = "base64" 204version = "0.13.1" 205source = "registry+https://github.com/rust-lang/crates.io-index" 206checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 207 208[[package]] 209name = "base64" 210version = "0.22.1" 211source = "registry+https://github.com/rust-lang/crates.io-index" 212checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 213 214[[package]] 215name = "base64ct" 216version = "1.8.0" 217source = "registry+https://github.com/rust-lang/crates.io-index" 218checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" 219 220[[package]] 221name = "bitflags" 222version = "2.9.4" 223source = "registry+https://github.com/rust-lang/crates.io-index" 224checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" 225 226[[package]] 227name = "block-buffer" 228version = "0.10.4" 229source = "registry+https://github.com/rust-lang/crates.io-index" 230checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 231dependencies = [ 232 "generic-array", 233] 234 235[[package]] 236name = "bon" 237version = "3.8.1" 238source = "registry+https://github.com/rust-lang/crates.io-index" 239checksum = "ebeb9aaf9329dff6ceb65c689ca3db33dbf15f324909c60e4e5eef5701ce31b1" 240dependencies = [ 241 "bon-macros", 242 "rustversion", 243] 244 245[[package]] 246name = "bon-macros" 247version = "3.8.1" 248source = "registry+https://github.com/rust-lang/crates.io-index" 249checksum = "77e9d642a7e3a318e37c2c9427b5a6a48aa1ad55dcd986f3034ab2239045a645" 250dependencies = [ 251 "darling", 252 "ident_case", 253 "prettyplease", 254 "proc-macro2", 255 "quote", 256 "rustversion", 257 "syn 2.0.106", 258] 259 260[[package]] 261name = "borsh" 262version = "1.5.7" 263source = "registry+https://github.com/rust-lang/crates.io-index" 264checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce" 265dependencies = [ 266 "cfg_aliases", 267] 268 269[[package]] 270name = "brotli" 271version = "3.5.0" 272source = "registry+https://github.com/rust-lang/crates.io-index" 273checksum = "d640d25bc63c50fb1f0b545ffd80207d2e10a4c965530809b40ba3386825c391" 274dependencies = [ 275 "alloc-no-stdlib", 276 "alloc-stdlib", 277 "brotli-decompressor", 278] 279 280[[package]] 281name = "brotli-decompressor" 282version = "2.5.1" 283source = "registry+https://github.com/rust-lang/crates.io-index" 284checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f" 285dependencies = [ 286 "alloc-no-stdlib", 287 "alloc-stdlib", 288] 289 290[[package]] 291name = "bstr" 292version = "1.12.0" 293source = "registry+https://github.com/rust-lang/crates.io-index" 294checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4" 295dependencies = [ 296 "memchr", 297 "serde", 298] 299 300[[package]] 301name = "btree-range-map" 302version = "0.7.2" 303source = "registry+https://github.com/rust-lang/crates.io-index" 304checksum = "1be5c9672446d3800bcbcaabaeba121fe22f1fb25700c4562b22faf76d377c33" 305dependencies = [ 306 "btree-slab", 307 "cc-traits", 308 "range-traits", 309 "serde", 310 "slab", 311] 312 313[[package]] 314name = "btree-slab" 315version = "0.6.1" 316source = "registry+https://github.com/rust-lang/crates.io-index" 317checksum = "7a2b56d3029f075c4fa892428a098425b86cef5c89ae54073137ece416aef13c" 318dependencies = [ 319 "cc-traits", 320 "slab", 321 "smallvec", 322] 323 324[[package]] 325name = "buf_redux" 326version = "0.8.4" 327source = "registry+https://github.com/rust-lang/crates.io-index" 328checksum = "b953a6887648bb07a535631f2bc00fbdb2a2216f135552cb3f534ed136b9c07f" 329dependencies = [ 330 "memchr", 331 "safemem", 332] 333 334[[package]] 335name = "bumpalo" 336version = "3.19.0" 337source = "registry+https://github.com/rust-lang/crates.io-index" 338checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 339 340[[package]] 341name = "byteorder" 342version = "1.5.0" 343source = "registry+https://github.com/rust-lang/crates.io-index" 344checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 345 346[[package]] 347name = "bytes" 348version = "1.10.1" 349source = "registry+https://github.com/rust-lang/crates.io-index" 350checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 351dependencies = [ 352 "serde", 353] 354 355[[package]] 356name = "cbor4ii" 357version = "0.2.14" 358source = "registry+https://github.com/rust-lang/crates.io-index" 359checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4" 360dependencies = [ 361 "serde", 362] 363 364[[package]] 365name = "cc" 366version = "1.2.41" 367source = "registry+https://github.com/rust-lang/crates.io-index" 368checksum = "ac9fe6cdbb24b6ade63616c0a0688e45bb56732262c158df3c0c4bea4ca47cb7" 369dependencies = [ 370 "find-msvc-tools", 371 "shlex", 372] 373 374[[package]] 375name = "cc-traits" 376version = "2.0.0" 377source = "registry+https://github.com/rust-lang/crates.io-index" 378checksum = "060303ef31ef4a522737e1b1ab68c67916f2a787bb2f4f54f383279adba962b5" 379dependencies = [ 380 "slab", 381] 382 383[[package]] 384name = "cesu8" 385version = "1.1.0" 386source = "registry+https://github.com/rust-lang/crates.io-index" 387checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 388 389[[package]] 390name = "cfg-if" 391version = "1.0.4" 392source = "registry+https://github.com/rust-lang/crates.io-index" 393checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 394 395[[package]] 396name = "cfg_aliases" 397version = "0.2.1" 398source = "registry+https://github.com/rust-lang/crates.io-index" 399checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 400 401[[package]] 402name = "chrono" 403version = "0.4.42" 404source = "registry+https://github.com/rust-lang/crates.io-index" 405checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" 406dependencies = [ 407 "iana-time-zone", 408 "js-sys", 409 "num-traits", 410 "wasm-bindgen", 411 "windows-link 0.2.1", 412] 413 414[[package]] 415name = "chunked_transfer" 416version = "1.5.0" 417source = "registry+https://github.com/rust-lang/crates.io-index" 418checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901" 419 420[[package]] 421name = "ciborium" 422version = "0.2.2" 423source = "registry+https://github.com/rust-lang/crates.io-index" 424checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 425dependencies = [ 426 "ciborium-io", 427 "ciborium-ll", 428 "serde", 429] 430 431[[package]] 432name = "ciborium-io" 433version = "0.2.2" 434source = "registry+https://github.com/rust-lang/crates.io-index" 435checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 436 437[[package]] 438name = "ciborium-ll" 439version = "0.2.2" 440source = "registry+https://github.com/rust-lang/crates.io-index" 441checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 442dependencies = [ 443 "ciborium-io", 444 "half", 445] 446 447[[package]] 448name = "cid" 449version = "0.11.1" 450source = "registry+https://github.com/rust-lang/crates.io-index" 451checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" 452dependencies = [ 453 "core2", 454 "multibase", 455 "multihash", 456 "serde", 457 "serde_bytes", 458 "unsigned-varint", 459] 460 461[[package]] 462name = "clap" 463version = "4.5.49" 464source = "registry+https://github.com/rust-lang/crates.io-index" 465checksum = "f4512b90fa68d3a9932cea5184017c5d200f5921df706d45e853537dea51508f" 466dependencies = [ 467 "clap_builder", 468 "clap_derive", 469] 470 471[[package]] 472name = "clap_builder" 473version = "4.5.49" 474source = "registry+https://github.com/rust-lang/crates.io-index" 475checksum = "0025e98baa12e766c67ba13ff4695a887a1eba19569aad00a472546795bd6730" 476dependencies = [ 477 "anstream", 478 "anstyle", 479 "clap_lex", 480 "strsim", 481] 482 483[[package]] 484name = "clap_derive" 485version = "4.5.49" 486source = "registry+https://github.com/rust-lang/crates.io-index" 487checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" 488dependencies = [ 489 "heck 0.5.0", 490 "proc-macro2", 491 "quote", 492 "syn 2.0.106", 493] 494 495[[package]] 496name = "clap_lex" 497version = "0.7.6" 498source = "registry+https://github.com/rust-lang/crates.io-index" 499checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d" 500 501[[package]] 502name = "colorchoice" 503version = "1.0.4" 504source = "registry+https://github.com/rust-lang/crates.io-index" 505checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 506 507[[package]] 508name = "combine" 509version = "4.6.7" 510source = "registry+https://github.com/rust-lang/crates.io-index" 511checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 512dependencies = [ 513 "bytes", 514 "memchr", 515] 516 517[[package]] 518name = "compression-codecs" 519version = "0.4.31" 520source = "registry+https://github.com/rust-lang/crates.io-index" 521checksum = "ef8a506ec4b81c460798f572caead636d57d3d7e940f998160f52bd254bf2d23" 522dependencies = [ 523 "compression-core", 524 "flate2", 525 "memchr", 526] 527 528[[package]] 529name = "compression-core" 530version = "0.4.29" 531source = "registry+https://github.com/rust-lang/crates.io-index" 532checksum = "e47641d3deaf41fb1538ac1f54735925e275eaf3bf4d55c81b137fba797e5cbb" 533 534[[package]] 535name = "const-oid" 536version = "0.9.6" 537source = "registry+https://github.com/rust-lang/crates.io-index" 538checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 539 540[[package]] 541name = "const-str" 542version = "0.4.3" 543source = "registry+https://github.com/rust-lang/crates.io-index" 544checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" 545 546[[package]] 547name = "core-foundation" 548version = "0.9.4" 549source = "registry+https://github.com/rust-lang/crates.io-index" 550checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 551dependencies = [ 552 "core-foundation-sys", 553 "libc", 554] 555 556[[package]] 557name = "core-foundation-sys" 558version = "0.8.7" 559source = "registry+https://github.com/rust-lang/crates.io-index" 560checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 561 562[[package]] 563name = "core2" 564version = "0.4.0" 565source = "registry+https://github.com/rust-lang/crates.io-index" 566checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 567dependencies = [ 568 "memchr", 569] 570 571[[package]] 572name = "cpufeatures" 573version = "0.2.17" 574source = "registry+https://github.com/rust-lang/crates.io-index" 575checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 576dependencies = [ 577 "libc", 578] 579 580[[package]] 581name = "crc32fast" 582version = "1.5.0" 583source = "registry+https://github.com/rust-lang/crates.io-index" 584checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 585dependencies = [ 586 "cfg-if", 587] 588 589[[package]] 590name = "crossbeam-deque" 591version = "0.8.6" 592source = "registry+https://github.com/rust-lang/crates.io-index" 593checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" 594dependencies = [ 595 "crossbeam-epoch", 596 "crossbeam-utils", 597] 598 599[[package]] 600name = "crossbeam-epoch" 601version = "0.9.18" 602source = "registry+https://github.com/rust-lang/crates.io-index" 603checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 604dependencies = [ 605 "crossbeam-utils", 606] 607 608[[package]] 609name = "crossbeam-utils" 610version = "0.8.21" 611source = "registry+https://github.com/rust-lang/crates.io-index" 612checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 613 614[[package]] 615name = "crunchy" 616version = "0.2.4" 617source = "registry+https://github.com/rust-lang/crates.io-index" 618checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 619 620[[package]] 621name = "crypto-bigint" 622version = "0.5.5" 623source = "registry+https://github.com/rust-lang/crates.io-index" 624checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 625dependencies = [ 626 "generic-array", 627 "rand_core 0.6.4", 628 "subtle", 629 "zeroize", 630] 631 632[[package]] 633name = "crypto-common" 634version = "0.1.6" 635source = "registry+https://github.com/rust-lang/crates.io-index" 636checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 637dependencies = [ 638 "generic-array", 639 "typenum", 640] 641 642[[package]] 643name = "darling" 644version = "0.21.3" 645source = "registry+https://github.com/rust-lang/crates.io-index" 646checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" 647dependencies = [ 648 "darling_core", 649 "darling_macro", 650] 651 652[[package]] 653name = "darling_core" 654version = "0.21.3" 655source = "registry+https://github.com/rust-lang/crates.io-index" 656checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" 657dependencies = [ 658 "fnv", 659 "ident_case", 660 "proc-macro2", 661 "quote", 662 "strsim", 663 "syn 2.0.106", 664] 665 666[[package]] 667name = "darling_macro" 668version = "0.21.3" 669source = "registry+https://github.com/rust-lang/crates.io-index" 670checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" 671dependencies = [ 672 "darling_core", 673 "quote", 674 "syn 2.0.106", 675] 676 677[[package]] 678name = "dashmap" 679version = "6.1.0" 680source = "registry+https://github.com/rust-lang/crates.io-index" 681checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" 682dependencies = [ 683 "cfg-if", 684 "crossbeam-utils", 685 "hashbrown 0.14.5", 686 "lock_api", 687 "once_cell", 688 "parking_lot_core", 689] 690 691[[package]] 692name = "data-encoding" 693version = "2.9.0" 694source = "registry+https://github.com/rust-lang/crates.io-index" 695checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 696 697[[package]] 698name = "data-encoding-macro" 699version = "0.1.18" 700source = "registry+https://github.com/rust-lang/crates.io-index" 701checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d" 702dependencies = [ 703 "data-encoding", 704 "data-encoding-macro-internal", 705] 706 707[[package]] 708name = "data-encoding-macro-internal" 709version = "0.1.16" 710source = "registry+https://github.com/rust-lang/crates.io-index" 711checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" 712dependencies = [ 713 "data-encoding", 714 "syn 2.0.106", 715] 716 717[[package]] 718name = "deflate" 719version = "1.0.0" 720source = "registry+https://github.com/rust-lang/crates.io-index" 721checksum = "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f" 722dependencies = [ 723 "adler32", 724 "gzip-header", 725] 726 727[[package]] 728name = "der" 729version = "0.7.10" 730source = "registry+https://github.com/rust-lang/crates.io-index" 731checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 732dependencies = [ 733 "const-oid", 734 "pem-rfc7468", 735 "zeroize", 736] 737 738[[package]] 739name = "deranged" 740version = "0.5.4" 741source = "registry+https://github.com/rust-lang/crates.io-index" 742checksum = "a41953f86f8a05768a6cda24def994fd2f424b04ec5c719cf89989779f199071" 743dependencies = [ 744 "powerfmt", 745] 746 747[[package]] 748name = "digest" 749version = "0.10.7" 750source = "registry+https://github.com/rust-lang/crates.io-index" 751checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 752dependencies = [ 753 "block-buffer", 754 "const-oid", 755 "crypto-common", 756 "subtle", 757] 758 759[[package]] 760name = "displaydoc" 761version = "0.2.5" 762source = "registry+https://github.com/rust-lang/crates.io-index" 763checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 764dependencies = [ 765 "proc-macro2", 766 "quote", 767 "syn 2.0.106", 768] 769 770[[package]] 771name = "ecdsa" 772version = "0.16.9" 773source = "registry+https://github.com/rust-lang/crates.io-index" 774checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 775dependencies = [ 776 "der", 777 "digest", 778 "elliptic-curve", 779 "rfc6979", 780 "signature", 781 "spki", 782] 783 784[[package]] 785name = "elliptic-curve" 786version = "0.13.8" 787source = "registry+https://github.com/rust-lang/crates.io-index" 788checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 789dependencies = [ 790 "base16ct", 791 "crypto-bigint", 792 "digest", 793 "ff", 794 "generic-array", 795 "group", 796 "pem-rfc7468", 797 "pkcs8", 798 "rand_core 0.6.4", 799 "sec1", 800 "subtle", 801 "zeroize", 802] 803 804[[package]] 805name = "encoding_rs" 806version = "0.8.35" 807source = "registry+https://github.com/rust-lang/crates.io-index" 808checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 809dependencies = [ 810 "cfg-if", 811] 812 813[[package]] 814name = "enum-as-inner" 815version = "0.6.1" 816source = "registry+https://github.com/rust-lang/crates.io-index" 817checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" 818dependencies = [ 819 "heck 0.5.0", 820 "proc-macro2", 821 "quote", 822 "syn 2.0.106", 823] 824 825[[package]] 826name = "equivalent" 827version = "1.0.2" 828source = "registry+https://github.com/rust-lang/crates.io-index" 829checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 830 831[[package]] 832name = "errno" 833version = "0.3.14" 834source = "registry+https://github.com/rust-lang/crates.io-index" 835checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 836dependencies = [ 837 "libc", 838 "windows-sys 0.61.2", 839] 840 841[[package]] 842name = "fastrand" 843version = "2.3.0" 844source = "registry+https://github.com/rust-lang/crates.io-index" 845checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 846 847[[package]] 848name = "ff" 849version = "0.13.1" 850source = "registry+https://github.com/rust-lang/crates.io-index" 851checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" 852dependencies = [ 853 "rand_core 0.6.4", 854 "subtle", 855] 856 857[[package]] 858name = "filetime" 859version = "0.2.26" 860source = "registry+https://github.com/rust-lang/crates.io-index" 861checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" 862dependencies = [ 863 "cfg-if", 864 "libc", 865 "libredox", 866 "windows-sys 0.60.2", 867] 868 869[[package]] 870name = "find-msvc-tools" 871version = "0.1.4" 872source = "registry+https://github.com/rust-lang/crates.io-index" 873checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127" 874 875[[package]] 876name = "flate2" 877version = "1.1.4" 878source = "registry+https://github.com/rust-lang/crates.io-index" 879checksum = "dc5a4e564e38c699f2880d3fda590bedc2e69f3f84cd48b457bd892ce61d0aa9" 880dependencies = [ 881 "crc32fast", 882 "miniz_oxide", 883] 884 885[[package]] 886name = "fnv" 887version = "1.0.7" 888source = "registry+https://github.com/rust-lang/crates.io-index" 889checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 890 891[[package]] 892name = "foreign-types" 893version = "0.3.2" 894source = "registry+https://github.com/rust-lang/crates.io-index" 895checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 896dependencies = [ 897 "foreign-types-shared", 898] 899 900[[package]] 901name = "foreign-types-shared" 902version = "0.1.1" 903source = "registry+https://github.com/rust-lang/crates.io-index" 904checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 905 906[[package]] 907name = "form_urlencoded" 908version = "1.2.2" 909source = "registry+https://github.com/rust-lang/crates.io-index" 910checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 911dependencies = [ 912 "percent-encoding", 913] 914 915[[package]] 916name = "futures-channel" 917version = "0.3.31" 918source = "registry+https://github.com/rust-lang/crates.io-index" 919checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 920dependencies = [ 921 "futures-core", 922] 923 924[[package]] 925name = "futures-core" 926version = "0.3.31" 927source = "registry+https://github.com/rust-lang/crates.io-index" 928checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 929 930[[package]] 931name = "futures-io" 932version = "0.3.31" 933source = "registry+https://github.com/rust-lang/crates.io-index" 934checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 935 936[[package]] 937name = "futures-sink" 938version = "0.3.31" 939source = "registry+https://github.com/rust-lang/crates.io-index" 940checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 941 942[[package]] 943name = "futures-task" 944version = "0.3.31" 945source = "registry+https://github.com/rust-lang/crates.io-index" 946checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 947 948[[package]] 949name = "futures-util" 950version = "0.3.31" 951source = "registry+https://github.com/rust-lang/crates.io-index" 952checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 953dependencies = [ 954 "futures-core", 955 "futures-task", 956 "pin-project-lite", 957 "pin-utils", 958 "slab", 959] 960 961[[package]] 962name = "generic-array" 963version = "0.14.9" 964source = "registry+https://github.com/rust-lang/crates.io-index" 965checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2" 966dependencies = [ 967 "typenum", 968 "version_check", 969 "zeroize", 970] 971 972[[package]] 973name = "getrandom" 974version = "0.2.16" 975source = "registry+https://github.com/rust-lang/crates.io-index" 976checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 977dependencies = [ 978 "cfg-if", 979 "js-sys", 980 "libc", 981 "wasi", 982 "wasm-bindgen", 983] 984 985[[package]] 986name = "getrandom" 987version = "0.3.4" 988source = "registry+https://github.com/rust-lang/crates.io-index" 989checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 990dependencies = [ 991 "cfg-if", 992 "js-sys", 993 "libc", 994 "r-efi", 995 "wasip2", 996 "wasm-bindgen", 997] 998 999[[package]] 1000name = "globset" 1001version = "0.4.17" 1002source = "registry+https://github.com/rust-lang/crates.io-index" 1003checksum = "eab69130804d941f8075cfd713bf8848a2c3b3f201a9457a11e6f87e1ab62305" 1004dependencies = [ 1005 "aho-corasick", 1006 "bstr", 1007 "log", 1008 "regex-automata", 1009 "regex-syntax", 1010] 1011 1012[[package]] 1013name = "group" 1014version = "0.13.0" 1015source = "registry+https://github.com/rust-lang/crates.io-index" 1016checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 1017dependencies = [ 1018 "ff", 1019 "rand_core 0.6.4", 1020 "subtle", 1021] 1022 1023[[package]] 1024name = "gzip-header" 1025version = "1.0.0" 1026source = "registry+https://github.com/rust-lang/crates.io-index" 1027checksum = "95cc527b92e6029a62960ad99aa8a6660faa4555fe5f731aab13aa6a921795a2" 1028dependencies = [ 1029 "crc32fast", 1030] 1031 1032[[package]] 1033name = "h2" 1034version = "0.4.12" 1035source = "registry+https://github.com/rust-lang/crates.io-index" 1036checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" 1037dependencies = [ 1038 "atomic-waker", 1039 "bytes", 1040 "fnv", 1041 "futures-core", 1042 "futures-sink", 1043 "http", 1044 "indexmap", 1045 "slab", 1046 "tokio", 1047 "tokio-util", 1048 "tracing", 1049] 1050 1051[[package]] 1052name = "half" 1053version = "2.7.1" 1054source = "registry+https://github.com/rust-lang/crates.io-index" 1055checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" 1056dependencies = [ 1057 "cfg-if", 1058 "crunchy", 1059 "zerocopy", 1060] 1061 1062[[package]] 1063name = "hashbrown" 1064version = "0.14.5" 1065source = "registry+https://github.com/rust-lang/crates.io-index" 1066checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1067 1068[[package]] 1069name = "hashbrown" 1070version = "0.16.0" 1071source = "registry+https://github.com/rust-lang/crates.io-index" 1072checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" 1073 1074[[package]] 1075name = "heck" 1076version = "0.4.1" 1077source = "registry+https://github.com/rust-lang/crates.io-index" 1078checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1079 1080[[package]] 1081name = "heck" 1082version = "0.5.0" 1083source = "registry+https://github.com/rust-lang/crates.io-index" 1084checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1085 1086[[package]] 1087name = "hermit-abi" 1088version = "0.5.2" 1089source = "registry+https://github.com/rust-lang/crates.io-index" 1090checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 1091 1092[[package]] 1093name = "hex_fmt" 1094version = "0.3.0" 1095source = "registry+https://github.com/rust-lang/crates.io-index" 1096checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f" 1097 1098[[package]] 1099name = "hickory-proto" 1100version = "0.24.4" 1101source = "registry+https://github.com/rust-lang/crates.io-index" 1102checksum = "92652067c9ce6f66ce53cc38d1169daa36e6e7eb7dd3b63b5103bd9d97117248" 1103dependencies = [ 1104 "async-trait", 1105 "cfg-if", 1106 "data-encoding", 1107 "enum-as-inner", 1108 "futures-channel", 1109 "futures-io", 1110 "futures-util", 1111 "idna", 1112 "ipnet", 1113 "once_cell", 1114 "rand 0.8.5", 1115 "thiserror 1.0.69", 1116 "tinyvec", 1117 "tokio", 1118 "tracing", 1119 "url", 1120] 1121 1122[[package]] 1123name = "hickory-resolver" 1124version = "0.24.4" 1125source = "registry+https://github.com/rust-lang/crates.io-index" 1126checksum = "cbb117a1ca520e111743ab2f6688eddee69db4e0ea242545a604dce8a66fd22e" 1127dependencies = [ 1128 "cfg-if", 1129 "futures-util", 1130 "hickory-proto", 1131 "ipconfig", 1132 "lru-cache", 1133 "once_cell", 1134 "parking_lot", 1135 "rand 0.8.5", 1136 "resolv-conf", 1137 "smallvec", 1138 "thiserror 1.0.69", 1139 "tokio", 1140 "tracing", 1141] 1142 1143[[package]] 1144name = "hmac" 1145version = "0.12.1" 1146source = "registry+https://github.com/rust-lang/crates.io-index" 1147checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1148dependencies = [ 1149 "digest", 1150] 1151 1152[[package]] 1153name = "home" 1154version = "0.5.11" 1155source = "registry+https://github.com/rust-lang/crates.io-index" 1156checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" 1157dependencies = [ 1158 "windows-sys 0.59.0", 1159] 1160 1161[[package]] 1162name = "http" 1163version = "1.3.1" 1164source = "registry+https://github.com/rust-lang/crates.io-index" 1165checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" 1166dependencies = [ 1167 "bytes", 1168 "fnv", 1169 "itoa", 1170] 1171 1172[[package]] 1173name = "http-body" 1174version = "1.0.1" 1175source = "registry+https://github.com/rust-lang/crates.io-index" 1176checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1177dependencies = [ 1178 "bytes", 1179 "http", 1180] 1181 1182[[package]] 1183name = "http-body-util" 1184version = "0.1.3" 1185source = "registry+https://github.com/rust-lang/crates.io-index" 1186checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 1187dependencies = [ 1188 "bytes", 1189 "futures-core", 1190 "http", 1191 "http-body", 1192 "pin-project-lite", 1193] 1194 1195[[package]] 1196name = "httparse" 1197version = "1.10.1" 1198source = "registry+https://github.com/rust-lang/crates.io-index" 1199checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1200 1201[[package]] 1202name = "httpdate" 1203version = "1.0.3" 1204source = "registry+https://github.com/rust-lang/crates.io-index" 1205checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1206 1207[[package]] 1208name = "hyper" 1209version = "1.7.0" 1210source = "registry+https://github.com/rust-lang/crates.io-index" 1211checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" 1212dependencies = [ 1213 "atomic-waker", 1214 "bytes", 1215 "futures-channel", 1216 "futures-core", 1217 "h2", 1218 "http", 1219 "http-body", 1220 "httparse", 1221 "itoa", 1222 "pin-project-lite", 1223 "pin-utils", 1224 "smallvec", 1225 "tokio", 1226 "want", 1227] 1228 1229[[package]] 1230name = "hyper-rustls" 1231version = "0.27.7" 1232source = "registry+https://github.com/rust-lang/crates.io-index" 1233checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 1234dependencies = [ 1235 "http", 1236 "hyper", 1237 "hyper-util", 1238 "rustls", 1239 "rustls-pki-types", 1240 "tokio", 1241 "tokio-rustls", 1242 "tower-service", 1243 "webpki-roots", 1244] 1245 1246[[package]] 1247name = "hyper-tls" 1248version = "0.6.0" 1249source = "registry+https://github.com/rust-lang/crates.io-index" 1250checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 1251dependencies = [ 1252 "bytes", 1253 "http-body-util", 1254 "hyper", 1255 "hyper-util", 1256 "native-tls", 1257 "tokio", 1258 "tokio-native-tls", 1259 "tower-service", 1260] 1261 1262[[package]] 1263name = "hyper-util" 1264version = "0.1.17" 1265source = "registry+https://github.com/rust-lang/crates.io-index" 1266checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" 1267dependencies = [ 1268 "base64 0.22.1", 1269 "bytes", 1270 "futures-channel", 1271 "futures-core", 1272 "futures-util", 1273 "http", 1274 "http-body", 1275 "hyper", 1276 "ipnet", 1277 "libc", 1278 "percent-encoding", 1279 "pin-project-lite", 1280 "socket2 0.6.1", 1281 "system-configuration", 1282 "tokio", 1283 "tower-service", 1284 "tracing", 1285 "windows-registry", 1286] 1287 1288[[package]] 1289name = "iana-time-zone" 1290version = "0.1.64" 1291source = "registry+https://github.com/rust-lang/crates.io-index" 1292checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" 1293dependencies = [ 1294 "android_system_properties", 1295 "core-foundation-sys", 1296 "iana-time-zone-haiku", 1297 "js-sys", 1298 "log", 1299 "wasm-bindgen", 1300 "windows-core", 1301] 1302 1303[[package]] 1304name = "iana-time-zone-haiku" 1305version = "0.1.2" 1306source = "registry+https://github.com/rust-lang/crates.io-index" 1307checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1308dependencies = [ 1309 "cc", 1310] 1311 1312[[package]] 1313name = "icu_collections" 1314version = "2.0.0" 1315source = "registry+https://github.com/rust-lang/crates.io-index" 1316checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" 1317dependencies = [ 1318 "displaydoc", 1319 "potential_utf", 1320 "yoke", 1321 "zerofrom", 1322 "zerovec", 1323] 1324 1325[[package]] 1326name = "icu_locale_core" 1327version = "2.0.0" 1328source = "registry+https://github.com/rust-lang/crates.io-index" 1329checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" 1330dependencies = [ 1331 "displaydoc", 1332 "litemap", 1333 "tinystr", 1334 "writeable", 1335 "zerovec", 1336] 1337 1338[[package]] 1339name = "icu_normalizer" 1340version = "2.0.0" 1341source = "registry+https://github.com/rust-lang/crates.io-index" 1342checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" 1343dependencies = [ 1344 "displaydoc", 1345 "icu_collections", 1346 "icu_normalizer_data", 1347 "icu_properties", 1348 "icu_provider", 1349 "smallvec", 1350 "zerovec", 1351] 1352 1353[[package]] 1354name = "icu_normalizer_data" 1355version = "2.0.0" 1356source = "registry+https://github.com/rust-lang/crates.io-index" 1357checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" 1358 1359[[package]] 1360name = "icu_properties" 1361version = "2.0.1" 1362source = "registry+https://github.com/rust-lang/crates.io-index" 1363checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" 1364dependencies = [ 1365 "displaydoc", 1366 "icu_collections", 1367 "icu_locale_core", 1368 "icu_properties_data", 1369 "icu_provider", 1370 "potential_utf", 1371 "zerotrie", 1372 "zerovec", 1373] 1374 1375[[package]] 1376name = "icu_properties_data" 1377version = "2.0.1" 1378source = "registry+https://github.com/rust-lang/crates.io-index" 1379checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" 1380 1381[[package]] 1382name = "icu_provider" 1383version = "2.0.0" 1384source = "registry+https://github.com/rust-lang/crates.io-index" 1385checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" 1386dependencies = [ 1387 "displaydoc", 1388 "icu_locale_core", 1389 "stable_deref_trait", 1390 "tinystr", 1391 "writeable", 1392 "yoke", 1393 "zerofrom", 1394 "zerotrie", 1395 "zerovec", 1396] 1397 1398[[package]] 1399name = "ident_case" 1400version = "1.0.1" 1401source = "registry+https://github.com/rust-lang/crates.io-index" 1402checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1403 1404[[package]] 1405name = "idna" 1406version = "1.1.0" 1407source = "registry+https://github.com/rust-lang/crates.io-index" 1408checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 1409dependencies = [ 1410 "idna_adapter", 1411 "smallvec", 1412 "utf8_iter", 1413] 1414 1415[[package]] 1416name = "idna_adapter" 1417version = "1.2.1" 1418source = "registry+https://github.com/rust-lang/crates.io-index" 1419checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 1420dependencies = [ 1421 "icu_normalizer", 1422 "icu_properties", 1423] 1424 1425[[package]] 1426name = "ignore" 1427version = "0.4.24" 1428source = "registry+https://github.com/rust-lang/crates.io-index" 1429checksum = "81776e6f9464432afcc28d03e52eb101c93b6f0566f52aef2427663e700f0403" 1430dependencies = [ 1431 "crossbeam-deque", 1432 "globset", 1433 "log", 1434 "memchr", 1435 "regex-automata", 1436 "same-file", 1437 "walkdir", 1438 "winapi-util", 1439] 1440 1441[[package]] 1442name = "indexmap" 1443version = "2.11.4" 1444source = "registry+https://github.com/rust-lang/crates.io-index" 1445checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" 1446dependencies = [ 1447 "equivalent", 1448 "hashbrown 0.16.0", 1449] 1450 1451[[package]] 1452name = "indoc" 1453version = "2.0.6" 1454source = "registry+https://github.com/rust-lang/crates.io-index" 1455checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd" 1456 1457[[package]] 1458name = "ipconfig" 1459version = "0.3.2" 1460source = "registry+https://github.com/rust-lang/crates.io-index" 1461checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 1462dependencies = [ 1463 "socket2 0.5.10", 1464 "widestring", 1465 "windows-sys 0.48.0", 1466 "winreg", 1467] 1468 1469[[package]] 1470name = "ipld-core" 1471version = "0.4.2" 1472source = "registry+https://github.com/rust-lang/crates.io-index" 1473checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db" 1474dependencies = [ 1475 "cid", 1476 "serde", 1477 "serde_bytes", 1478] 1479 1480[[package]] 1481name = "ipnet" 1482version = "2.11.0" 1483source = "registry+https://github.com/rust-lang/crates.io-index" 1484checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 1485 1486[[package]] 1487name = "iri-string" 1488version = "0.7.8" 1489source = "registry+https://github.com/rust-lang/crates.io-index" 1490checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" 1491dependencies = [ 1492 "memchr", 1493 "serde", 1494] 1495 1496[[package]] 1497name = "is_terminal_polyfill" 1498version = "1.70.1" 1499source = "registry+https://github.com/rust-lang/crates.io-index" 1500checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 1501 1502[[package]] 1503name = "itoa" 1504version = "1.0.15" 1505source = "registry+https://github.com/rust-lang/crates.io-index" 1506checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 1507 1508[[package]] 1509name = "jacquard" 1510version = "0.5.3" 1511source = "registry+https://github.com/rust-lang/crates.io-index" 1512checksum = "bf257386e29370eb7387093736d59f2aeda3ac692a37481c7201bc5f9cc82fae" 1513dependencies = [ 1514 "bon", 1515 "bytes", 1516 "getrandom 0.2.16", 1517 "http", 1518 "jacquard-api", 1519 "jacquard-common", 1520 "jacquard-derive", 1521 "jacquard-identity", 1522 "jacquard-oauth", 1523 "jose-jwk", 1524 "miette", 1525 "p256", 1526 "percent-encoding", 1527 "rand_core 0.6.4", 1528 "reqwest", 1529 "serde", 1530 "serde_html_form", 1531 "serde_ipld_dagcbor", 1532 "serde_json", 1533 "smol_str", 1534 "thiserror 2.0.17", 1535 "tokio", 1536 "trait-variant", 1537 "url", 1538] 1539 1540[[package]] 1541name = "jacquard-api" 1542version = "0.5.3" 1543source = "registry+https://github.com/rust-lang/crates.io-index" 1544checksum = "e67619aa60467ee687633e5face5743835e5f9d8e57c387a8d830cfd2ba8d2c8" 1545dependencies = [ 1546 "bon", 1547 "bytes", 1548 "jacquard-common", 1549 "jacquard-derive", 1550 "miette", 1551 "serde", 1552 "thiserror 2.0.17", 1553] 1554 1555[[package]] 1556name = "jacquard-common" 1557version = "0.5.3" 1558source = "registry+https://github.com/rust-lang/crates.io-index" 1559checksum = "8b1c05d479eee46004ba3ec495e7802b7c02cc429396aeb7296a558b9cb6e6ce" 1560dependencies = [ 1561 "base64 0.22.1", 1562 "bon", 1563 "bytes", 1564 "chrono", 1565 "cid", 1566 "getrandom 0.3.4", 1567 "http", 1568 "ipld-core", 1569 "k256", 1570 "langtag", 1571 "miette", 1572 "multibase", 1573 "multihash", 1574 "ouroboros", 1575 "p256", 1576 "rand 0.9.2", 1577 "regex", 1578 "reqwest", 1579 "serde", 1580 "serde_html_form", 1581 "serde_ipld_dagcbor", 1582 "serde_json", 1583 "signature", 1584 "smol_str", 1585 "thiserror 2.0.17", 1586 "tokio", 1587 "trait-variant", 1588 "url", 1589] 1590 1591[[package]] 1592name = "jacquard-derive" 1593version = "0.5.3" 1594source = "registry+https://github.com/rust-lang/crates.io-index" 1595checksum = "aadace50223141e60d16e26a28c8c8a9b647f291814986010234cf1c130367ab" 1596dependencies = [ 1597 "proc-macro2", 1598 "quote", 1599 "syn 2.0.106", 1600] 1601 1602[[package]] 1603name = "jacquard-identity" 1604version = "0.5.3" 1605source = "registry+https://github.com/rust-lang/crates.io-index" 1606checksum = "afafcd8fcc26095789aeefe4f54cda4471f1748ba11fa7886184f515362b6339" 1607dependencies = [ 1608 "bon", 1609 "bytes", 1610 "hickory-resolver", 1611 "http", 1612 "jacquard-api", 1613 "jacquard-common", 1614 "miette", 1615 "percent-encoding", 1616 "reqwest", 1617 "serde", 1618 "serde_html_form", 1619 "serde_json", 1620 "thiserror 2.0.17", 1621 "tokio", 1622 "trait-variant", 1623 "url", 1624 "urlencoding", 1625] 1626 1627[[package]] 1628name = "jacquard-oauth" 1629version = "0.5.3" 1630source = "registry+https://github.com/rust-lang/crates.io-index" 1631checksum = "597e74c6697a449e834936dde22c30165f0f2da0c38b42ec599173b58d73a098" 1632dependencies = [ 1633 "base64 0.22.1", 1634 "bytes", 1635 "chrono", 1636 "dashmap", 1637 "elliptic-curve", 1638 "http", 1639 "jacquard-common", 1640 "jacquard-identity", 1641 "jose-jwa", 1642 "jose-jwk", 1643 "miette", 1644 "p256", 1645 "rand 0.8.5", 1646 "rand_core 0.6.4", 1647 "reqwest", 1648 "rouille", 1649 "serde", 1650 "serde_html_form", 1651 "serde_json", 1652 "sha2", 1653 "signature", 1654 "smol_str", 1655 "thiserror 2.0.17", 1656 "tokio", 1657 "trait-variant", 1658 "url", 1659 "webbrowser", 1660] 1661 1662[[package]] 1663name = "jni" 1664version = "0.21.1" 1665source = "registry+https://github.com/rust-lang/crates.io-index" 1666checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 1667dependencies = [ 1668 "cesu8", 1669 "cfg-if", 1670 "combine", 1671 "jni-sys", 1672 "log", 1673 "thiserror 1.0.69", 1674 "walkdir", 1675 "windows-sys 0.45.0", 1676] 1677 1678[[package]] 1679name = "jni-sys" 1680version = "0.3.0" 1681source = "registry+https://github.com/rust-lang/crates.io-index" 1682checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1683 1684[[package]] 1685name = "jose-b64" 1686version = "0.1.2" 1687source = "registry+https://github.com/rust-lang/crates.io-index" 1688checksum = "bec69375368709666b21c76965ce67549f2d2db7605f1f8707d17c9656801b56" 1689dependencies = [ 1690 "base64ct", 1691 "serde", 1692 "subtle", 1693 "zeroize", 1694] 1695 1696[[package]] 1697name = "jose-jwa" 1698version = "0.1.2" 1699source = "registry+https://github.com/rust-lang/crates.io-index" 1700checksum = "9ab78e053fe886a351d67cf0d194c000f9d0dcb92906eb34d853d7e758a4b3a7" 1701dependencies = [ 1702 "serde", 1703] 1704 1705[[package]] 1706name = "jose-jwk" 1707version = "0.1.2" 1708source = "registry+https://github.com/rust-lang/crates.io-index" 1709checksum = "280fa263807fe0782ecb6f2baadc28dffc04e00558a58e33bfdb801d11fd58e7" 1710dependencies = [ 1711 "jose-b64", 1712 "jose-jwa", 1713 "p256", 1714 "p384", 1715 "rsa", 1716 "serde", 1717 "zeroize", 1718] 1719 1720[[package]] 1721name = "js-sys" 1722version = "0.3.81" 1723source = "registry+https://github.com/rust-lang/crates.io-index" 1724checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305" 1725dependencies = [ 1726 "once_cell", 1727 "wasm-bindgen", 1728] 1729 1730[[package]] 1731name = "k256" 1732version = "0.13.4" 1733source = "registry+https://github.com/rust-lang/crates.io-index" 1734checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" 1735dependencies = [ 1736 "cfg-if", 1737 "ecdsa", 1738 "elliptic-curve", 1739 "sha2", 1740] 1741 1742[[package]] 1743name = "langtag" 1744version = "0.4.0" 1745source = "registry+https://github.com/rust-lang/crates.io-index" 1746checksum = "9ecb4c689a30e48ebeaa14237f34037e300dd072e6ad21a9ec72e810ff3c6600" 1747dependencies = [ 1748 "serde", 1749 "static-regular-grammar", 1750 "thiserror 1.0.69", 1751] 1752 1753[[package]] 1754name = "lazy_static" 1755version = "1.5.0" 1756source = "registry+https://github.com/rust-lang/crates.io-index" 1757checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1758dependencies = [ 1759 "spin", 1760] 1761 1762[[package]] 1763name = "lexicons" 1764version = "0.1.0" 1765dependencies = [ 1766 "bon", 1767 "bytes", 1768 "jacquard-common", 1769 "jacquard-derive", 1770 "miette", 1771 "serde", 1772 "thiserror 2.0.17", 1773] 1774 1775[[package]] 1776name = "libc" 1777version = "0.2.177" 1778source = "registry+https://github.com/rust-lang/crates.io-index" 1779checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" 1780 1781[[package]] 1782name = "libm" 1783version = "0.2.15" 1784source = "registry+https://github.com/rust-lang/crates.io-index" 1785checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" 1786 1787[[package]] 1788name = "libredox" 1789version = "0.1.10" 1790source = "registry+https://github.com/rust-lang/crates.io-index" 1791checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" 1792dependencies = [ 1793 "bitflags", 1794 "libc", 1795 "redox_syscall", 1796] 1797 1798[[package]] 1799name = "linked-hash-map" 1800version = "0.5.6" 1801source = "registry+https://github.com/rust-lang/crates.io-index" 1802checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 1803 1804[[package]] 1805name = "linux-raw-sys" 1806version = "0.11.0" 1807source = "registry+https://github.com/rust-lang/crates.io-index" 1808checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 1809 1810[[package]] 1811name = "litemap" 1812version = "0.8.0" 1813source = "registry+https://github.com/rust-lang/crates.io-index" 1814checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" 1815 1816[[package]] 1817name = "lock_api" 1818version = "0.4.14" 1819source = "registry+https://github.com/rust-lang/crates.io-index" 1820checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 1821dependencies = [ 1822 "scopeguard", 1823] 1824 1825[[package]] 1826name = "log" 1827version = "0.4.28" 1828source = "registry+https://github.com/rust-lang/crates.io-index" 1829checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" 1830 1831[[package]] 1832name = "lru-cache" 1833version = "0.1.2" 1834source = "registry+https://github.com/rust-lang/crates.io-index" 1835checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 1836dependencies = [ 1837 "linked-hash-map", 1838] 1839 1840[[package]] 1841name = "lru-slab" 1842version = "0.1.2" 1843source = "registry+https://github.com/rust-lang/crates.io-index" 1844checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 1845 1846[[package]] 1847name = "malloc_buf" 1848version = "0.0.6" 1849source = "registry+https://github.com/rust-lang/crates.io-index" 1850checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1851dependencies = [ 1852 "libc", 1853] 1854 1855[[package]] 1856name = "match-lookup" 1857version = "0.1.1" 1858source = "registry+https://github.com/rust-lang/crates.io-index" 1859checksum = "1265724d8cb29dbbc2b0f06fffb8bf1a8c0cf73a78eede9ba73a4a66c52a981e" 1860dependencies = [ 1861 "proc-macro2", 1862 "quote", 1863 "syn 1.0.109", 1864] 1865 1866[[package]] 1867name = "memchr" 1868version = "2.7.6" 1869source = "registry+https://github.com/rust-lang/crates.io-index" 1870checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 1871 1872[[package]] 1873name = "miette" 1874version = "7.6.0" 1875source = "registry+https://github.com/rust-lang/crates.io-index" 1876checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7" 1877dependencies = [ 1878 "cfg-if", 1879 "miette-derive", 1880 "unicode-width", 1881] 1882 1883[[package]] 1884name = "miette-derive" 1885version = "7.6.0" 1886source = "registry+https://github.com/rust-lang/crates.io-index" 1887checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b" 1888dependencies = [ 1889 "proc-macro2", 1890 "quote", 1891 "syn 2.0.106", 1892] 1893 1894[[package]] 1895name = "mime" 1896version = "0.3.17" 1897source = "registry+https://github.com/rust-lang/crates.io-index" 1898checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1899 1900[[package]] 1901name = "mime_guess" 1902version = "2.0.5" 1903source = "registry+https://github.com/rust-lang/crates.io-index" 1904checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 1905dependencies = [ 1906 "mime", 1907 "unicase", 1908] 1909 1910[[package]] 1911name = "minimal-lexical" 1912version = "0.2.1" 1913source = "registry+https://github.com/rust-lang/crates.io-index" 1914checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1915 1916[[package]] 1917name = "miniz_oxide" 1918version = "0.8.9" 1919source = "registry+https://github.com/rust-lang/crates.io-index" 1920checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 1921dependencies = [ 1922 "adler2", 1923 "simd-adler32", 1924] 1925 1926[[package]] 1927name = "mio" 1928version = "1.0.4" 1929source = "registry+https://github.com/rust-lang/crates.io-index" 1930checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" 1931dependencies = [ 1932 "libc", 1933 "wasi", 1934 "windows-sys 0.59.0", 1935] 1936 1937[[package]] 1938name = "multibase" 1939version = "0.9.2" 1940source = "registry+https://github.com/rust-lang/crates.io-index" 1941checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77" 1942dependencies = [ 1943 "base-x", 1944 "base256emoji", 1945 "data-encoding", 1946 "data-encoding-macro", 1947] 1948 1949[[package]] 1950name = "multihash" 1951version = "0.19.3" 1952source = "registry+https://github.com/rust-lang/crates.io-index" 1953checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" 1954dependencies = [ 1955 "core2", 1956 "serde", 1957 "unsigned-varint", 1958] 1959 1960[[package]] 1961name = "multipart" 1962version = "0.18.0" 1963source = "registry+https://github.com/rust-lang/crates.io-index" 1964checksum = "00dec633863867f29cb39df64a397cdf4a6354708ddd7759f70c7fb51c5f9182" 1965dependencies = [ 1966 "buf_redux", 1967 "httparse", 1968 "log", 1969 "mime", 1970 "mime_guess", 1971 "quick-error", 1972 "rand 0.8.5", 1973 "safemem", 1974 "tempfile", 1975 "twoway", 1976] 1977 1978[[package]] 1979name = "native-tls" 1980version = "0.2.14" 1981source = "registry+https://github.com/rust-lang/crates.io-index" 1982checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" 1983dependencies = [ 1984 "libc", 1985 "log", 1986 "openssl", 1987 "openssl-probe", 1988 "openssl-sys", 1989 "schannel", 1990 "security-framework", 1991 "security-framework-sys", 1992 "tempfile", 1993] 1994 1995[[package]] 1996name = "ndk-context" 1997version = "0.1.1" 1998source = "registry+https://github.com/rust-lang/crates.io-index" 1999checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 2000 2001[[package]] 2002name = "nom" 2003version = "7.1.3" 2004source = "registry+https://github.com/rust-lang/crates.io-index" 2005checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2006dependencies = [ 2007 "memchr", 2008 "minimal-lexical", 2009] 2010 2011[[package]] 2012name = "num-bigint-dig" 2013version = "0.8.4" 2014source = "registry+https://github.com/rust-lang/crates.io-index" 2015checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" 2016dependencies = [ 2017 "byteorder", 2018 "lazy_static", 2019 "libm", 2020 "num-integer", 2021 "num-iter", 2022 "num-traits", 2023 "rand 0.8.5", 2024 "smallvec", 2025 "zeroize", 2026] 2027 2028[[package]] 2029name = "num-conv" 2030version = "0.1.0" 2031source = "registry+https://github.com/rust-lang/crates.io-index" 2032checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 2033 2034[[package]] 2035name = "num-integer" 2036version = "0.1.46" 2037source = "registry+https://github.com/rust-lang/crates.io-index" 2038checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 2039dependencies = [ 2040 "num-traits", 2041] 2042 2043[[package]] 2044name = "num-iter" 2045version = "0.1.45" 2046source = "registry+https://github.com/rust-lang/crates.io-index" 2047checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 2048dependencies = [ 2049 "autocfg", 2050 "num-integer", 2051 "num-traits", 2052] 2053 2054[[package]] 2055name = "num-traits" 2056version = "0.2.19" 2057source = "registry+https://github.com/rust-lang/crates.io-index" 2058checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2059dependencies = [ 2060 "autocfg", 2061 "libm", 2062] 2063 2064[[package]] 2065name = "num_cpus" 2066version = "1.17.0" 2067source = "registry+https://github.com/rust-lang/crates.io-index" 2068checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" 2069dependencies = [ 2070 "hermit-abi", 2071 "libc", 2072] 2073 2074[[package]] 2075name = "num_threads" 2076version = "0.1.7" 2077source = "registry+https://github.com/rust-lang/crates.io-index" 2078checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" 2079dependencies = [ 2080 "libc", 2081] 2082 2083[[package]] 2084name = "objc" 2085version = "0.2.7" 2086source = "registry+https://github.com/rust-lang/crates.io-index" 2087checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 2088dependencies = [ 2089 "malloc_buf", 2090] 2091 2092[[package]] 2093name = "once_cell" 2094version = "1.21.3" 2095source = "registry+https://github.com/rust-lang/crates.io-index" 2096checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 2097 2098[[package]] 2099name = "once_cell_polyfill" 2100version = "1.70.1" 2101source = "registry+https://github.com/rust-lang/crates.io-index" 2102checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" 2103 2104[[package]] 2105name = "openssl" 2106version = "0.10.74" 2107source = "registry+https://github.com/rust-lang/crates.io-index" 2108checksum = "24ad14dd45412269e1a30f52ad8f0664f0f4f4a89ee8fe28c3b3527021ebb654" 2109dependencies = [ 2110 "bitflags", 2111 "cfg-if", 2112 "foreign-types", 2113 "libc", 2114 "once_cell", 2115 "openssl-macros", 2116 "openssl-sys", 2117] 2118 2119[[package]] 2120name = "openssl-macros" 2121version = "0.1.1" 2122source = "registry+https://github.com/rust-lang/crates.io-index" 2123checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 2124dependencies = [ 2125 "proc-macro2", 2126 "quote", 2127 "syn 2.0.106", 2128] 2129 2130[[package]] 2131name = "openssl-probe" 2132version = "0.1.6" 2133source = "registry+https://github.com/rust-lang/crates.io-index" 2134checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" 2135 2136[[package]] 2137name = "openssl-sys" 2138version = "0.9.110" 2139source = "registry+https://github.com/rust-lang/crates.io-index" 2140checksum = "0a9f0075ba3c21b09f8e8b2026584b1d18d49388648f2fbbf3c97ea8deced8e2" 2141dependencies = [ 2142 "cc", 2143 "libc", 2144 "pkg-config", 2145 "vcpkg", 2146] 2147 2148[[package]] 2149name = "ouroboros" 2150version = "0.18.5" 2151source = "registry+https://github.com/rust-lang/crates.io-index" 2152checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59" 2153dependencies = [ 2154 "aliasable", 2155 "ouroboros_macro", 2156 "static_assertions", 2157] 2158 2159[[package]] 2160name = "ouroboros_macro" 2161version = "0.18.5" 2162source = "registry+https://github.com/rust-lang/crates.io-index" 2163checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0" 2164dependencies = [ 2165 "heck 0.4.1", 2166 "proc-macro2", 2167 "proc-macro2-diagnostics", 2168 "quote", 2169 "syn 2.0.106", 2170] 2171 2172[[package]] 2173name = "p256" 2174version = "0.13.2" 2175source = "registry+https://github.com/rust-lang/crates.io-index" 2176checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 2177dependencies = [ 2178 "ecdsa", 2179 "elliptic-curve", 2180 "primeorder", 2181 "sha2", 2182] 2183 2184[[package]] 2185name = "p384" 2186version = "0.13.1" 2187source = "registry+https://github.com/rust-lang/crates.io-index" 2188checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" 2189dependencies = [ 2190 "elliptic-curve", 2191 "primeorder", 2192] 2193 2194[[package]] 2195name = "parking_lot" 2196version = "0.12.5" 2197source = "registry+https://github.com/rust-lang/crates.io-index" 2198checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 2199dependencies = [ 2200 "lock_api", 2201 "parking_lot_core", 2202] 2203 2204[[package]] 2205name = "parking_lot_core" 2206version = "0.9.12" 2207source = "registry+https://github.com/rust-lang/crates.io-index" 2208checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 2209dependencies = [ 2210 "cfg-if", 2211 "libc", 2212 "redox_syscall", 2213 "smallvec", 2214 "windows-link 0.2.1", 2215] 2216 2217[[package]] 2218name = "pem-rfc7468" 2219version = "0.7.0" 2220source = "registry+https://github.com/rust-lang/crates.io-index" 2221checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 2222dependencies = [ 2223 "base64ct", 2224] 2225 2226[[package]] 2227name = "percent-encoding" 2228version = "2.3.2" 2229source = "registry+https://github.com/rust-lang/crates.io-index" 2230checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 2231 2232[[package]] 2233name = "pin-project-lite" 2234version = "0.2.16" 2235source = "registry+https://github.com/rust-lang/crates.io-index" 2236checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 2237 2238[[package]] 2239name = "pin-utils" 2240version = "0.1.0" 2241source = "registry+https://github.com/rust-lang/crates.io-index" 2242checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2243 2244[[package]] 2245name = "pkcs1" 2246version = "0.7.5" 2247source = "registry+https://github.com/rust-lang/crates.io-index" 2248checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 2249dependencies = [ 2250 "der", 2251 "pkcs8", 2252 "spki", 2253] 2254 2255[[package]] 2256name = "pkcs8" 2257version = "0.10.2" 2258source = "registry+https://github.com/rust-lang/crates.io-index" 2259checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 2260dependencies = [ 2261 "der", 2262 "spki", 2263] 2264 2265[[package]] 2266name = "pkg-config" 2267version = "0.3.32" 2268source = "registry+https://github.com/rust-lang/crates.io-index" 2269checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 2270 2271[[package]] 2272name = "potential_utf" 2273version = "0.1.3" 2274source = "registry+https://github.com/rust-lang/crates.io-index" 2275checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a" 2276dependencies = [ 2277 "zerovec", 2278] 2279 2280[[package]] 2281name = "powerfmt" 2282version = "0.2.0" 2283source = "registry+https://github.com/rust-lang/crates.io-index" 2284checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2285 2286[[package]] 2287name = "ppv-lite86" 2288version = "0.2.21" 2289source = "registry+https://github.com/rust-lang/crates.io-index" 2290checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 2291dependencies = [ 2292 "zerocopy", 2293] 2294 2295[[package]] 2296name = "prettyplease" 2297version = "0.2.37" 2298source = "registry+https://github.com/rust-lang/crates.io-index" 2299checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" 2300dependencies = [ 2301 "proc-macro2", 2302 "syn 2.0.106", 2303] 2304 2305[[package]] 2306name = "primeorder" 2307version = "0.13.6" 2308source = "registry+https://github.com/rust-lang/crates.io-index" 2309checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 2310dependencies = [ 2311 "elliptic-curve", 2312] 2313 2314[[package]] 2315name = "proc-macro-error" 2316version = "1.0.4" 2317source = "registry+https://github.com/rust-lang/crates.io-index" 2318checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2319dependencies = [ 2320 "proc-macro-error-attr", 2321 "proc-macro2", 2322 "quote", 2323 "syn 1.0.109", 2324 "version_check", 2325] 2326 2327[[package]] 2328name = "proc-macro-error-attr" 2329version = "1.0.4" 2330source = "registry+https://github.com/rust-lang/crates.io-index" 2331checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2332dependencies = [ 2333 "proc-macro2", 2334 "quote", 2335 "version_check", 2336] 2337 2338[[package]] 2339name = "proc-macro2" 2340version = "1.0.101" 2341source = "registry+https://github.com/rust-lang/crates.io-index" 2342checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" 2343dependencies = [ 2344 "unicode-ident", 2345] 2346 2347[[package]] 2348name = "proc-macro2-diagnostics" 2349version = "0.10.1" 2350source = "registry+https://github.com/rust-lang/crates.io-index" 2351checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" 2352dependencies = [ 2353 "proc-macro2", 2354 "quote", 2355 "syn 2.0.106", 2356 "version_check", 2357 "yansi", 2358] 2359 2360[[package]] 2361name = "quick-error" 2362version = "1.2.3" 2363source = "registry+https://github.com/rust-lang/crates.io-index" 2364checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 2365 2366[[package]] 2367name = "quinn" 2368version = "0.11.9" 2369source = "registry+https://github.com/rust-lang/crates.io-index" 2370checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 2371dependencies = [ 2372 "bytes", 2373 "cfg_aliases", 2374 "pin-project-lite", 2375 "quinn-proto", 2376 "quinn-udp", 2377 "rustc-hash", 2378 "rustls", 2379 "socket2 0.6.1", 2380 "thiserror 2.0.17", 2381 "tokio", 2382 "tracing", 2383 "web-time", 2384] 2385 2386[[package]] 2387name = "quinn-proto" 2388version = "0.11.13" 2389source = "registry+https://github.com/rust-lang/crates.io-index" 2390checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" 2391dependencies = [ 2392 "bytes", 2393 "getrandom 0.3.4", 2394 "lru-slab", 2395 "rand 0.9.2", 2396 "ring", 2397 "rustc-hash", 2398 "rustls", 2399 "rustls-pki-types", 2400 "slab", 2401 "thiserror 2.0.17", 2402 "tinyvec", 2403 "tracing", 2404 "web-time", 2405] 2406 2407[[package]] 2408name = "quinn-udp" 2409version = "0.5.14" 2410source = "registry+https://github.com/rust-lang/crates.io-index" 2411checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 2412dependencies = [ 2413 "cfg_aliases", 2414 "libc", 2415 "once_cell", 2416 "socket2 0.6.1", 2417 "tracing", 2418 "windows-sys 0.60.2", 2419] 2420 2421[[package]] 2422name = "quote" 2423version = "1.0.41" 2424source = "registry+https://github.com/rust-lang/crates.io-index" 2425checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1" 2426dependencies = [ 2427 "proc-macro2", 2428] 2429 2430[[package]] 2431name = "r-efi" 2432version = "5.3.0" 2433source = "registry+https://github.com/rust-lang/crates.io-index" 2434checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 2435 2436[[package]] 2437name = "rand" 2438version = "0.8.5" 2439source = "registry+https://github.com/rust-lang/crates.io-index" 2440checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2441dependencies = [ 2442 "libc", 2443 "rand_chacha 0.3.1", 2444 "rand_core 0.6.4", 2445] 2446 2447[[package]] 2448name = "rand" 2449version = "0.9.2" 2450source = "registry+https://github.com/rust-lang/crates.io-index" 2451checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 2452dependencies = [ 2453 "rand_chacha 0.9.0", 2454 "rand_core 0.9.3", 2455] 2456 2457[[package]] 2458name = "rand_chacha" 2459version = "0.3.1" 2460source = "registry+https://github.com/rust-lang/crates.io-index" 2461checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2462dependencies = [ 2463 "ppv-lite86", 2464 "rand_core 0.6.4", 2465] 2466 2467[[package]] 2468name = "rand_chacha" 2469version = "0.9.0" 2470source = "registry+https://github.com/rust-lang/crates.io-index" 2471checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 2472dependencies = [ 2473 "ppv-lite86", 2474 "rand_core 0.9.3", 2475] 2476 2477[[package]] 2478name = "rand_core" 2479version = "0.6.4" 2480source = "registry+https://github.com/rust-lang/crates.io-index" 2481checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2482dependencies = [ 2483 "getrandom 0.2.16", 2484] 2485 2486[[package]] 2487name = "rand_core" 2488version = "0.9.3" 2489source = "registry+https://github.com/rust-lang/crates.io-index" 2490checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 2491dependencies = [ 2492 "getrandom 0.3.4", 2493] 2494 2495[[package]] 2496name = "range-traits" 2497version = "0.3.2" 2498source = "registry+https://github.com/rust-lang/crates.io-index" 2499checksum = "d20581732dd76fa913c7dff1a2412b714afe3573e94d41c34719de73337cc8ab" 2500 2501[[package]] 2502name = "raw-window-handle" 2503version = "0.5.2" 2504source = "registry+https://github.com/rust-lang/crates.io-index" 2505checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9" 2506 2507[[package]] 2508name = "redox_syscall" 2509version = "0.5.18" 2510source = "registry+https://github.com/rust-lang/crates.io-index" 2511checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 2512dependencies = [ 2513 "bitflags", 2514] 2515 2516[[package]] 2517name = "regex" 2518version = "1.12.2" 2519source = "registry+https://github.com/rust-lang/crates.io-index" 2520checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" 2521dependencies = [ 2522 "aho-corasick", 2523 "memchr", 2524 "regex-automata", 2525 "regex-syntax", 2526] 2527 2528[[package]] 2529name = "regex-automata" 2530version = "0.4.13" 2531source = "registry+https://github.com/rust-lang/crates.io-index" 2532checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" 2533dependencies = [ 2534 "aho-corasick", 2535 "memchr", 2536 "regex-syntax", 2537] 2538 2539[[package]] 2540name = "regex-syntax" 2541version = "0.8.8" 2542source = "registry+https://github.com/rust-lang/crates.io-index" 2543checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" 2544 2545[[package]] 2546name = "reqwest" 2547version = "0.12.24" 2548source = "registry+https://github.com/rust-lang/crates.io-index" 2549checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f" 2550dependencies = [ 2551 "async-compression", 2552 "base64 0.22.1", 2553 "bytes", 2554 "encoding_rs", 2555 "futures-core", 2556 "futures-util", 2557 "h2", 2558 "http", 2559 "http-body", 2560 "http-body-util", 2561 "hyper", 2562 "hyper-rustls", 2563 "hyper-tls", 2564 "hyper-util", 2565 "js-sys", 2566 "log", 2567 "mime", 2568 "native-tls", 2569 "percent-encoding", 2570 "pin-project-lite", 2571 "quinn", 2572 "rustls", 2573 "rustls-pki-types", 2574 "serde", 2575 "serde_json", 2576 "serde_urlencoded", 2577 "sync_wrapper", 2578 "tokio", 2579 "tokio-native-tls", 2580 "tokio-rustls", 2581 "tokio-util", 2582 "tower", 2583 "tower-http", 2584 "tower-service", 2585 "url", 2586 "wasm-bindgen", 2587 "wasm-bindgen-futures", 2588 "web-sys", 2589 "webpki-roots", 2590] 2591 2592[[package]] 2593name = "resolv-conf" 2594version = "0.7.5" 2595source = "registry+https://github.com/rust-lang/crates.io-index" 2596checksum = "6b3789b30bd25ba102de4beabd95d21ac45b69b1be7d14522bab988c526d6799" 2597 2598[[package]] 2599name = "rfc6979" 2600version = "0.4.0" 2601source = "registry+https://github.com/rust-lang/crates.io-index" 2602checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 2603dependencies = [ 2604 "hmac", 2605 "subtle", 2606] 2607 2608[[package]] 2609name = "ring" 2610version = "0.17.14" 2611source = "registry+https://github.com/rust-lang/crates.io-index" 2612checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 2613dependencies = [ 2614 "cc", 2615 "cfg-if", 2616 "getrandom 0.2.16", 2617 "libc", 2618 "untrusted", 2619 "windows-sys 0.52.0", 2620] 2621 2622[[package]] 2623name = "rouille" 2624version = "3.6.2" 2625source = "registry+https://github.com/rust-lang/crates.io-index" 2626checksum = "3716fbf57fc1084d7a706adf4e445298d123e4a44294c4e8213caf1b85fcc921" 2627dependencies = [ 2628 "base64 0.13.1", 2629 "brotli", 2630 "chrono", 2631 "deflate", 2632 "filetime", 2633 "multipart", 2634 "percent-encoding", 2635 "rand 0.8.5", 2636 "serde", 2637 "serde_derive", 2638 "serde_json", 2639 "sha1_smol", 2640 "threadpool", 2641 "time", 2642 "tiny_http", 2643 "url", 2644] 2645 2646[[package]] 2647name = "rsa" 2648version = "0.9.8" 2649source = "registry+https://github.com/rust-lang/crates.io-index" 2650checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b" 2651dependencies = [ 2652 "const-oid", 2653 "digest", 2654 "num-bigint-dig", 2655 "num-integer", 2656 "num-traits", 2657 "pkcs1", 2658 "pkcs8", 2659 "rand_core 0.6.4", 2660 "signature", 2661 "spki", 2662 "subtle", 2663 "zeroize", 2664] 2665 2666[[package]] 2667name = "rustc-hash" 2668version = "2.1.1" 2669source = "registry+https://github.com/rust-lang/crates.io-index" 2670checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 2671 2672[[package]] 2673name = "rustix" 2674version = "1.1.2" 2675source = "registry+https://github.com/rust-lang/crates.io-index" 2676checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" 2677dependencies = [ 2678 "bitflags", 2679 "errno", 2680 "libc", 2681 "linux-raw-sys", 2682 "windows-sys 0.61.2", 2683] 2684 2685[[package]] 2686name = "rustls" 2687version = "0.23.32" 2688source = "registry+https://github.com/rust-lang/crates.io-index" 2689checksum = "cd3c25631629d034ce7cd9940adc9d45762d46de2b0f57193c4443b92c6d4d40" 2690dependencies = [ 2691 "once_cell", 2692 "ring", 2693 "rustls-pki-types", 2694 "rustls-webpki", 2695 "subtle", 2696 "zeroize", 2697] 2698 2699[[package]] 2700name = "rustls-pki-types" 2701version = "1.12.0" 2702source = "registry+https://github.com/rust-lang/crates.io-index" 2703checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" 2704dependencies = [ 2705 "web-time", 2706 "zeroize", 2707] 2708 2709[[package]] 2710name = "rustls-webpki" 2711version = "0.103.7" 2712source = "registry+https://github.com/rust-lang/crates.io-index" 2713checksum = "e10b3f4191e8a80e6b43eebabfac91e5dcecebb27a71f04e820c47ec41d314bf" 2714dependencies = [ 2715 "ring", 2716 "rustls-pki-types", 2717 "untrusted", 2718] 2719 2720[[package]] 2721name = "rustversion" 2722version = "1.0.22" 2723source = "registry+https://github.com/rust-lang/crates.io-index" 2724checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 2725 2726[[package]] 2727name = "ryu" 2728version = "1.0.20" 2729source = "registry+https://github.com/rust-lang/crates.io-index" 2730checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 2731 2732[[package]] 2733name = "safemem" 2734version = "0.3.3" 2735source = "registry+https://github.com/rust-lang/crates.io-index" 2736checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 2737 2738[[package]] 2739name = "same-file" 2740version = "1.0.6" 2741source = "registry+https://github.com/rust-lang/crates.io-index" 2742checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2743dependencies = [ 2744 "winapi-util", 2745] 2746 2747[[package]] 2748name = "schannel" 2749version = "0.1.28" 2750source = "registry+https://github.com/rust-lang/crates.io-index" 2751checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" 2752dependencies = [ 2753 "windows-sys 0.61.2", 2754] 2755 2756[[package]] 2757name = "scopeguard" 2758version = "1.2.0" 2759source = "registry+https://github.com/rust-lang/crates.io-index" 2760checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2761 2762[[package]] 2763name = "sec1" 2764version = "0.7.3" 2765source = "registry+https://github.com/rust-lang/crates.io-index" 2766checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 2767dependencies = [ 2768 "base16ct", 2769 "der", 2770 "generic-array", 2771 "pkcs8", 2772 "subtle", 2773 "zeroize", 2774] 2775 2776[[package]] 2777name = "security-framework" 2778version = "2.11.1" 2779source = "registry+https://github.com/rust-lang/crates.io-index" 2780checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 2781dependencies = [ 2782 "bitflags", 2783 "core-foundation", 2784 "core-foundation-sys", 2785 "libc", 2786 "security-framework-sys", 2787] 2788 2789[[package]] 2790name = "security-framework-sys" 2791version = "2.15.0" 2792source = "registry+https://github.com/rust-lang/crates.io-index" 2793checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" 2794dependencies = [ 2795 "core-foundation-sys", 2796 "libc", 2797] 2798 2799[[package]] 2800name = "serde" 2801version = "1.0.228" 2802source = "registry+https://github.com/rust-lang/crates.io-index" 2803checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 2804dependencies = [ 2805 "serde_core", 2806 "serde_derive", 2807] 2808 2809[[package]] 2810name = "serde_bytes" 2811version = "0.11.19" 2812source = "registry+https://github.com/rust-lang/crates.io-index" 2813checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" 2814dependencies = [ 2815 "serde", 2816 "serde_core", 2817] 2818 2819[[package]] 2820name = "serde_core" 2821version = "1.0.228" 2822source = "registry+https://github.com/rust-lang/crates.io-index" 2823checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 2824dependencies = [ 2825 "serde_derive", 2826] 2827 2828[[package]] 2829name = "serde_derive" 2830version = "1.0.228" 2831source = "registry+https://github.com/rust-lang/crates.io-index" 2832checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 2833dependencies = [ 2834 "proc-macro2", 2835 "quote", 2836 "syn 2.0.106", 2837] 2838 2839[[package]] 2840name = "serde_html_form" 2841version = "0.2.8" 2842source = "registry+https://github.com/rust-lang/crates.io-index" 2843checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f" 2844dependencies = [ 2845 "form_urlencoded", 2846 "indexmap", 2847 "itoa", 2848 "ryu", 2849 "serde_core", 2850] 2851 2852[[package]] 2853name = "serde_ipld_dagcbor" 2854version = "0.6.4" 2855source = "registry+https://github.com/rust-lang/crates.io-index" 2856checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778" 2857dependencies = [ 2858 "cbor4ii", 2859 "ipld-core", 2860 "scopeguard", 2861 "serde", 2862] 2863 2864[[package]] 2865name = "serde_json" 2866version = "1.0.145" 2867source = "registry+https://github.com/rust-lang/crates.io-index" 2868checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" 2869dependencies = [ 2870 "itoa", 2871 "memchr", 2872 "ryu", 2873 "serde", 2874 "serde_core", 2875] 2876 2877[[package]] 2878name = "serde_urlencoded" 2879version = "0.7.1" 2880source = "registry+https://github.com/rust-lang/crates.io-index" 2881checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2882dependencies = [ 2883 "form_urlencoded", 2884 "itoa", 2885 "ryu", 2886 "serde", 2887] 2888 2889[[package]] 2890name = "sha1_smol" 2891version = "1.0.1" 2892source = "registry+https://github.com/rust-lang/crates.io-index" 2893checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" 2894 2895[[package]] 2896name = "sha2" 2897version = "0.10.9" 2898source = "registry+https://github.com/rust-lang/crates.io-index" 2899checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 2900dependencies = [ 2901 "cfg-if", 2902 "cpufeatures", 2903 "digest", 2904] 2905 2906[[package]] 2907name = "shlex" 2908version = "1.3.0" 2909source = "registry+https://github.com/rust-lang/crates.io-index" 2910checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2911 2912[[package]] 2913name = "signal-hook-registry" 2914version = "1.4.6" 2915source = "registry+https://github.com/rust-lang/crates.io-index" 2916checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" 2917dependencies = [ 2918 "libc", 2919] 2920 2921[[package]] 2922name = "signature" 2923version = "2.2.0" 2924source = "registry+https://github.com/rust-lang/crates.io-index" 2925checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 2926dependencies = [ 2927 "digest", 2928 "rand_core 0.6.4", 2929] 2930 2931[[package]] 2932name = "simd-adler32" 2933version = "0.3.7" 2934source = "registry+https://github.com/rust-lang/crates.io-index" 2935checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 2936 2937[[package]] 2938name = "slab" 2939version = "0.4.11" 2940source = "registry+https://github.com/rust-lang/crates.io-index" 2941checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 2942 2943[[package]] 2944name = "smallvec" 2945version = "1.15.1" 2946source = "registry+https://github.com/rust-lang/crates.io-index" 2947checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 2948 2949[[package]] 2950name = "smol_str" 2951version = "0.3.2" 2952source = "registry+https://github.com/rust-lang/crates.io-index" 2953checksum = "9676b89cd56310a87b93dec47b11af744f34d5fc9f367b829474eec0a891350d" 2954dependencies = [ 2955 "borsh", 2956 "serde", 2957] 2958 2959[[package]] 2960name = "socket2" 2961version = "0.5.10" 2962source = "registry+https://github.com/rust-lang/crates.io-index" 2963checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 2964dependencies = [ 2965 "libc", 2966 "windows-sys 0.52.0", 2967] 2968 2969[[package]] 2970name = "socket2" 2971version = "0.6.1" 2972source = "registry+https://github.com/rust-lang/crates.io-index" 2973checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" 2974dependencies = [ 2975 "libc", 2976 "windows-sys 0.60.2", 2977] 2978 2979[[package]] 2980name = "spin" 2981version = "0.9.8" 2982source = "registry+https://github.com/rust-lang/crates.io-index" 2983checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2984 2985[[package]] 2986name = "spki" 2987version = "0.7.3" 2988source = "registry+https://github.com/rust-lang/crates.io-index" 2989checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 2990dependencies = [ 2991 "base64ct", 2992 "der", 2993] 2994 2995[[package]] 2996name = "stable_deref_trait" 2997version = "1.2.1" 2998source = "registry+https://github.com/rust-lang/crates.io-index" 2999checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 3000 3001[[package]] 3002name = "static-regular-grammar" 3003version = "2.0.2" 3004source = "registry+https://github.com/rust-lang/crates.io-index" 3005checksum = "4f4a6c40247579acfbb138c3cd7de3dab113ab4ac6227f1b7de7d626ee667957" 3006dependencies = [ 3007 "abnf", 3008 "btree-range-map", 3009 "ciborium", 3010 "hex_fmt", 3011 "indoc", 3012 "proc-macro-error", 3013 "proc-macro2", 3014 "quote", 3015 "serde", 3016 "sha2", 3017 "syn 2.0.106", 3018 "thiserror 1.0.69", 3019] 3020 3021[[package]] 3022name = "static_assertions" 3023version = "1.1.0" 3024source = "registry+https://github.com/rust-lang/crates.io-index" 3025checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 3026 3027[[package]] 3028name = "strsim" 3029version = "0.11.1" 3030source = "registry+https://github.com/rust-lang/crates.io-index" 3031checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 3032 3033[[package]] 3034name = "subtle" 3035version = "2.6.1" 3036source = "registry+https://github.com/rust-lang/crates.io-index" 3037checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 3038 3039[[package]] 3040name = "syn" 3041version = "1.0.109" 3042source = "registry+https://github.com/rust-lang/crates.io-index" 3043checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 3044dependencies = [ 3045 "proc-macro2", 3046 "quote", 3047 "unicode-ident", 3048] 3049 3050[[package]] 3051name = "syn" 3052version = "2.0.106" 3053source = "registry+https://github.com/rust-lang/crates.io-index" 3054checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" 3055dependencies = [ 3056 "proc-macro2", 3057 "quote", 3058 "unicode-ident", 3059] 3060 3061[[package]] 3062name = "sync_wrapper" 3063version = "1.0.2" 3064source = "registry+https://github.com/rust-lang/crates.io-index" 3065checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 3066dependencies = [ 3067 "futures-core", 3068] 3069 3070[[package]] 3071name = "synstructure" 3072version = "0.13.2" 3073source = "registry+https://github.com/rust-lang/crates.io-index" 3074checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 3075dependencies = [ 3076 "proc-macro2", 3077 "quote", 3078 "syn 2.0.106", 3079] 3080 3081[[package]] 3082name = "system-configuration" 3083version = "0.6.1" 3084source = "registry+https://github.com/rust-lang/crates.io-index" 3085checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" 3086dependencies = [ 3087 "bitflags", 3088 "core-foundation", 3089 "system-configuration-sys", 3090] 3091 3092[[package]] 3093name = "system-configuration-sys" 3094version = "0.6.0" 3095source = "registry+https://github.com/rust-lang/crates.io-index" 3096checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 3097dependencies = [ 3098 "core-foundation-sys", 3099 "libc", 3100] 3101 3102[[package]] 3103name = "tempfile" 3104version = "3.23.0" 3105source = "registry+https://github.com/rust-lang/crates.io-index" 3106checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" 3107dependencies = [ 3108 "fastrand", 3109 "getrandom 0.3.4", 3110 "once_cell", 3111 "rustix", 3112 "windows-sys 0.61.2", 3113] 3114 3115[[package]] 3116name = "thiserror" 3117version = "1.0.69" 3118source = "registry+https://github.com/rust-lang/crates.io-index" 3119checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 3120dependencies = [ 3121 "thiserror-impl 1.0.69", 3122] 3123 3124[[package]] 3125name = "thiserror" 3126version = "2.0.17" 3127source = "registry+https://github.com/rust-lang/crates.io-index" 3128checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 3129dependencies = [ 3130 "thiserror-impl 2.0.17", 3131] 3132 3133[[package]] 3134name = "thiserror-impl" 3135version = "1.0.69" 3136source = "registry+https://github.com/rust-lang/crates.io-index" 3137checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 3138dependencies = [ 3139 "proc-macro2", 3140 "quote", 3141 "syn 2.0.106", 3142] 3143 3144[[package]] 3145name = "thiserror-impl" 3146version = "2.0.17" 3147source = "registry+https://github.com/rust-lang/crates.io-index" 3148checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 3149dependencies = [ 3150 "proc-macro2", 3151 "quote", 3152 "syn 2.0.106", 3153] 3154 3155[[package]] 3156name = "threadpool" 3157version = "1.8.1" 3158source = "registry+https://github.com/rust-lang/crates.io-index" 3159checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" 3160dependencies = [ 3161 "num_cpus", 3162] 3163 3164[[package]] 3165name = "time" 3166version = "0.3.44" 3167source = "registry+https://github.com/rust-lang/crates.io-index" 3168checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" 3169dependencies = [ 3170 "deranged", 3171 "libc", 3172 "num-conv", 3173 "num_threads", 3174 "powerfmt", 3175 "serde", 3176 "time-core", 3177] 3178 3179[[package]] 3180name = "time-core" 3181version = "0.1.6" 3182source = "registry+https://github.com/rust-lang/crates.io-index" 3183checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" 3184 3185[[package]] 3186name = "tiny_http" 3187version = "0.12.0" 3188source = "registry+https://github.com/rust-lang/crates.io-index" 3189checksum = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82" 3190dependencies = [ 3191 "ascii", 3192 "chunked_transfer", 3193 "httpdate", 3194 "log", 3195] 3196 3197[[package]] 3198name = "tinystr" 3199version = "0.8.1" 3200source = "registry+https://github.com/rust-lang/crates.io-index" 3201checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" 3202dependencies = [ 3203 "displaydoc", 3204 "zerovec", 3205] 3206 3207[[package]] 3208name = "tinyvec" 3209version = "1.10.0" 3210source = "registry+https://github.com/rust-lang/crates.io-index" 3211checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" 3212dependencies = [ 3213 "tinyvec_macros", 3214] 3215 3216[[package]] 3217name = "tinyvec_macros" 3218version = "0.1.1" 3219source = "registry+https://github.com/rust-lang/crates.io-index" 3220checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3221 3222[[package]] 3223name = "tokio" 3224version = "1.48.0" 3225source = "registry+https://github.com/rust-lang/crates.io-index" 3226checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" 3227dependencies = [ 3228 "bytes", 3229 "libc", 3230 "mio", 3231 "parking_lot", 3232 "pin-project-lite", 3233 "signal-hook-registry", 3234 "socket2 0.6.1", 3235 "tokio-macros", 3236 "windows-sys 0.61.2", 3237] 3238 3239[[package]] 3240name = "tokio-macros" 3241version = "2.6.0" 3242source = "registry+https://github.com/rust-lang/crates.io-index" 3243checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" 3244dependencies = [ 3245 "proc-macro2", 3246 "quote", 3247 "syn 2.0.106", 3248] 3249 3250[[package]] 3251name = "tokio-native-tls" 3252version = "0.3.1" 3253source = "registry+https://github.com/rust-lang/crates.io-index" 3254checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 3255dependencies = [ 3256 "native-tls", 3257 "tokio", 3258] 3259 3260[[package]] 3261name = "tokio-rustls" 3262version = "0.26.4" 3263source = "registry+https://github.com/rust-lang/crates.io-index" 3264checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 3265dependencies = [ 3266 "rustls", 3267 "tokio", 3268] 3269 3270[[package]] 3271name = "tokio-util" 3272version = "0.7.16" 3273source = "registry+https://github.com/rust-lang/crates.io-index" 3274checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5" 3275dependencies = [ 3276 "bytes", 3277 "futures-core", 3278 "futures-sink", 3279 "pin-project-lite", 3280 "tokio", 3281] 3282 3283[[package]] 3284name = "tower" 3285version = "0.5.2" 3286source = "registry+https://github.com/rust-lang/crates.io-index" 3287checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 3288dependencies = [ 3289 "futures-core", 3290 "futures-util", 3291 "pin-project-lite", 3292 "sync_wrapper", 3293 "tokio", 3294 "tower-layer", 3295 "tower-service", 3296] 3297 3298[[package]] 3299name = "tower-http" 3300version = "0.6.6" 3301source = "registry+https://github.com/rust-lang/crates.io-index" 3302checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" 3303dependencies = [ 3304 "bitflags", 3305 "bytes", 3306 "futures-util", 3307 "http", 3308 "http-body", 3309 "iri-string", 3310 "pin-project-lite", 3311 "tower", 3312 "tower-layer", 3313 "tower-service", 3314] 3315 3316[[package]] 3317name = "tower-layer" 3318version = "0.3.3" 3319source = "registry+https://github.com/rust-lang/crates.io-index" 3320checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 3321 3322[[package]] 3323name = "tower-service" 3324version = "0.3.3" 3325source = "registry+https://github.com/rust-lang/crates.io-index" 3326checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 3327 3328[[package]] 3329name = "tracing" 3330version = "0.1.41" 3331source = "registry+https://github.com/rust-lang/crates.io-index" 3332checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 3333dependencies = [ 3334 "pin-project-lite", 3335 "tracing-attributes", 3336 "tracing-core", 3337] 3338 3339[[package]] 3340name = "tracing-attributes" 3341version = "0.1.30" 3342source = "registry+https://github.com/rust-lang/crates.io-index" 3343checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" 3344dependencies = [ 3345 "proc-macro2", 3346 "quote", 3347 "syn 2.0.106", 3348] 3349 3350[[package]] 3351name = "tracing-core" 3352version = "0.1.34" 3353source = "registry+https://github.com/rust-lang/crates.io-index" 3354checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" 3355dependencies = [ 3356 "once_cell", 3357] 3358 3359[[package]] 3360name = "trait-variant" 3361version = "0.1.2" 3362source = "registry+https://github.com/rust-lang/crates.io-index" 3363checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" 3364dependencies = [ 3365 "proc-macro2", 3366 "quote", 3367 "syn 2.0.106", 3368] 3369 3370[[package]] 3371name = "try-lock" 3372version = "0.2.5" 3373source = "registry+https://github.com/rust-lang/crates.io-index" 3374checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 3375 3376[[package]] 3377name = "twoway" 3378version = "0.1.8" 3379source = "registry+https://github.com/rust-lang/crates.io-index" 3380checksum = "59b11b2b5241ba34be09c3cc85a36e56e48f9888862e19cedf23336d35316ed1" 3381dependencies = [ 3382 "memchr", 3383] 3384 3385[[package]] 3386name = "typenum" 3387version = "1.19.0" 3388source = "registry+https://github.com/rust-lang/crates.io-index" 3389checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 3390 3391[[package]] 3392name = "unicase" 3393version = "2.8.1" 3394source = "registry+https://github.com/rust-lang/crates.io-index" 3395checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" 3396 3397[[package]] 3398name = "unicode-ident" 3399version = "1.0.19" 3400source = "registry+https://github.com/rust-lang/crates.io-index" 3401checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" 3402 3403[[package]] 3404name = "unicode-width" 3405version = "0.1.14" 3406source = "registry+https://github.com/rust-lang/crates.io-index" 3407checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 3408 3409[[package]] 3410name = "unsigned-varint" 3411version = "0.8.0" 3412source = "registry+https://github.com/rust-lang/crates.io-index" 3413checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 3414 3415[[package]] 3416name = "untrusted" 3417version = "0.9.0" 3418source = "registry+https://github.com/rust-lang/crates.io-index" 3419checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 3420 3421[[package]] 3422name = "url" 3423version = "2.5.7" 3424source = "registry+https://github.com/rust-lang/crates.io-index" 3425checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" 3426dependencies = [ 3427 "form_urlencoded", 3428 "idna", 3429 "percent-encoding", 3430 "serde", 3431] 3432 3433[[package]] 3434name = "urlencoding" 3435version = "2.1.3" 3436source = "registry+https://github.com/rust-lang/crates.io-index" 3437checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 3438 3439[[package]] 3440name = "utf8_iter" 3441version = "1.0.4" 3442source = "registry+https://github.com/rust-lang/crates.io-index" 3443checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 3444 3445[[package]] 3446name = "utf8parse" 3447version = "0.2.2" 3448source = "registry+https://github.com/rust-lang/crates.io-index" 3449checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 3450 3451[[package]] 3452name = "vcpkg" 3453version = "0.2.15" 3454source = "registry+https://github.com/rust-lang/crates.io-index" 3455checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3456 3457[[package]] 3458name = "version_check" 3459version = "0.9.5" 3460source = "registry+https://github.com/rust-lang/crates.io-index" 3461checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 3462 3463[[package]] 3464name = "walkdir" 3465version = "2.5.0" 3466source = "registry+https://github.com/rust-lang/crates.io-index" 3467checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 3468dependencies = [ 3469 "same-file", 3470 "winapi-util", 3471] 3472 3473[[package]] 3474name = "want" 3475version = "0.3.1" 3476source = "registry+https://github.com/rust-lang/crates.io-index" 3477checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 3478dependencies = [ 3479 "try-lock", 3480] 3481 3482[[package]] 3483name = "wasi" 3484version = "0.11.1+wasi-snapshot-preview1" 3485source = "registry+https://github.com/rust-lang/crates.io-index" 3486checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 3487 3488[[package]] 3489name = "wasip2" 3490version = "1.0.1+wasi-0.2.4" 3491source = "registry+https://github.com/rust-lang/crates.io-index" 3492checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 3493dependencies = [ 3494 "wit-bindgen", 3495] 3496 3497[[package]] 3498name = "wasm-bindgen" 3499version = "0.2.104" 3500source = "registry+https://github.com/rust-lang/crates.io-index" 3501checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d" 3502dependencies = [ 3503 "cfg-if", 3504 "once_cell", 3505 "rustversion", 3506 "wasm-bindgen-macro", 3507 "wasm-bindgen-shared", 3508] 3509 3510[[package]] 3511name = "wasm-bindgen-backend" 3512version = "0.2.104" 3513source = "registry+https://github.com/rust-lang/crates.io-index" 3514checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19" 3515dependencies = [ 3516 "bumpalo", 3517 "log", 3518 "proc-macro2", 3519 "quote", 3520 "syn 2.0.106", 3521 "wasm-bindgen-shared", 3522] 3523 3524[[package]] 3525name = "wasm-bindgen-futures" 3526version = "0.4.54" 3527source = "registry+https://github.com/rust-lang/crates.io-index" 3528checksum = "7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c" 3529dependencies = [ 3530 "cfg-if", 3531 "js-sys", 3532 "once_cell", 3533 "wasm-bindgen", 3534 "web-sys", 3535] 3536 3537[[package]] 3538name = "wasm-bindgen-macro" 3539version = "0.2.104" 3540source = "registry+https://github.com/rust-lang/crates.io-index" 3541checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119" 3542dependencies = [ 3543 "quote", 3544 "wasm-bindgen-macro-support", 3545] 3546 3547[[package]] 3548name = "wasm-bindgen-macro-support" 3549version = "0.2.104" 3550source = "registry+https://github.com/rust-lang/crates.io-index" 3551checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7" 3552dependencies = [ 3553 "proc-macro2", 3554 "quote", 3555 "syn 2.0.106", 3556 "wasm-bindgen-backend", 3557 "wasm-bindgen-shared", 3558] 3559 3560[[package]] 3561name = "wasm-bindgen-shared" 3562version = "0.2.104" 3563source = "registry+https://github.com/rust-lang/crates.io-index" 3564checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1" 3565dependencies = [ 3566 "unicode-ident", 3567] 3568 3569[[package]] 3570name = "web-sys" 3571version = "0.3.81" 3572source = "registry+https://github.com/rust-lang/crates.io-index" 3573checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120" 3574dependencies = [ 3575 "js-sys", 3576 "wasm-bindgen", 3577] 3578 3579[[package]] 3580name = "web-time" 3581version = "1.1.0" 3582source = "registry+https://github.com/rust-lang/crates.io-index" 3583checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 3584dependencies = [ 3585 "js-sys", 3586 "wasm-bindgen", 3587] 3588 3589[[package]] 3590name = "webbrowser" 3591version = "0.8.15" 3592source = "registry+https://github.com/rust-lang/crates.io-index" 3593checksum = "db67ae75a9405634f5882791678772c94ff5f16a66535aae186e26aa0841fc8b" 3594dependencies = [ 3595 "core-foundation", 3596 "home", 3597 "jni", 3598 "log", 3599 "ndk-context", 3600 "objc", 3601 "raw-window-handle", 3602 "url", 3603 "web-sys", 3604] 3605 3606[[package]] 3607name = "webpki-roots" 3608version = "1.0.3" 3609source = "registry+https://github.com/rust-lang/crates.io-index" 3610checksum = "32b130c0d2d49f8b6889abc456e795e82525204f27c42cf767cf0d7734e089b8" 3611dependencies = [ 3612 "rustls-pki-types", 3613] 3614 3615[[package]] 3616name = "widestring" 3617version = "1.2.1" 3618source = "registry+https://github.com/rust-lang/crates.io-index" 3619checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" 3620 3621[[package]] 3622name = "winapi-util" 3623version = "0.1.11" 3624source = "registry+https://github.com/rust-lang/crates.io-index" 3625checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" 3626dependencies = [ 3627 "windows-sys 0.61.2", 3628] 3629 3630[[package]] 3631name = "windows-core" 3632version = "0.62.2" 3633source = "registry+https://github.com/rust-lang/crates.io-index" 3634checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 3635dependencies = [ 3636 "windows-implement", 3637 "windows-interface", 3638 "windows-link 0.2.1", 3639 "windows-result 0.4.1", 3640 "windows-strings 0.5.1", 3641] 3642 3643[[package]] 3644name = "windows-implement" 3645version = "0.60.2" 3646source = "registry+https://github.com/rust-lang/crates.io-index" 3647checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 3648dependencies = [ 3649 "proc-macro2", 3650 "quote", 3651 "syn 2.0.106", 3652] 3653 3654[[package]] 3655name = "windows-interface" 3656version = "0.59.3" 3657source = "registry+https://github.com/rust-lang/crates.io-index" 3658checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 3659dependencies = [ 3660 "proc-macro2", 3661 "quote", 3662 "syn 2.0.106", 3663] 3664 3665[[package]] 3666name = "windows-link" 3667version = "0.1.3" 3668source = "registry+https://github.com/rust-lang/crates.io-index" 3669checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 3670 3671[[package]] 3672name = "windows-link" 3673version = "0.2.1" 3674source = "registry+https://github.com/rust-lang/crates.io-index" 3675checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 3676 3677[[package]] 3678name = "windows-registry" 3679version = "0.5.3" 3680source = "registry+https://github.com/rust-lang/crates.io-index" 3681checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e" 3682dependencies = [ 3683 "windows-link 0.1.3", 3684 "windows-result 0.3.4", 3685 "windows-strings 0.4.2", 3686] 3687 3688[[package]] 3689name = "windows-result" 3690version = "0.3.4" 3691source = "registry+https://github.com/rust-lang/crates.io-index" 3692checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 3693dependencies = [ 3694 "windows-link 0.1.3", 3695] 3696 3697[[package]] 3698name = "windows-result" 3699version = "0.4.1" 3700source = "registry+https://github.com/rust-lang/crates.io-index" 3701checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 3702dependencies = [ 3703 "windows-link 0.2.1", 3704] 3705 3706[[package]] 3707name = "windows-strings" 3708version = "0.4.2" 3709source = "registry+https://github.com/rust-lang/crates.io-index" 3710checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 3711dependencies = [ 3712 "windows-link 0.1.3", 3713] 3714 3715[[package]] 3716name = "windows-strings" 3717version = "0.5.1" 3718source = "registry+https://github.com/rust-lang/crates.io-index" 3719checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 3720dependencies = [ 3721 "windows-link 0.2.1", 3722] 3723 3724[[package]] 3725name = "windows-sys" 3726version = "0.45.0" 3727source = "registry+https://github.com/rust-lang/crates.io-index" 3728checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 3729dependencies = [ 3730 "windows-targets 0.42.2", 3731] 3732 3733[[package]] 3734name = "windows-sys" 3735version = "0.48.0" 3736source = "registry+https://github.com/rust-lang/crates.io-index" 3737checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3738dependencies = [ 3739 "windows-targets 0.48.5", 3740] 3741 3742[[package]] 3743name = "windows-sys" 3744version = "0.52.0" 3745source = "registry+https://github.com/rust-lang/crates.io-index" 3746checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3747dependencies = [ 3748 "windows-targets 0.52.6", 3749] 3750 3751[[package]] 3752name = "windows-sys" 3753version = "0.59.0" 3754source = "registry+https://github.com/rust-lang/crates.io-index" 3755checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 3756dependencies = [ 3757 "windows-targets 0.52.6", 3758] 3759 3760[[package]] 3761name = "windows-sys" 3762version = "0.60.2" 3763source = "registry+https://github.com/rust-lang/crates.io-index" 3764checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 3765dependencies = [ 3766 "windows-targets 0.53.5", 3767] 3768 3769[[package]] 3770name = "windows-sys" 3771version = "0.61.2" 3772source = "registry+https://github.com/rust-lang/crates.io-index" 3773checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 3774dependencies = [ 3775 "windows-link 0.2.1", 3776] 3777 3778[[package]] 3779name = "windows-targets" 3780version = "0.42.2" 3781source = "registry+https://github.com/rust-lang/crates.io-index" 3782checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 3783dependencies = [ 3784 "windows_aarch64_gnullvm 0.42.2", 3785 "windows_aarch64_msvc 0.42.2", 3786 "windows_i686_gnu 0.42.2", 3787 "windows_i686_msvc 0.42.2", 3788 "windows_x86_64_gnu 0.42.2", 3789 "windows_x86_64_gnullvm 0.42.2", 3790 "windows_x86_64_msvc 0.42.2", 3791] 3792 3793[[package]] 3794name = "windows-targets" 3795version = "0.48.5" 3796source = "registry+https://github.com/rust-lang/crates.io-index" 3797checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3798dependencies = [ 3799 "windows_aarch64_gnullvm 0.48.5", 3800 "windows_aarch64_msvc 0.48.5", 3801 "windows_i686_gnu 0.48.5", 3802 "windows_i686_msvc 0.48.5", 3803 "windows_x86_64_gnu 0.48.5", 3804 "windows_x86_64_gnullvm 0.48.5", 3805 "windows_x86_64_msvc 0.48.5", 3806] 3807 3808[[package]] 3809name = "windows-targets" 3810version = "0.52.6" 3811source = "registry+https://github.com/rust-lang/crates.io-index" 3812checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 3813dependencies = [ 3814 "windows_aarch64_gnullvm 0.52.6", 3815 "windows_aarch64_msvc 0.52.6", 3816 "windows_i686_gnu 0.52.6", 3817 "windows_i686_gnullvm 0.52.6", 3818 "windows_i686_msvc 0.52.6", 3819 "windows_x86_64_gnu 0.52.6", 3820 "windows_x86_64_gnullvm 0.52.6", 3821 "windows_x86_64_msvc 0.52.6", 3822] 3823 3824[[package]] 3825name = "windows-targets" 3826version = "0.53.5" 3827source = "registry+https://github.com/rust-lang/crates.io-index" 3828checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 3829dependencies = [ 3830 "windows-link 0.2.1", 3831 "windows_aarch64_gnullvm 0.53.1", 3832 "windows_aarch64_msvc 0.53.1", 3833 "windows_i686_gnu 0.53.1", 3834 "windows_i686_gnullvm 0.53.1", 3835 "windows_i686_msvc 0.53.1", 3836 "windows_x86_64_gnu 0.53.1", 3837 "windows_x86_64_gnullvm 0.53.1", 3838 "windows_x86_64_msvc 0.53.1", 3839] 3840 3841[[package]] 3842name = "windows_aarch64_gnullvm" 3843version = "0.42.2" 3844source = "registry+https://github.com/rust-lang/crates.io-index" 3845checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 3846 3847[[package]] 3848name = "windows_aarch64_gnullvm" 3849version = "0.48.5" 3850source = "registry+https://github.com/rust-lang/crates.io-index" 3851checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3852 3853[[package]] 3854name = "windows_aarch64_gnullvm" 3855version = "0.52.6" 3856source = "registry+https://github.com/rust-lang/crates.io-index" 3857checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 3858 3859[[package]] 3860name = "windows_aarch64_gnullvm" 3861version = "0.53.1" 3862source = "registry+https://github.com/rust-lang/crates.io-index" 3863checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 3864 3865[[package]] 3866name = "windows_aarch64_msvc" 3867version = "0.42.2" 3868source = "registry+https://github.com/rust-lang/crates.io-index" 3869checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 3870 3871[[package]] 3872name = "windows_aarch64_msvc" 3873version = "0.48.5" 3874source = "registry+https://github.com/rust-lang/crates.io-index" 3875checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3876 3877[[package]] 3878name = "windows_aarch64_msvc" 3879version = "0.52.6" 3880source = "registry+https://github.com/rust-lang/crates.io-index" 3881checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 3882 3883[[package]] 3884name = "windows_aarch64_msvc" 3885version = "0.53.1" 3886source = "registry+https://github.com/rust-lang/crates.io-index" 3887checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 3888 3889[[package]] 3890name = "windows_i686_gnu" 3891version = "0.42.2" 3892source = "registry+https://github.com/rust-lang/crates.io-index" 3893checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 3894 3895[[package]] 3896name = "windows_i686_gnu" 3897version = "0.48.5" 3898source = "registry+https://github.com/rust-lang/crates.io-index" 3899checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3900 3901[[package]] 3902name = "windows_i686_gnu" 3903version = "0.52.6" 3904source = "registry+https://github.com/rust-lang/crates.io-index" 3905checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 3906 3907[[package]] 3908name = "windows_i686_gnu" 3909version = "0.53.1" 3910source = "registry+https://github.com/rust-lang/crates.io-index" 3911checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 3912 3913[[package]] 3914name = "windows_i686_gnullvm" 3915version = "0.52.6" 3916source = "registry+https://github.com/rust-lang/crates.io-index" 3917checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 3918 3919[[package]] 3920name = "windows_i686_gnullvm" 3921version = "0.53.1" 3922source = "registry+https://github.com/rust-lang/crates.io-index" 3923checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 3924 3925[[package]] 3926name = "windows_i686_msvc" 3927version = "0.42.2" 3928source = "registry+https://github.com/rust-lang/crates.io-index" 3929checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 3930 3931[[package]] 3932name = "windows_i686_msvc" 3933version = "0.48.5" 3934source = "registry+https://github.com/rust-lang/crates.io-index" 3935checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3936 3937[[package]] 3938name = "windows_i686_msvc" 3939version = "0.52.6" 3940source = "registry+https://github.com/rust-lang/crates.io-index" 3941checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 3942 3943[[package]] 3944name = "windows_i686_msvc" 3945version = "0.53.1" 3946source = "registry+https://github.com/rust-lang/crates.io-index" 3947checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 3948 3949[[package]] 3950name = "windows_x86_64_gnu" 3951version = "0.42.2" 3952source = "registry+https://github.com/rust-lang/crates.io-index" 3953checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 3954 3955[[package]] 3956name = "windows_x86_64_gnu" 3957version = "0.48.5" 3958source = "registry+https://github.com/rust-lang/crates.io-index" 3959checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3960 3961[[package]] 3962name = "windows_x86_64_gnu" 3963version = "0.52.6" 3964source = "registry+https://github.com/rust-lang/crates.io-index" 3965checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 3966 3967[[package]] 3968name = "windows_x86_64_gnu" 3969version = "0.53.1" 3970source = "registry+https://github.com/rust-lang/crates.io-index" 3971checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 3972 3973[[package]] 3974name = "windows_x86_64_gnullvm" 3975version = "0.42.2" 3976source = "registry+https://github.com/rust-lang/crates.io-index" 3977checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 3978 3979[[package]] 3980name = "windows_x86_64_gnullvm" 3981version = "0.48.5" 3982source = "registry+https://github.com/rust-lang/crates.io-index" 3983checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3984 3985[[package]] 3986name = "windows_x86_64_gnullvm" 3987version = "0.52.6" 3988source = "registry+https://github.com/rust-lang/crates.io-index" 3989checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 3990 3991[[package]] 3992name = "windows_x86_64_gnullvm" 3993version = "0.53.1" 3994source = "registry+https://github.com/rust-lang/crates.io-index" 3995checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 3996 3997[[package]] 3998name = "windows_x86_64_msvc" 3999version = "0.42.2" 4000source = "registry+https://github.com/rust-lang/crates.io-index" 4001checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 4002 4003[[package]] 4004name = "windows_x86_64_msvc" 4005version = "0.48.5" 4006source = "registry+https://github.com/rust-lang/crates.io-index" 4007checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 4008 4009[[package]] 4010name = "windows_x86_64_msvc" 4011version = "0.52.6" 4012source = "registry+https://github.com/rust-lang/crates.io-index" 4013checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 4014 4015[[package]] 4016name = "windows_x86_64_msvc" 4017version = "0.53.1" 4018source = "registry+https://github.com/rust-lang/crates.io-index" 4019checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 4020 4021[[package]] 4022name = "winreg" 4023version = "0.50.0" 4024source = "registry+https://github.com/rust-lang/crates.io-index" 4025checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 4026dependencies = [ 4027 "cfg-if", 4028 "windows-sys 0.48.0", 4029] 4030 4031[[package]] 4032name = "wit-bindgen" 4033version = "0.46.0" 4034source = "registry+https://github.com/rust-lang/crates.io-index" 4035checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 4036 4037[[package]] 4038name = "writeable" 4039version = "0.6.1" 4040source = "registry+https://github.com/rust-lang/crates.io-index" 4041checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" 4042 4043[[package]] 4044name = "yansi" 4045version = "1.0.1" 4046source = "registry+https://github.com/rust-lang/crates.io-index" 4047checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 4048 4049[[package]] 4050name = "yoke" 4051version = "0.8.0" 4052source = "registry+https://github.com/rust-lang/crates.io-index" 4053checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" 4054dependencies = [ 4055 "serde", 4056 "stable_deref_trait", 4057 "yoke-derive", 4058 "zerofrom", 4059] 4060 4061[[package]] 4062name = "yoke-derive" 4063version = "0.8.0" 4064source = "registry+https://github.com/rust-lang/crates.io-index" 4065checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" 4066dependencies = [ 4067 "proc-macro2", 4068 "quote", 4069 "syn 2.0.106", 4070 "synstructure", 4071] 4072 4073[[package]] 4074name = "zerocopy" 4075version = "0.8.27" 4076source = "registry+https://github.com/rust-lang/crates.io-index" 4077checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" 4078dependencies = [ 4079 "zerocopy-derive", 4080] 4081 4082[[package]] 4083name = "zerocopy-derive" 4084version = "0.8.27" 4085source = "registry+https://github.com/rust-lang/crates.io-index" 4086checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" 4087dependencies = [ 4088 "proc-macro2", 4089 "quote", 4090 "syn 2.0.106", 4091] 4092 4093[[package]] 4094name = "zerofrom" 4095version = "0.1.6" 4096source = "registry+https://github.com/rust-lang/crates.io-index" 4097checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 4098dependencies = [ 4099 "zerofrom-derive", 4100] 4101 4102[[package]] 4103name = "zerofrom-derive" 4104version = "0.1.6" 4105source = "registry+https://github.com/rust-lang/crates.io-index" 4106checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 4107dependencies = [ 4108 "proc-macro2", 4109 "quote", 4110 "syn 2.0.106", 4111 "synstructure", 4112] 4113 4114[[package]] 4115name = "zeroize" 4116version = "1.8.2" 4117source = "registry+https://github.com/rust-lang/crates.io-index" 4118checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 4119dependencies = [ 4120 "serde", 4121] 4122 4123[[package]] 4124name = "zerotrie" 4125version = "0.2.2" 4126source = "registry+https://github.com/rust-lang/crates.io-index" 4127checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" 4128dependencies = [ 4129 "displaydoc", 4130 "yoke", 4131 "zerofrom", 4132] 4133 4134[[package]] 4135name = "zerovec" 4136version = "0.11.4" 4137source = "registry+https://github.com/rust-lang/crates.io-index" 4138checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" 4139dependencies = [ 4140 "yoke", 4141 "zerofrom", 4142 "zerovec-derive", 4143] 4144 4145[[package]] 4146name = "zerovec-derive" 4147version = "0.11.1" 4148source = "registry+https://github.com/rust-lang/crates.io-index" 4149checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" 4150dependencies = [ 4151 "proc-macro2", 4152 "quote", 4153 "syn 2.0.106", 4154]