at main 77 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 = "aho-corasick" 7version = "1.1.4" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 10dependencies = [ 11 "memchr", 12] 13 14[[package]] 15name = "allocator-api2" 16version = "0.2.21" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 19 20[[package]] 21name = "android_system_properties" 22version = "0.1.5" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 25dependencies = [ 26 "libc", 27] 28 29[[package]] 30name = "anyhow" 31version = "1.0.100" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" 34 35[[package]] 36name = "async-trait" 37version = "0.1.89" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 40dependencies = [ 41 "proc-macro2", 42 "quote", 43 "syn 2.0.111", 44] 45 46[[package]] 47name = "atoi" 48version = "2.0.0" 49source = "registry+https://github.com/rust-lang/crates.io-index" 50checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" 51dependencies = [ 52 "num-traits", 53] 54 55[[package]] 56name = "atomic-waker" 57version = "1.1.2" 58source = "registry+https://github.com/rust-lang/crates.io-index" 59checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 60 61[[package]] 62name = "autocfg" 63version = "1.5.0" 64source = "registry+https://github.com/rust-lang/crates.io-index" 65checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 66 67[[package]] 68name = "axum" 69version = "0.7.9" 70source = "registry+https://github.com/rust-lang/crates.io-index" 71checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" 72dependencies = [ 73 "async-trait", 74 "axum-core", 75 "axum-macros", 76 "base64", 77 "bytes", 78 "futures-util", 79 "http", 80 "http-body", 81 "http-body-util", 82 "hyper", 83 "hyper-util", 84 "itoa", 85 "matchit", 86 "memchr", 87 "mime", 88 "multer", 89 "percent-encoding", 90 "pin-project-lite", 91 "rustversion", 92 "serde", 93 "serde_json", 94 "serde_path_to_error", 95 "serde_urlencoded", 96 "sha1", 97 "sync_wrapper", 98 "tokio", 99 "tokio-tungstenite", 100 "tower", 101 "tower-layer", 102 "tower-service", 103 "tracing", 104] 105 106[[package]] 107name = "axum-core" 108version = "0.4.5" 109source = "registry+https://github.com/rust-lang/crates.io-index" 110checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199" 111dependencies = [ 112 "async-trait", 113 "bytes", 114 "futures-util", 115 "http", 116 "http-body", 117 "http-body-util", 118 "mime", 119 "pin-project-lite", 120 "rustversion", 121 "sync_wrapper", 122 "tower-layer", 123 "tower-service", 124 "tracing", 125] 126 127[[package]] 128name = "axum-macros" 129version = "0.4.2" 130source = "registry+https://github.com/rust-lang/crates.io-index" 131checksum = "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce" 132dependencies = [ 133 "proc-macro2", 134 "quote", 135 "syn 2.0.111", 136] 137 138[[package]] 139name = "base-x" 140version = "0.2.11" 141source = "registry+https://github.com/rust-lang/crates.io-index" 142checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 143 144[[package]] 145name = "base16ct" 146version = "0.2.0" 147source = "registry+https://github.com/rust-lang/crates.io-index" 148checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 149 150[[package]] 151name = "base256emoji" 152version = "1.0.2" 153source = "registry+https://github.com/rust-lang/crates.io-index" 154checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c" 155dependencies = [ 156 "const-str", 157 "match-lookup", 158] 159 160[[package]] 161name = "base64" 162version = "0.22.1" 163source = "registry+https://github.com/rust-lang/crates.io-index" 164checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 165 166[[package]] 167name = "base64ct" 168version = "1.8.0" 169source = "registry+https://github.com/rust-lang/crates.io-index" 170checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" 171 172[[package]] 173name = "bitflags" 174version = "2.10.0" 175source = "registry+https://github.com/rust-lang/crates.io-index" 176checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 177dependencies = [ 178 "serde_core", 179] 180 181[[package]] 182name = "block-buffer" 183version = "0.10.4" 184source = "registry+https://github.com/rust-lang/crates.io-index" 185checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 186dependencies = [ 187 "generic-array", 188] 189 190[[package]] 191name = "bumpalo" 192version = "3.19.0" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 195 196[[package]] 197name = "byteorder" 198version = "1.5.0" 199source = "registry+https://github.com/rust-lang/crates.io-index" 200checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 201 202[[package]] 203name = "bytes" 204version = "1.11.0" 205source = "registry+https://github.com/rust-lang/crates.io-index" 206checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" 207 208[[package]] 209name = "cbor4ii" 210version = "0.2.14" 211source = "registry+https://github.com/rust-lang/crates.io-index" 212checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4" 213dependencies = [ 214 "serde", 215] 216 217[[package]] 218name = "cc" 219version = "1.2.47" 220source = "registry+https://github.com/rust-lang/crates.io-index" 221checksum = "cd405d82c84ff7f35739f175f67d8b9fb7687a0e84ccdc78bd3568839827cf07" 222dependencies = [ 223 "find-msvc-tools", 224 "shlex", 225] 226 227[[package]] 228name = "cfg-if" 229version = "1.0.4" 230source = "registry+https://github.com/rust-lang/crates.io-index" 231checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 232 233[[package]] 234name = "cfg_aliases" 235version = "0.2.1" 236source = "registry+https://github.com/rust-lang/crates.io-index" 237checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 238 239[[package]] 240name = "chrono" 241version = "0.4.42" 242source = "registry+https://github.com/rust-lang/crates.io-index" 243checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" 244dependencies = [ 245 "iana-time-zone", 246 "js-sys", 247 "num-traits", 248 "serde", 249 "wasm-bindgen", 250 "windows-link", 251] 252 253[[package]] 254name = "cid" 255version = "0.11.1" 256source = "registry+https://github.com/rust-lang/crates.io-index" 257checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" 258dependencies = [ 259 "core2", 260 "multibase", 261 "multihash", 262 "serde", 263 "serde_bytes", 264 "unsigned-varint", 265] 266 267[[package]] 268name = "concurrent-queue" 269version = "2.5.0" 270source = "registry+https://github.com/rust-lang/crates.io-index" 271checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 272dependencies = [ 273 "crossbeam-utils", 274] 275 276[[package]] 277name = "const-oid" 278version = "0.9.6" 279source = "registry+https://github.com/rust-lang/crates.io-index" 280checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 281 282[[package]] 283name = "const-str" 284version = "0.4.3" 285source = "registry+https://github.com/rust-lang/crates.io-index" 286checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" 287 288[[package]] 289name = "core-foundation-sys" 290version = "0.8.7" 291source = "registry+https://github.com/rust-lang/crates.io-index" 292checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 293 294[[package]] 295name = "core2" 296version = "0.4.0" 297source = "registry+https://github.com/rust-lang/crates.io-index" 298checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 299dependencies = [ 300 "memchr", 301] 302 303[[package]] 304name = "cpufeatures" 305version = "0.2.17" 306source = "registry+https://github.com/rust-lang/crates.io-index" 307checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 308dependencies = [ 309 "libc", 310] 311 312[[package]] 313name = "crc" 314version = "3.4.0" 315source = "registry+https://github.com/rust-lang/crates.io-index" 316checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" 317dependencies = [ 318 "crc-catalog", 319] 320 321[[package]] 322name = "crc-catalog" 323version = "2.4.0" 324source = "registry+https://github.com/rust-lang/crates.io-index" 325checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 326 327[[package]] 328name = "crossbeam-queue" 329version = "0.3.12" 330source = "registry+https://github.com/rust-lang/crates.io-index" 331checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" 332dependencies = [ 333 "crossbeam-utils", 334] 335 336[[package]] 337name = "crossbeam-utils" 338version = "0.8.21" 339source = "registry+https://github.com/rust-lang/crates.io-index" 340checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 341 342[[package]] 343name = "crypto-bigint" 344version = "0.5.5" 345source = "registry+https://github.com/rust-lang/crates.io-index" 346checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 347dependencies = [ 348 "generic-array", 349 "rand_core 0.6.4", 350 "subtle", 351 "zeroize", 352] 353 354[[package]] 355name = "crypto-common" 356version = "0.1.6" 357source = "registry+https://github.com/rust-lang/crates.io-index" 358checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 359dependencies = [ 360 "generic-array", 361 "typenum", 362] 363 364[[package]] 365name = "data-encoding" 366version = "2.9.0" 367source = "registry+https://github.com/rust-lang/crates.io-index" 368checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 369 370[[package]] 371name = "data-encoding-macro" 372version = "0.1.18" 373source = "registry+https://github.com/rust-lang/crates.io-index" 374checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d" 375dependencies = [ 376 "data-encoding", 377 "data-encoding-macro-internal", 378] 379 380[[package]] 381name = "data-encoding-macro-internal" 382version = "0.1.16" 383source = "registry+https://github.com/rust-lang/crates.io-index" 384checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" 385dependencies = [ 386 "data-encoding", 387 "syn 2.0.111", 388] 389 390[[package]] 391name = "der" 392version = "0.7.10" 393source = "registry+https://github.com/rust-lang/crates.io-index" 394checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 395dependencies = [ 396 "const-oid", 397 "pem-rfc7468", 398 "zeroize", 399] 400 401[[package]] 402name = "digest" 403version = "0.10.7" 404source = "registry+https://github.com/rust-lang/crates.io-index" 405checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 406dependencies = [ 407 "block-buffer", 408 "const-oid", 409 "crypto-common", 410 "subtle", 411] 412 413[[package]] 414name = "displaydoc" 415version = "0.2.5" 416source = "registry+https://github.com/rust-lang/crates.io-index" 417checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 418dependencies = [ 419 "proc-macro2", 420 "quote", 421 "syn 2.0.111", 422] 423 424[[package]] 425name = "dotenvy" 426version = "0.15.7" 427source = "registry+https://github.com/rust-lang/crates.io-index" 428checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 429 430[[package]] 431name = "ecdsa" 432version = "0.16.9" 433source = "registry+https://github.com/rust-lang/crates.io-index" 434checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 435dependencies = [ 436 "der", 437 "digest", 438 "elliptic-curve", 439 "rfc6979", 440 "signature", 441 "spki", 442] 443 444[[package]] 445name = "either" 446version = "1.15.0" 447source = "registry+https://github.com/rust-lang/crates.io-index" 448checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 449dependencies = [ 450 "serde", 451] 452 453[[package]] 454name = "elliptic-curve" 455version = "0.13.8" 456source = "registry+https://github.com/rust-lang/crates.io-index" 457checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 458dependencies = [ 459 "base16ct", 460 "crypto-bigint", 461 "digest", 462 "ff", 463 "generic-array", 464 "group", 465 "pkcs8", 466 "rand_core 0.6.4", 467 "sec1", 468 "subtle", 469 "zeroize", 470] 471 472[[package]] 473name = "encoding_rs" 474version = "0.8.35" 475source = "registry+https://github.com/rust-lang/crates.io-index" 476checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 477dependencies = [ 478 "cfg-if", 479] 480 481[[package]] 482name = "equivalent" 483version = "1.0.2" 484source = "registry+https://github.com/rust-lang/crates.io-index" 485checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 486 487[[package]] 488name = "etcetera" 489version = "0.8.0" 490source = "registry+https://github.com/rust-lang/crates.io-index" 491checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" 492dependencies = [ 493 "cfg-if", 494 "home", 495 "windows-sys 0.48.0", 496] 497 498[[package]] 499name = "event-listener" 500version = "5.4.1" 501source = "registry+https://github.com/rust-lang/crates.io-index" 502checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 503dependencies = [ 504 "concurrent-queue", 505 "parking", 506 "pin-project-lite", 507] 508 509[[package]] 510name = "ff" 511version = "0.13.1" 512source = "registry+https://github.com/rust-lang/crates.io-index" 513checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" 514dependencies = [ 515 "rand_core 0.6.4", 516 "subtle", 517] 518 519[[package]] 520name = "find-msvc-tools" 521version = "0.1.5" 522source = "registry+https://github.com/rust-lang/crates.io-index" 523checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844" 524 525[[package]] 526name = "flume" 527version = "0.11.1" 528source = "registry+https://github.com/rust-lang/crates.io-index" 529checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" 530dependencies = [ 531 "futures-core", 532 "futures-sink", 533 "spin", 534] 535 536[[package]] 537name = "foldhash" 538version = "0.1.5" 539source = "registry+https://github.com/rust-lang/crates.io-index" 540checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 541 542[[package]] 543name = "form_urlencoded" 544version = "1.2.2" 545source = "registry+https://github.com/rust-lang/crates.io-index" 546checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 547dependencies = [ 548 "percent-encoding", 549] 550 551[[package]] 552name = "futures" 553version = "0.3.31" 554source = "registry+https://github.com/rust-lang/crates.io-index" 555checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 556dependencies = [ 557 "futures-channel", 558 "futures-core", 559 "futures-executor", 560 "futures-io", 561 "futures-sink", 562 "futures-task", 563 "futures-util", 564] 565 566[[package]] 567name = "futures-channel" 568version = "0.3.31" 569source = "registry+https://github.com/rust-lang/crates.io-index" 570checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 571dependencies = [ 572 "futures-core", 573 "futures-sink", 574] 575 576[[package]] 577name = "futures-core" 578version = "0.3.31" 579source = "registry+https://github.com/rust-lang/crates.io-index" 580checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 581 582[[package]] 583name = "futures-executor" 584version = "0.3.31" 585source = "registry+https://github.com/rust-lang/crates.io-index" 586checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 587dependencies = [ 588 "futures-core", 589 "futures-task", 590 "futures-util", 591] 592 593[[package]] 594name = "futures-intrusive" 595version = "0.5.0" 596source = "registry+https://github.com/rust-lang/crates.io-index" 597checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" 598dependencies = [ 599 "futures-core", 600 "lock_api", 601 "parking_lot", 602] 603 604[[package]] 605name = "futures-io" 606version = "0.3.31" 607source = "registry+https://github.com/rust-lang/crates.io-index" 608checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 609 610[[package]] 611name = "futures-macro" 612version = "0.3.31" 613source = "registry+https://github.com/rust-lang/crates.io-index" 614checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 615dependencies = [ 616 "proc-macro2", 617 "quote", 618 "syn 2.0.111", 619] 620 621[[package]] 622name = "futures-sink" 623version = "0.3.31" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 626 627[[package]] 628name = "futures-task" 629version = "0.3.31" 630source = "registry+https://github.com/rust-lang/crates.io-index" 631checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 632 633[[package]] 634name = "futures-util" 635version = "0.3.31" 636source = "registry+https://github.com/rust-lang/crates.io-index" 637checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 638dependencies = [ 639 "futures-channel", 640 "futures-core", 641 "futures-io", 642 "futures-macro", 643 "futures-sink", 644 "futures-task", 645 "memchr", 646 "pin-project-lite", 647 "pin-utils", 648 "slab", 649] 650 651[[package]] 652name = "generic-array" 653version = "0.14.9" 654source = "registry+https://github.com/rust-lang/crates.io-index" 655checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2" 656dependencies = [ 657 "typenum", 658 "version_check", 659 "zeroize", 660] 661 662[[package]] 663name = "getrandom" 664version = "0.2.16" 665source = "registry+https://github.com/rust-lang/crates.io-index" 666checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 667dependencies = [ 668 "cfg-if", 669 "js-sys", 670 "libc", 671 "wasi", 672 "wasm-bindgen", 673] 674 675[[package]] 676name = "getrandom" 677version = "0.3.4" 678source = "registry+https://github.com/rust-lang/crates.io-index" 679checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 680dependencies = [ 681 "cfg-if", 682 "js-sys", 683 "libc", 684 "r-efi", 685 "wasip2", 686 "wasm-bindgen", 687] 688 689[[package]] 690name = "group" 691version = "0.13.0" 692source = "registry+https://github.com/rust-lang/crates.io-index" 693checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 694dependencies = [ 695 "ff", 696 "rand_core 0.6.4", 697 "subtle", 698] 699 700[[package]] 701name = "hashbrown" 702version = "0.15.5" 703source = "registry+https://github.com/rust-lang/crates.io-index" 704checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 705dependencies = [ 706 "allocator-api2", 707 "equivalent", 708 "foldhash", 709] 710 711[[package]] 712name = "hashbrown" 713version = "0.16.1" 714source = "registry+https://github.com/rust-lang/crates.io-index" 715checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 716 717[[package]] 718name = "hashlink" 719version = "0.10.0" 720source = "registry+https://github.com/rust-lang/crates.io-index" 721checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1" 722dependencies = [ 723 "hashbrown 0.15.5", 724] 725 726[[package]] 727name = "heck" 728version = "0.5.0" 729source = "registry+https://github.com/rust-lang/crates.io-index" 730checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 731 732[[package]] 733name = "hex" 734version = "0.4.3" 735source = "registry+https://github.com/rust-lang/crates.io-index" 736checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 737 738[[package]] 739name = "hkdf" 740version = "0.12.4" 741source = "registry+https://github.com/rust-lang/crates.io-index" 742checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 743dependencies = [ 744 "hmac", 745] 746 747[[package]] 748name = "hmac" 749version = "0.12.1" 750source = "registry+https://github.com/rust-lang/crates.io-index" 751checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 752dependencies = [ 753 "digest", 754] 755 756[[package]] 757name = "home" 758version = "0.5.9" 759source = "registry+https://github.com/rust-lang/crates.io-index" 760checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" 761dependencies = [ 762 "windows-sys 0.52.0", 763] 764 765[[package]] 766name = "http" 767version = "1.4.0" 768source = "registry+https://github.com/rust-lang/crates.io-index" 769checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" 770dependencies = [ 771 "bytes", 772 "itoa", 773] 774 775[[package]] 776name = "http-body" 777version = "1.0.1" 778source = "registry+https://github.com/rust-lang/crates.io-index" 779checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 780dependencies = [ 781 "bytes", 782 "http", 783] 784 785[[package]] 786name = "http-body-util" 787version = "0.1.3" 788source = "registry+https://github.com/rust-lang/crates.io-index" 789checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 790dependencies = [ 791 "bytes", 792 "futures-core", 793 "http", 794 "http-body", 795 "pin-project-lite", 796] 797 798[[package]] 799name = "http-range-header" 800version = "0.4.2" 801source = "registry+https://github.com/rust-lang/crates.io-index" 802checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c" 803 804[[package]] 805name = "httparse" 806version = "1.10.1" 807source = "registry+https://github.com/rust-lang/crates.io-index" 808checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 809 810[[package]] 811name = "httpdate" 812version = "1.0.3" 813source = "registry+https://github.com/rust-lang/crates.io-index" 814checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 815 816[[package]] 817name = "hyper" 818version = "1.8.1" 819source = "registry+https://github.com/rust-lang/crates.io-index" 820checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" 821dependencies = [ 822 "atomic-waker", 823 "bytes", 824 "futures-channel", 825 "futures-core", 826 "http", 827 "http-body", 828 "httparse", 829 "httpdate", 830 "itoa", 831 "pin-project-lite", 832 "pin-utils", 833 "smallvec", 834 "tokio", 835 "want", 836] 837 838[[package]] 839name = "hyper-rustls" 840version = "0.27.7" 841source = "registry+https://github.com/rust-lang/crates.io-index" 842checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 843dependencies = [ 844 "http", 845 "hyper", 846 "hyper-util", 847 "rustls", 848 "rustls-pki-types", 849 "tokio", 850 "tokio-rustls", 851 "tower-service", 852 "webpki-roots 1.0.4", 853] 854 855[[package]] 856name = "hyper-util" 857version = "0.1.18" 858source = "registry+https://github.com/rust-lang/crates.io-index" 859checksum = "52e9a2a24dc5c6821e71a7030e1e14b7b632acac55c40e9d2e082c621261bb56" 860dependencies = [ 861 "base64", 862 "bytes", 863 "futures-channel", 864 "futures-core", 865 "futures-util", 866 "http", 867 "http-body", 868 "hyper", 869 "ipnet", 870 "libc", 871 "percent-encoding", 872 "pin-project-lite", 873 "socket2", 874 "tokio", 875 "tower-service", 876 "tracing", 877] 878 879[[package]] 880name = "iana-time-zone" 881version = "0.1.64" 882source = "registry+https://github.com/rust-lang/crates.io-index" 883checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" 884dependencies = [ 885 "android_system_properties", 886 "core-foundation-sys", 887 "iana-time-zone-haiku", 888 "js-sys", 889 "log", 890 "wasm-bindgen", 891 "windows-core", 892] 893 894[[package]] 895name = "iana-time-zone-haiku" 896version = "0.1.2" 897source = "registry+https://github.com/rust-lang/crates.io-index" 898checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 899dependencies = [ 900 "cc", 901] 902 903[[package]] 904name = "icu_collections" 905version = "2.1.1" 906source = "registry+https://github.com/rust-lang/crates.io-index" 907checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" 908dependencies = [ 909 "displaydoc", 910 "potential_utf", 911 "yoke", 912 "zerofrom", 913 "zerovec", 914] 915 916[[package]] 917name = "icu_locale_core" 918version = "2.1.1" 919source = "registry+https://github.com/rust-lang/crates.io-index" 920checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" 921dependencies = [ 922 "displaydoc", 923 "litemap", 924 "tinystr", 925 "writeable", 926 "zerovec", 927] 928 929[[package]] 930name = "icu_normalizer" 931version = "2.1.1" 932source = "registry+https://github.com/rust-lang/crates.io-index" 933checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" 934dependencies = [ 935 "icu_collections", 936 "icu_normalizer_data", 937 "icu_properties", 938 "icu_provider", 939 "smallvec", 940 "zerovec", 941] 942 943[[package]] 944name = "icu_normalizer_data" 945version = "2.1.1" 946source = "registry+https://github.com/rust-lang/crates.io-index" 947checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" 948 949[[package]] 950name = "icu_properties" 951version = "2.1.1" 952source = "registry+https://github.com/rust-lang/crates.io-index" 953checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99" 954dependencies = [ 955 "icu_collections", 956 "icu_locale_core", 957 "icu_properties_data", 958 "icu_provider", 959 "zerotrie", 960 "zerovec", 961] 962 963[[package]] 964name = "icu_properties_data" 965version = "2.1.1" 966source = "registry+https://github.com/rust-lang/crates.io-index" 967checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899" 968 969[[package]] 970name = "icu_provider" 971version = "2.1.1" 972source = "registry+https://github.com/rust-lang/crates.io-index" 973checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" 974dependencies = [ 975 "displaydoc", 976 "icu_locale_core", 977 "writeable", 978 "yoke", 979 "zerofrom", 980 "zerotrie", 981 "zerovec", 982] 983 984[[package]] 985name = "idna" 986version = "1.1.0" 987source = "registry+https://github.com/rust-lang/crates.io-index" 988checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 989dependencies = [ 990 "idna_adapter", 991 "smallvec", 992 "utf8_iter", 993] 994 995[[package]] 996name = "idna_adapter" 997version = "1.2.1" 998source = "registry+https://github.com/rust-lang/crates.io-index" 999checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 1000dependencies = [ 1001 "icu_normalizer", 1002 "icu_properties", 1003] 1004 1005[[package]] 1006name = "indexmap" 1007version = "2.12.1" 1008source = "registry+https://github.com/rust-lang/crates.io-index" 1009checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2" 1010dependencies = [ 1011 "equivalent", 1012 "hashbrown 0.16.1", 1013] 1014 1015[[package]] 1016name = "ipld-core" 1017version = "0.4.2" 1018source = "registry+https://github.com/rust-lang/crates.io-index" 1019checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db" 1020dependencies = [ 1021 "cid", 1022 "serde", 1023 "serde_bytes", 1024] 1025 1026[[package]] 1027name = "ipnet" 1028version = "2.11.0" 1029source = "registry+https://github.com/rust-lang/crates.io-index" 1030checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 1031 1032[[package]] 1033name = "iri-string" 1034version = "0.7.9" 1035source = "registry+https://github.com/rust-lang/crates.io-index" 1036checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397" 1037dependencies = [ 1038 "memchr", 1039 "serde", 1040] 1041 1042[[package]] 1043name = "itoa" 1044version = "1.0.15" 1045source = "registry+https://github.com/rust-lang/crates.io-index" 1046checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 1047 1048[[package]] 1049name = "js-sys" 1050version = "0.3.82" 1051source = "registry+https://github.com/rust-lang/crates.io-index" 1052checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65" 1053dependencies = [ 1054 "once_cell", 1055 "wasm-bindgen", 1056] 1057 1058[[package]] 1059name = "k256" 1060version = "0.13.4" 1061source = "registry+https://github.com/rust-lang/crates.io-index" 1062checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" 1063dependencies = [ 1064 "cfg-if", 1065 "ecdsa", 1066 "elliptic-curve", 1067 "once_cell", 1068 "sha2", 1069 "signature", 1070] 1071 1072[[package]] 1073name = "lazy_static" 1074version = "1.5.0" 1075source = "registry+https://github.com/rust-lang/crates.io-index" 1076checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1077dependencies = [ 1078 "spin", 1079] 1080 1081[[package]] 1082name = "libc" 1083version = "0.2.177" 1084source = "registry+https://github.com/rust-lang/crates.io-index" 1085checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" 1086 1087[[package]] 1088name = "libm" 1089version = "0.2.15" 1090source = "registry+https://github.com/rust-lang/crates.io-index" 1091checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" 1092 1093[[package]] 1094name = "libredox" 1095version = "0.1.10" 1096source = "registry+https://github.com/rust-lang/crates.io-index" 1097checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" 1098dependencies = [ 1099 "bitflags", 1100 "libc", 1101 "redox_syscall", 1102] 1103 1104[[package]] 1105name = "libsqlite3-sys" 1106version = "0.30.1" 1107source = "registry+https://github.com/rust-lang/crates.io-index" 1108checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" 1109dependencies = [ 1110 "pkg-config", 1111 "vcpkg", 1112] 1113 1114[[package]] 1115name = "litemap" 1116version = "0.8.1" 1117source = "registry+https://github.com/rust-lang/crates.io-index" 1118checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" 1119 1120[[package]] 1121name = "lock_api" 1122version = "0.4.14" 1123source = "registry+https://github.com/rust-lang/crates.io-index" 1124checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 1125dependencies = [ 1126 "scopeguard", 1127] 1128 1129[[package]] 1130name = "log" 1131version = "0.4.28" 1132source = "registry+https://github.com/rust-lang/crates.io-index" 1133checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" 1134 1135[[package]] 1136name = "lru-slab" 1137version = "0.1.2" 1138source = "registry+https://github.com/rust-lang/crates.io-index" 1139checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 1140 1141[[package]] 1142name = "match-lookup" 1143version = "0.1.1" 1144source = "registry+https://github.com/rust-lang/crates.io-index" 1145checksum = "1265724d8cb29dbbc2b0f06fffb8bf1a8c0cf73a78eede9ba73a4a66c52a981e" 1146dependencies = [ 1147 "proc-macro2", 1148 "quote", 1149 "syn 1.0.109", 1150] 1151 1152[[package]] 1153name = "matchers" 1154version = "0.2.0" 1155source = "registry+https://github.com/rust-lang/crates.io-index" 1156checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 1157dependencies = [ 1158 "regex-automata", 1159] 1160 1161[[package]] 1162name = "matchit" 1163version = "0.7.3" 1164source = "registry+https://github.com/rust-lang/crates.io-index" 1165checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" 1166 1167[[package]] 1168name = "md-5" 1169version = "0.10.6" 1170source = "registry+https://github.com/rust-lang/crates.io-index" 1171checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 1172dependencies = [ 1173 "cfg-if", 1174 "digest", 1175] 1176 1177[[package]] 1178name = "memchr" 1179version = "2.7.6" 1180source = "registry+https://github.com/rust-lang/crates.io-index" 1181checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 1182 1183[[package]] 1184name = "mime" 1185version = "0.3.17" 1186source = "registry+https://github.com/rust-lang/crates.io-index" 1187checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1188 1189[[package]] 1190name = "mime_guess" 1191version = "2.0.5" 1192source = "registry+https://github.com/rust-lang/crates.io-index" 1193checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 1194dependencies = [ 1195 "mime", 1196 "unicase", 1197] 1198 1199[[package]] 1200name = "mio" 1201version = "1.1.0" 1202source = "registry+https://github.com/rust-lang/crates.io-index" 1203checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873" 1204dependencies = [ 1205 "libc", 1206 "wasi", 1207 "windows-sys 0.61.2", 1208] 1209 1210[[package]] 1211name = "moderation" 1212version = "0.1.0" 1213dependencies = [ 1214 "anyhow", 1215 "axum", 1216 "base64", 1217 "bytes", 1218 "chrono", 1219 "futures", 1220 "hex", 1221 "k256", 1222 "rand 0.8.5", 1223 "reqwest", 1224 "serde", 1225 "serde_bytes", 1226 "serde_ipld_dagcbor", 1227 "serde_json", 1228 "sqlx", 1229 "thiserror 2.0.17", 1230 "tokio", 1231 "tokio-stream", 1232 "tower-http", 1233 "tracing", 1234 "tracing-subscriber", 1235] 1236 1237[[package]] 1238name = "multer" 1239version = "3.1.0" 1240source = "registry+https://github.com/rust-lang/crates.io-index" 1241checksum = "83e87776546dc87511aa5ee218730c92b666d7264ab6ed41f9d215af9cd5224b" 1242dependencies = [ 1243 "bytes", 1244 "encoding_rs", 1245 "futures-util", 1246 "http", 1247 "httparse", 1248 "memchr", 1249 "mime", 1250 "spin", 1251 "version_check", 1252] 1253 1254[[package]] 1255name = "multibase" 1256version = "0.9.2" 1257source = "registry+https://github.com/rust-lang/crates.io-index" 1258checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77" 1259dependencies = [ 1260 "base-x", 1261 "base256emoji", 1262 "data-encoding", 1263 "data-encoding-macro", 1264] 1265 1266[[package]] 1267name = "multihash" 1268version = "0.19.3" 1269source = "registry+https://github.com/rust-lang/crates.io-index" 1270checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" 1271dependencies = [ 1272 "core2", 1273 "serde", 1274 "unsigned-varint", 1275] 1276 1277[[package]] 1278name = "nu-ansi-term" 1279version = "0.50.3" 1280source = "registry+https://github.com/rust-lang/crates.io-index" 1281checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" 1282dependencies = [ 1283 "windows-sys 0.60.2", 1284] 1285 1286[[package]] 1287name = "num-bigint-dig" 1288version = "0.8.6" 1289source = "registry+https://github.com/rust-lang/crates.io-index" 1290checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" 1291dependencies = [ 1292 "lazy_static", 1293 "libm", 1294 "num-integer", 1295 "num-iter", 1296 "num-traits", 1297 "rand 0.8.5", 1298 "smallvec", 1299 "zeroize", 1300] 1301 1302[[package]] 1303name = "num-integer" 1304version = "0.1.46" 1305source = "registry+https://github.com/rust-lang/crates.io-index" 1306checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 1307dependencies = [ 1308 "num-traits", 1309] 1310 1311[[package]] 1312name = "num-iter" 1313version = "0.1.45" 1314source = "registry+https://github.com/rust-lang/crates.io-index" 1315checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 1316dependencies = [ 1317 "autocfg", 1318 "num-integer", 1319 "num-traits", 1320] 1321 1322[[package]] 1323name = "num-traits" 1324version = "0.2.19" 1325source = "registry+https://github.com/rust-lang/crates.io-index" 1326checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1327dependencies = [ 1328 "autocfg", 1329 "libm", 1330] 1331 1332[[package]] 1333name = "once_cell" 1334version = "1.21.3" 1335source = "registry+https://github.com/rust-lang/crates.io-index" 1336checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 1337 1338[[package]] 1339name = "parking" 1340version = "2.2.1" 1341source = "registry+https://github.com/rust-lang/crates.io-index" 1342checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 1343 1344[[package]] 1345name = "parking_lot" 1346version = "0.12.5" 1347source = "registry+https://github.com/rust-lang/crates.io-index" 1348checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 1349dependencies = [ 1350 "lock_api", 1351 "parking_lot_core", 1352] 1353 1354[[package]] 1355name = "parking_lot_core" 1356version = "0.9.12" 1357source = "registry+https://github.com/rust-lang/crates.io-index" 1358checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 1359dependencies = [ 1360 "cfg-if", 1361 "libc", 1362 "redox_syscall", 1363 "smallvec", 1364 "windows-link", 1365] 1366 1367[[package]] 1368name = "pem-rfc7468" 1369version = "0.7.0" 1370source = "registry+https://github.com/rust-lang/crates.io-index" 1371checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 1372dependencies = [ 1373 "base64ct", 1374] 1375 1376[[package]] 1377name = "percent-encoding" 1378version = "2.3.2" 1379source = "registry+https://github.com/rust-lang/crates.io-index" 1380checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 1381 1382[[package]] 1383name = "pin-project-lite" 1384version = "0.2.16" 1385source = "registry+https://github.com/rust-lang/crates.io-index" 1386checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 1387 1388[[package]] 1389name = "pin-utils" 1390version = "0.1.0" 1391source = "registry+https://github.com/rust-lang/crates.io-index" 1392checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1393 1394[[package]] 1395name = "pkcs1" 1396version = "0.7.5" 1397source = "registry+https://github.com/rust-lang/crates.io-index" 1398checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 1399dependencies = [ 1400 "der", 1401 "pkcs8", 1402 "spki", 1403] 1404 1405[[package]] 1406name = "pkcs8" 1407version = "0.10.2" 1408source = "registry+https://github.com/rust-lang/crates.io-index" 1409checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 1410dependencies = [ 1411 "der", 1412 "spki", 1413] 1414 1415[[package]] 1416name = "pkg-config" 1417version = "0.3.32" 1418source = "registry+https://github.com/rust-lang/crates.io-index" 1419checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 1420 1421[[package]] 1422name = "potential_utf" 1423version = "0.1.4" 1424source = "registry+https://github.com/rust-lang/crates.io-index" 1425checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" 1426dependencies = [ 1427 "zerovec", 1428] 1429 1430[[package]] 1431name = "ppv-lite86" 1432version = "0.2.21" 1433source = "registry+https://github.com/rust-lang/crates.io-index" 1434checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 1435dependencies = [ 1436 "zerocopy", 1437] 1438 1439[[package]] 1440name = "proc-macro2" 1441version = "1.0.103" 1442source = "registry+https://github.com/rust-lang/crates.io-index" 1443checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" 1444dependencies = [ 1445 "unicode-ident", 1446] 1447 1448[[package]] 1449name = "quinn" 1450version = "0.11.9" 1451source = "registry+https://github.com/rust-lang/crates.io-index" 1452checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 1453dependencies = [ 1454 "bytes", 1455 "cfg_aliases", 1456 "pin-project-lite", 1457 "quinn-proto", 1458 "quinn-udp", 1459 "rustc-hash", 1460 "rustls", 1461 "socket2", 1462 "thiserror 2.0.17", 1463 "tokio", 1464 "tracing", 1465 "web-time", 1466] 1467 1468[[package]] 1469name = "quinn-proto" 1470version = "0.11.13" 1471source = "registry+https://github.com/rust-lang/crates.io-index" 1472checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" 1473dependencies = [ 1474 "bytes", 1475 "getrandom 0.3.4", 1476 "lru-slab", 1477 "rand 0.9.2", 1478 "ring", 1479 "rustc-hash", 1480 "rustls", 1481 "rustls-pki-types", 1482 "slab", 1483 "thiserror 2.0.17", 1484 "tinyvec", 1485 "tracing", 1486 "web-time", 1487] 1488 1489[[package]] 1490name = "quinn-udp" 1491version = "0.5.14" 1492source = "registry+https://github.com/rust-lang/crates.io-index" 1493checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 1494dependencies = [ 1495 "cfg_aliases", 1496 "libc", 1497 "once_cell", 1498 "socket2", 1499 "tracing", 1500 "windows-sys 0.60.2", 1501] 1502 1503[[package]] 1504name = "quote" 1505version = "1.0.42" 1506source = "registry+https://github.com/rust-lang/crates.io-index" 1507checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" 1508dependencies = [ 1509 "proc-macro2", 1510] 1511 1512[[package]] 1513name = "r-efi" 1514version = "5.3.0" 1515source = "registry+https://github.com/rust-lang/crates.io-index" 1516checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 1517 1518[[package]] 1519name = "rand" 1520version = "0.8.5" 1521source = "registry+https://github.com/rust-lang/crates.io-index" 1522checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1523dependencies = [ 1524 "libc", 1525 "rand_chacha 0.3.1", 1526 "rand_core 0.6.4", 1527] 1528 1529[[package]] 1530name = "rand" 1531version = "0.9.2" 1532source = "registry+https://github.com/rust-lang/crates.io-index" 1533checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 1534dependencies = [ 1535 "rand_chacha 0.9.0", 1536 "rand_core 0.9.3", 1537] 1538 1539[[package]] 1540name = "rand_chacha" 1541version = "0.3.1" 1542source = "registry+https://github.com/rust-lang/crates.io-index" 1543checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1544dependencies = [ 1545 "ppv-lite86", 1546 "rand_core 0.6.4", 1547] 1548 1549[[package]] 1550name = "rand_chacha" 1551version = "0.9.0" 1552source = "registry+https://github.com/rust-lang/crates.io-index" 1553checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 1554dependencies = [ 1555 "ppv-lite86", 1556 "rand_core 0.9.3", 1557] 1558 1559[[package]] 1560name = "rand_core" 1561version = "0.6.4" 1562source = "registry+https://github.com/rust-lang/crates.io-index" 1563checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1564dependencies = [ 1565 "getrandom 0.2.16", 1566] 1567 1568[[package]] 1569name = "rand_core" 1570version = "0.9.3" 1571source = "registry+https://github.com/rust-lang/crates.io-index" 1572checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 1573dependencies = [ 1574 "getrandom 0.3.4", 1575] 1576 1577[[package]] 1578name = "redox_syscall" 1579version = "0.5.18" 1580source = "registry+https://github.com/rust-lang/crates.io-index" 1581checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 1582dependencies = [ 1583 "bitflags", 1584] 1585 1586[[package]] 1587name = "regex-automata" 1588version = "0.4.13" 1589source = "registry+https://github.com/rust-lang/crates.io-index" 1590checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" 1591dependencies = [ 1592 "aho-corasick", 1593 "memchr", 1594 "regex-syntax", 1595] 1596 1597[[package]] 1598name = "regex-syntax" 1599version = "0.8.8" 1600source = "registry+https://github.com/rust-lang/crates.io-index" 1601checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" 1602 1603[[package]] 1604name = "reqwest" 1605version = "0.12.24" 1606source = "registry+https://github.com/rust-lang/crates.io-index" 1607checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f" 1608dependencies = [ 1609 "base64", 1610 "bytes", 1611 "futures-core", 1612 "http", 1613 "http-body", 1614 "http-body-util", 1615 "hyper", 1616 "hyper-rustls", 1617 "hyper-util", 1618 "js-sys", 1619 "log", 1620 "percent-encoding", 1621 "pin-project-lite", 1622 "quinn", 1623 "rustls", 1624 "rustls-pki-types", 1625 "serde", 1626 "serde_json", 1627 "serde_urlencoded", 1628 "sync_wrapper", 1629 "tokio", 1630 "tokio-rustls", 1631 "tower", 1632 "tower-http", 1633 "tower-service", 1634 "url", 1635 "wasm-bindgen", 1636 "wasm-bindgen-futures", 1637 "web-sys", 1638 "webpki-roots 1.0.4", 1639] 1640 1641[[package]] 1642name = "rfc6979" 1643version = "0.4.0" 1644source = "registry+https://github.com/rust-lang/crates.io-index" 1645checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 1646dependencies = [ 1647 "hmac", 1648 "subtle", 1649] 1650 1651[[package]] 1652name = "ring" 1653version = "0.17.14" 1654source = "registry+https://github.com/rust-lang/crates.io-index" 1655checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 1656dependencies = [ 1657 "cc", 1658 "cfg-if", 1659 "getrandom 0.2.16", 1660 "libc", 1661 "untrusted", 1662 "windows-sys 0.52.0", 1663] 1664 1665[[package]] 1666name = "rsa" 1667version = "0.9.9" 1668source = "registry+https://github.com/rust-lang/crates.io-index" 1669checksum = "40a0376c50d0358279d9d643e4bf7b7be212f1f4ff1da9070a7b54d22ef75c88" 1670dependencies = [ 1671 "const-oid", 1672 "digest", 1673 "num-bigint-dig", 1674 "num-integer", 1675 "num-traits", 1676 "pkcs1", 1677 "pkcs8", 1678 "rand_core 0.6.4", 1679 "signature", 1680 "spki", 1681 "subtle", 1682 "zeroize", 1683] 1684 1685[[package]] 1686name = "rustc-hash" 1687version = "2.1.1" 1688source = "registry+https://github.com/rust-lang/crates.io-index" 1689checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 1690 1691[[package]] 1692name = "rustls" 1693version = "0.23.35" 1694source = "registry+https://github.com/rust-lang/crates.io-index" 1695checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f" 1696dependencies = [ 1697 "once_cell", 1698 "ring", 1699 "rustls-pki-types", 1700 "rustls-webpki", 1701 "subtle", 1702 "zeroize", 1703] 1704 1705[[package]] 1706name = "rustls-pki-types" 1707version = "1.13.0" 1708source = "registry+https://github.com/rust-lang/crates.io-index" 1709checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a" 1710dependencies = [ 1711 "web-time", 1712 "zeroize", 1713] 1714 1715[[package]] 1716name = "rustls-webpki" 1717version = "0.103.8" 1718source = "registry+https://github.com/rust-lang/crates.io-index" 1719checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" 1720dependencies = [ 1721 "ring", 1722 "rustls-pki-types", 1723 "untrusted", 1724] 1725 1726[[package]] 1727name = "rustversion" 1728version = "1.0.22" 1729source = "registry+https://github.com/rust-lang/crates.io-index" 1730checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 1731 1732[[package]] 1733name = "ryu" 1734version = "1.0.20" 1735source = "registry+https://github.com/rust-lang/crates.io-index" 1736checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 1737 1738[[package]] 1739name = "scopeguard" 1740version = "1.2.0" 1741source = "registry+https://github.com/rust-lang/crates.io-index" 1742checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1743 1744[[package]] 1745name = "sec1" 1746version = "0.7.3" 1747source = "registry+https://github.com/rust-lang/crates.io-index" 1748checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 1749dependencies = [ 1750 "base16ct", 1751 "der", 1752 "generic-array", 1753 "pkcs8", 1754 "subtle", 1755 "zeroize", 1756] 1757 1758[[package]] 1759name = "serde" 1760version = "1.0.228" 1761source = "registry+https://github.com/rust-lang/crates.io-index" 1762checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 1763dependencies = [ 1764 "serde_core", 1765 "serde_derive", 1766] 1767 1768[[package]] 1769name = "serde_bytes" 1770version = "0.11.19" 1771source = "registry+https://github.com/rust-lang/crates.io-index" 1772checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" 1773dependencies = [ 1774 "serde", 1775 "serde_core", 1776] 1777 1778[[package]] 1779name = "serde_core" 1780version = "1.0.228" 1781source = "registry+https://github.com/rust-lang/crates.io-index" 1782checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 1783dependencies = [ 1784 "serde_derive", 1785] 1786 1787[[package]] 1788name = "serde_derive" 1789version = "1.0.228" 1790source = "registry+https://github.com/rust-lang/crates.io-index" 1791checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 1792dependencies = [ 1793 "proc-macro2", 1794 "quote", 1795 "syn 2.0.111", 1796] 1797 1798[[package]] 1799name = "serde_ipld_dagcbor" 1800version = "0.6.4" 1801source = "registry+https://github.com/rust-lang/crates.io-index" 1802checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778" 1803dependencies = [ 1804 "cbor4ii", 1805 "ipld-core", 1806 "scopeguard", 1807 "serde", 1808] 1809 1810[[package]] 1811name = "serde_json" 1812version = "1.0.145" 1813source = "registry+https://github.com/rust-lang/crates.io-index" 1814checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" 1815dependencies = [ 1816 "itoa", 1817 "memchr", 1818 "ryu", 1819 "serde", 1820 "serde_core", 1821] 1822 1823[[package]] 1824name = "serde_path_to_error" 1825version = "0.1.20" 1826source = "registry+https://github.com/rust-lang/crates.io-index" 1827checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" 1828dependencies = [ 1829 "itoa", 1830 "serde", 1831 "serde_core", 1832] 1833 1834[[package]] 1835name = "serde_urlencoded" 1836version = "0.7.1" 1837source = "registry+https://github.com/rust-lang/crates.io-index" 1838checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1839dependencies = [ 1840 "form_urlencoded", 1841 "itoa", 1842 "ryu", 1843 "serde", 1844] 1845 1846[[package]] 1847name = "sha1" 1848version = "0.10.6" 1849source = "registry+https://github.com/rust-lang/crates.io-index" 1850checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 1851dependencies = [ 1852 "cfg-if", 1853 "cpufeatures", 1854 "digest", 1855] 1856 1857[[package]] 1858name = "sha2" 1859version = "0.10.9" 1860source = "registry+https://github.com/rust-lang/crates.io-index" 1861checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 1862dependencies = [ 1863 "cfg-if", 1864 "cpufeatures", 1865 "digest", 1866] 1867 1868[[package]] 1869name = "sharded-slab" 1870version = "0.1.7" 1871source = "registry+https://github.com/rust-lang/crates.io-index" 1872checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 1873dependencies = [ 1874 "lazy_static", 1875] 1876 1877[[package]] 1878name = "shlex" 1879version = "1.3.0" 1880source = "registry+https://github.com/rust-lang/crates.io-index" 1881checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1882 1883[[package]] 1884name = "signal-hook-registry" 1885version = "1.4.7" 1886source = "registry+https://github.com/rust-lang/crates.io-index" 1887checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad" 1888dependencies = [ 1889 "libc", 1890] 1891 1892[[package]] 1893name = "signature" 1894version = "2.2.0" 1895source = "registry+https://github.com/rust-lang/crates.io-index" 1896checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 1897dependencies = [ 1898 "digest", 1899 "rand_core 0.6.4", 1900] 1901 1902[[package]] 1903name = "slab" 1904version = "0.4.11" 1905source = "registry+https://github.com/rust-lang/crates.io-index" 1906checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 1907 1908[[package]] 1909name = "smallvec" 1910version = "1.15.1" 1911source = "registry+https://github.com/rust-lang/crates.io-index" 1912checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 1913dependencies = [ 1914 "serde", 1915] 1916 1917[[package]] 1918name = "socket2" 1919version = "0.6.1" 1920source = "registry+https://github.com/rust-lang/crates.io-index" 1921checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" 1922dependencies = [ 1923 "libc", 1924 "windows-sys 0.60.2", 1925] 1926 1927[[package]] 1928name = "spin" 1929version = "0.9.8" 1930source = "registry+https://github.com/rust-lang/crates.io-index" 1931checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 1932dependencies = [ 1933 "lock_api", 1934] 1935 1936[[package]] 1937name = "spki" 1938version = "0.7.3" 1939source = "registry+https://github.com/rust-lang/crates.io-index" 1940checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 1941dependencies = [ 1942 "base64ct", 1943 "der", 1944] 1945 1946[[package]] 1947name = "sqlx" 1948version = "0.8.6" 1949source = "registry+https://github.com/rust-lang/crates.io-index" 1950checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc" 1951dependencies = [ 1952 "sqlx-core", 1953 "sqlx-macros", 1954 "sqlx-mysql", 1955 "sqlx-postgres", 1956 "sqlx-sqlite", 1957] 1958 1959[[package]] 1960name = "sqlx-core" 1961version = "0.8.6" 1962source = "registry+https://github.com/rust-lang/crates.io-index" 1963checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6" 1964dependencies = [ 1965 "base64", 1966 "bytes", 1967 "chrono", 1968 "crc", 1969 "crossbeam-queue", 1970 "either", 1971 "event-listener", 1972 "futures-core", 1973 "futures-intrusive", 1974 "futures-io", 1975 "futures-util", 1976 "hashbrown 0.15.5", 1977 "hashlink", 1978 "indexmap", 1979 "log", 1980 "memchr", 1981 "once_cell", 1982 "percent-encoding", 1983 "rustls", 1984 "serde", 1985 "serde_json", 1986 "sha2", 1987 "smallvec", 1988 "thiserror 2.0.17", 1989 "tokio", 1990 "tokio-stream", 1991 "tracing", 1992 "url", 1993 "webpki-roots 0.26.11", 1994] 1995 1996[[package]] 1997name = "sqlx-macros" 1998version = "0.8.6" 1999source = "registry+https://github.com/rust-lang/crates.io-index" 2000checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d" 2001dependencies = [ 2002 "proc-macro2", 2003 "quote", 2004 "sqlx-core", 2005 "sqlx-macros-core", 2006 "syn 2.0.111", 2007] 2008 2009[[package]] 2010name = "sqlx-macros-core" 2011version = "0.8.6" 2012source = "registry+https://github.com/rust-lang/crates.io-index" 2013checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b" 2014dependencies = [ 2015 "dotenvy", 2016 "either", 2017 "heck", 2018 "hex", 2019 "once_cell", 2020 "proc-macro2", 2021 "quote", 2022 "serde", 2023 "serde_json", 2024 "sha2", 2025 "sqlx-core", 2026 "sqlx-mysql", 2027 "sqlx-postgres", 2028 "sqlx-sqlite", 2029 "syn 2.0.111", 2030 "tokio", 2031 "url", 2032] 2033 2034[[package]] 2035name = "sqlx-mysql" 2036version = "0.8.6" 2037source = "registry+https://github.com/rust-lang/crates.io-index" 2038checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526" 2039dependencies = [ 2040 "atoi", 2041 "base64", 2042 "bitflags", 2043 "byteorder", 2044 "bytes", 2045 "chrono", 2046 "crc", 2047 "digest", 2048 "dotenvy", 2049 "either", 2050 "futures-channel", 2051 "futures-core", 2052 "futures-io", 2053 "futures-util", 2054 "generic-array", 2055 "hex", 2056 "hkdf", 2057 "hmac", 2058 "itoa", 2059 "log", 2060 "md-5", 2061 "memchr", 2062 "once_cell", 2063 "percent-encoding", 2064 "rand 0.8.5", 2065 "rsa", 2066 "serde", 2067 "sha1", 2068 "sha2", 2069 "smallvec", 2070 "sqlx-core", 2071 "stringprep", 2072 "thiserror 2.0.17", 2073 "tracing", 2074 "whoami", 2075] 2076 2077[[package]] 2078name = "sqlx-postgres" 2079version = "0.8.6" 2080source = "registry+https://github.com/rust-lang/crates.io-index" 2081checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46" 2082dependencies = [ 2083 "atoi", 2084 "base64", 2085 "bitflags", 2086 "byteorder", 2087 "chrono", 2088 "crc", 2089 "dotenvy", 2090 "etcetera", 2091 "futures-channel", 2092 "futures-core", 2093 "futures-util", 2094 "hex", 2095 "hkdf", 2096 "hmac", 2097 "home", 2098 "itoa", 2099 "log", 2100 "md-5", 2101 "memchr", 2102 "once_cell", 2103 "rand 0.8.5", 2104 "serde", 2105 "serde_json", 2106 "sha2", 2107 "smallvec", 2108 "sqlx-core", 2109 "stringprep", 2110 "thiserror 2.0.17", 2111 "tracing", 2112 "whoami", 2113] 2114 2115[[package]] 2116name = "sqlx-sqlite" 2117version = "0.8.6" 2118source = "registry+https://github.com/rust-lang/crates.io-index" 2119checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea" 2120dependencies = [ 2121 "atoi", 2122 "chrono", 2123 "flume", 2124 "futures-channel", 2125 "futures-core", 2126 "futures-executor", 2127 "futures-intrusive", 2128 "futures-util", 2129 "libsqlite3-sys", 2130 "log", 2131 "percent-encoding", 2132 "serde", 2133 "serde_urlencoded", 2134 "sqlx-core", 2135 "thiserror 2.0.17", 2136 "tracing", 2137 "url", 2138] 2139 2140[[package]] 2141name = "stable_deref_trait" 2142version = "1.2.1" 2143source = "registry+https://github.com/rust-lang/crates.io-index" 2144checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 2145 2146[[package]] 2147name = "stringprep" 2148version = "0.1.5" 2149source = "registry+https://github.com/rust-lang/crates.io-index" 2150checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" 2151dependencies = [ 2152 "unicode-bidi", 2153 "unicode-normalization", 2154 "unicode-properties", 2155] 2156 2157[[package]] 2158name = "subtle" 2159version = "2.6.1" 2160source = "registry+https://github.com/rust-lang/crates.io-index" 2161checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 2162 2163[[package]] 2164name = "syn" 2165version = "1.0.109" 2166source = "registry+https://github.com/rust-lang/crates.io-index" 2167checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 2168dependencies = [ 2169 "proc-macro2", 2170 "quote", 2171 "unicode-ident", 2172] 2173 2174[[package]] 2175name = "syn" 2176version = "2.0.111" 2177source = "registry+https://github.com/rust-lang/crates.io-index" 2178checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87" 2179dependencies = [ 2180 "proc-macro2", 2181 "quote", 2182 "unicode-ident", 2183] 2184 2185[[package]] 2186name = "sync_wrapper" 2187version = "1.0.2" 2188source = "registry+https://github.com/rust-lang/crates.io-index" 2189checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 2190dependencies = [ 2191 "futures-core", 2192] 2193 2194[[package]] 2195name = "synstructure" 2196version = "0.13.2" 2197source = "registry+https://github.com/rust-lang/crates.io-index" 2198checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 2199dependencies = [ 2200 "proc-macro2", 2201 "quote", 2202 "syn 2.0.111", 2203] 2204 2205[[package]] 2206name = "thiserror" 2207version = "1.0.69" 2208source = "registry+https://github.com/rust-lang/crates.io-index" 2209checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 2210dependencies = [ 2211 "thiserror-impl 1.0.69", 2212] 2213 2214[[package]] 2215name = "thiserror" 2216version = "2.0.17" 2217source = "registry+https://github.com/rust-lang/crates.io-index" 2218checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 2219dependencies = [ 2220 "thiserror-impl 2.0.17", 2221] 2222 2223[[package]] 2224name = "thiserror-impl" 2225version = "1.0.69" 2226source = "registry+https://github.com/rust-lang/crates.io-index" 2227checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 2228dependencies = [ 2229 "proc-macro2", 2230 "quote", 2231 "syn 2.0.111", 2232] 2233 2234[[package]] 2235name = "thiserror-impl" 2236version = "2.0.17" 2237source = "registry+https://github.com/rust-lang/crates.io-index" 2238checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 2239dependencies = [ 2240 "proc-macro2", 2241 "quote", 2242 "syn 2.0.111", 2243] 2244 2245[[package]] 2246name = "thread_local" 2247version = "1.1.9" 2248source = "registry+https://github.com/rust-lang/crates.io-index" 2249checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 2250dependencies = [ 2251 "cfg-if", 2252] 2253 2254[[package]] 2255name = "tinystr" 2256version = "0.8.2" 2257source = "registry+https://github.com/rust-lang/crates.io-index" 2258checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" 2259dependencies = [ 2260 "displaydoc", 2261 "zerovec", 2262] 2263 2264[[package]] 2265name = "tinyvec" 2266version = "1.10.0" 2267source = "registry+https://github.com/rust-lang/crates.io-index" 2268checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" 2269dependencies = [ 2270 "tinyvec_macros", 2271] 2272 2273[[package]] 2274name = "tinyvec_macros" 2275version = "0.1.1" 2276source = "registry+https://github.com/rust-lang/crates.io-index" 2277checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2278 2279[[package]] 2280name = "tokio" 2281version = "1.48.0" 2282source = "registry+https://github.com/rust-lang/crates.io-index" 2283checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" 2284dependencies = [ 2285 "bytes", 2286 "libc", 2287 "mio", 2288 "pin-project-lite", 2289 "signal-hook-registry", 2290 "socket2", 2291 "tokio-macros", 2292 "windows-sys 0.61.2", 2293] 2294 2295[[package]] 2296name = "tokio-macros" 2297version = "2.6.0" 2298source = "registry+https://github.com/rust-lang/crates.io-index" 2299checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" 2300dependencies = [ 2301 "proc-macro2", 2302 "quote", 2303 "syn 2.0.111", 2304] 2305 2306[[package]] 2307name = "tokio-rustls" 2308version = "0.26.4" 2309source = "registry+https://github.com/rust-lang/crates.io-index" 2310checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 2311dependencies = [ 2312 "rustls", 2313 "tokio", 2314] 2315 2316[[package]] 2317name = "tokio-stream" 2318version = "0.1.17" 2319source = "registry+https://github.com/rust-lang/crates.io-index" 2320checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" 2321dependencies = [ 2322 "futures-core", 2323 "pin-project-lite", 2324 "tokio", 2325 "tokio-util", 2326] 2327 2328[[package]] 2329name = "tokio-tungstenite" 2330version = "0.24.0" 2331source = "registry+https://github.com/rust-lang/crates.io-index" 2332checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9" 2333dependencies = [ 2334 "futures-util", 2335 "log", 2336 "tokio", 2337 "tungstenite", 2338] 2339 2340[[package]] 2341name = "tokio-util" 2342version = "0.7.17" 2343source = "registry+https://github.com/rust-lang/crates.io-index" 2344checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" 2345dependencies = [ 2346 "bytes", 2347 "futures-core", 2348 "futures-sink", 2349 "pin-project-lite", 2350 "tokio", 2351] 2352 2353[[package]] 2354name = "tower" 2355version = "0.5.2" 2356source = "registry+https://github.com/rust-lang/crates.io-index" 2357checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 2358dependencies = [ 2359 "futures-core", 2360 "futures-util", 2361 "pin-project-lite", 2362 "sync_wrapper", 2363 "tokio", 2364 "tower-layer", 2365 "tower-service", 2366 "tracing", 2367] 2368 2369[[package]] 2370name = "tower-http" 2371version = "0.6.7" 2372source = "registry+https://github.com/rust-lang/crates.io-index" 2373checksum = "9cf146f99d442e8e68e585f5d798ccd3cad9a7835b917e09728880a862706456" 2374dependencies = [ 2375 "bitflags", 2376 "bytes", 2377 "futures-core", 2378 "futures-util", 2379 "http", 2380 "http-body", 2381 "http-body-util", 2382 "http-range-header", 2383 "httpdate", 2384 "iri-string", 2385 "mime", 2386 "mime_guess", 2387 "percent-encoding", 2388 "pin-project-lite", 2389 "tokio", 2390 "tokio-util", 2391 "tower", 2392 "tower-layer", 2393 "tower-service", 2394 "tracing", 2395] 2396 2397[[package]] 2398name = "tower-layer" 2399version = "0.3.3" 2400source = "registry+https://github.com/rust-lang/crates.io-index" 2401checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 2402 2403[[package]] 2404name = "tower-service" 2405version = "0.3.3" 2406source = "registry+https://github.com/rust-lang/crates.io-index" 2407checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 2408 2409[[package]] 2410name = "tracing" 2411version = "0.1.41" 2412source = "registry+https://github.com/rust-lang/crates.io-index" 2413checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 2414dependencies = [ 2415 "log", 2416 "pin-project-lite", 2417 "tracing-attributes", 2418 "tracing-core", 2419] 2420 2421[[package]] 2422name = "tracing-attributes" 2423version = "0.1.30" 2424source = "registry+https://github.com/rust-lang/crates.io-index" 2425checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" 2426dependencies = [ 2427 "proc-macro2", 2428 "quote", 2429 "syn 2.0.111", 2430] 2431 2432[[package]] 2433name = "tracing-core" 2434version = "0.1.34" 2435source = "registry+https://github.com/rust-lang/crates.io-index" 2436checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" 2437dependencies = [ 2438 "once_cell", 2439 "valuable", 2440] 2441 2442[[package]] 2443name = "tracing-log" 2444version = "0.2.0" 2445source = "registry+https://github.com/rust-lang/crates.io-index" 2446checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 2447dependencies = [ 2448 "log", 2449 "once_cell", 2450 "tracing-core", 2451] 2452 2453[[package]] 2454name = "tracing-subscriber" 2455version = "0.3.20" 2456source = "registry+https://github.com/rust-lang/crates.io-index" 2457checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5" 2458dependencies = [ 2459 "matchers", 2460 "nu-ansi-term", 2461 "once_cell", 2462 "regex-automata", 2463 "sharded-slab", 2464 "smallvec", 2465 "thread_local", 2466 "tracing", 2467 "tracing-core", 2468 "tracing-log", 2469] 2470 2471[[package]] 2472name = "try-lock" 2473version = "0.2.5" 2474source = "registry+https://github.com/rust-lang/crates.io-index" 2475checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 2476 2477[[package]] 2478name = "tungstenite" 2479version = "0.24.0" 2480source = "registry+https://github.com/rust-lang/crates.io-index" 2481checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" 2482dependencies = [ 2483 "byteorder", 2484 "bytes", 2485 "data-encoding", 2486 "http", 2487 "httparse", 2488 "log", 2489 "rand 0.8.5", 2490 "sha1", 2491 "thiserror 1.0.69", 2492 "utf-8", 2493] 2494 2495[[package]] 2496name = "typenum" 2497version = "1.19.0" 2498source = "registry+https://github.com/rust-lang/crates.io-index" 2499checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 2500 2501[[package]] 2502name = "unicase" 2503version = "2.8.1" 2504source = "registry+https://github.com/rust-lang/crates.io-index" 2505checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" 2506 2507[[package]] 2508name = "unicode-bidi" 2509version = "0.3.18" 2510source = "registry+https://github.com/rust-lang/crates.io-index" 2511checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" 2512 2513[[package]] 2514name = "unicode-ident" 2515version = "1.0.22" 2516source = "registry+https://github.com/rust-lang/crates.io-index" 2517checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 2518 2519[[package]] 2520name = "unicode-normalization" 2521version = "0.1.25" 2522source = "registry+https://github.com/rust-lang/crates.io-index" 2523checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" 2524dependencies = [ 2525 "tinyvec", 2526] 2527 2528[[package]] 2529name = "unicode-properties" 2530version = "0.1.4" 2531source = "registry+https://github.com/rust-lang/crates.io-index" 2532checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d" 2533 2534[[package]] 2535name = "unsigned-varint" 2536version = "0.8.0" 2537source = "registry+https://github.com/rust-lang/crates.io-index" 2538checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 2539 2540[[package]] 2541name = "untrusted" 2542version = "0.9.0" 2543source = "registry+https://github.com/rust-lang/crates.io-index" 2544checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 2545 2546[[package]] 2547name = "url" 2548version = "2.5.7" 2549source = "registry+https://github.com/rust-lang/crates.io-index" 2550checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" 2551dependencies = [ 2552 "form_urlencoded", 2553 "idna", 2554 "percent-encoding", 2555 "serde", 2556] 2557 2558[[package]] 2559name = "utf-8" 2560version = "0.7.6" 2561source = "registry+https://github.com/rust-lang/crates.io-index" 2562checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 2563 2564[[package]] 2565name = "utf8_iter" 2566version = "1.0.4" 2567source = "registry+https://github.com/rust-lang/crates.io-index" 2568checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 2569 2570[[package]] 2571name = "valuable" 2572version = "0.1.1" 2573source = "registry+https://github.com/rust-lang/crates.io-index" 2574checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 2575 2576[[package]] 2577name = "vcpkg" 2578version = "0.2.15" 2579source = "registry+https://github.com/rust-lang/crates.io-index" 2580checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2581 2582[[package]] 2583name = "version_check" 2584version = "0.9.5" 2585source = "registry+https://github.com/rust-lang/crates.io-index" 2586checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 2587 2588[[package]] 2589name = "want" 2590version = "0.3.1" 2591source = "registry+https://github.com/rust-lang/crates.io-index" 2592checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 2593dependencies = [ 2594 "try-lock", 2595] 2596 2597[[package]] 2598name = "wasi" 2599version = "0.11.1+wasi-snapshot-preview1" 2600source = "registry+https://github.com/rust-lang/crates.io-index" 2601checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 2602 2603[[package]] 2604name = "wasip2" 2605version = "1.0.1+wasi-0.2.4" 2606source = "registry+https://github.com/rust-lang/crates.io-index" 2607checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 2608dependencies = [ 2609 "wit-bindgen", 2610] 2611 2612[[package]] 2613name = "wasite" 2614version = "0.1.0" 2615source = "registry+https://github.com/rust-lang/crates.io-index" 2616checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 2617 2618[[package]] 2619name = "wasm-bindgen" 2620version = "0.2.105" 2621source = "registry+https://github.com/rust-lang/crates.io-index" 2622checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60" 2623dependencies = [ 2624 "cfg-if", 2625 "once_cell", 2626 "rustversion", 2627 "wasm-bindgen-macro", 2628 "wasm-bindgen-shared", 2629] 2630 2631[[package]] 2632name = "wasm-bindgen-futures" 2633version = "0.4.55" 2634source = "registry+https://github.com/rust-lang/crates.io-index" 2635checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0" 2636dependencies = [ 2637 "cfg-if", 2638 "js-sys", 2639 "once_cell", 2640 "wasm-bindgen", 2641 "web-sys", 2642] 2643 2644[[package]] 2645name = "wasm-bindgen-macro" 2646version = "0.2.105" 2647source = "registry+https://github.com/rust-lang/crates.io-index" 2648checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2" 2649dependencies = [ 2650 "quote", 2651 "wasm-bindgen-macro-support", 2652] 2653 2654[[package]] 2655name = "wasm-bindgen-macro-support" 2656version = "0.2.105" 2657source = "registry+https://github.com/rust-lang/crates.io-index" 2658checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc" 2659dependencies = [ 2660 "bumpalo", 2661 "proc-macro2", 2662 "quote", 2663 "syn 2.0.111", 2664 "wasm-bindgen-shared", 2665] 2666 2667[[package]] 2668name = "wasm-bindgen-shared" 2669version = "0.2.105" 2670source = "registry+https://github.com/rust-lang/crates.io-index" 2671checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76" 2672dependencies = [ 2673 "unicode-ident", 2674] 2675 2676[[package]] 2677name = "web-sys" 2678version = "0.3.82" 2679source = "registry+https://github.com/rust-lang/crates.io-index" 2680checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1" 2681dependencies = [ 2682 "js-sys", 2683 "wasm-bindgen", 2684] 2685 2686[[package]] 2687name = "web-time" 2688version = "1.1.0" 2689source = "registry+https://github.com/rust-lang/crates.io-index" 2690checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 2691dependencies = [ 2692 "js-sys", 2693 "wasm-bindgen", 2694] 2695 2696[[package]] 2697name = "webpki-roots" 2698version = "0.26.11" 2699source = "registry+https://github.com/rust-lang/crates.io-index" 2700checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" 2701dependencies = [ 2702 "webpki-roots 1.0.4", 2703] 2704 2705[[package]] 2706name = "webpki-roots" 2707version = "1.0.4" 2708source = "registry+https://github.com/rust-lang/crates.io-index" 2709checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e" 2710dependencies = [ 2711 "rustls-pki-types", 2712] 2713 2714[[package]] 2715name = "whoami" 2716version = "1.6.1" 2717source = "registry+https://github.com/rust-lang/crates.io-index" 2718checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d" 2719dependencies = [ 2720 "libredox", 2721 "wasite", 2722] 2723 2724[[package]] 2725name = "windows-core" 2726version = "0.62.2" 2727source = "registry+https://github.com/rust-lang/crates.io-index" 2728checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 2729dependencies = [ 2730 "windows-implement", 2731 "windows-interface", 2732 "windows-link", 2733 "windows-result", 2734 "windows-strings", 2735] 2736 2737[[package]] 2738name = "windows-implement" 2739version = "0.60.2" 2740source = "registry+https://github.com/rust-lang/crates.io-index" 2741checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 2742dependencies = [ 2743 "proc-macro2", 2744 "quote", 2745 "syn 2.0.111", 2746] 2747 2748[[package]] 2749name = "windows-interface" 2750version = "0.59.3" 2751source = "registry+https://github.com/rust-lang/crates.io-index" 2752checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 2753dependencies = [ 2754 "proc-macro2", 2755 "quote", 2756 "syn 2.0.111", 2757] 2758 2759[[package]] 2760name = "windows-link" 2761version = "0.2.1" 2762source = "registry+https://github.com/rust-lang/crates.io-index" 2763checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 2764 2765[[package]] 2766name = "windows-result" 2767version = "0.4.1" 2768source = "registry+https://github.com/rust-lang/crates.io-index" 2769checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 2770dependencies = [ 2771 "windows-link", 2772] 2773 2774[[package]] 2775name = "windows-strings" 2776version = "0.5.1" 2777source = "registry+https://github.com/rust-lang/crates.io-index" 2778checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 2779dependencies = [ 2780 "windows-link", 2781] 2782 2783[[package]] 2784name = "windows-sys" 2785version = "0.48.0" 2786source = "registry+https://github.com/rust-lang/crates.io-index" 2787checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2788dependencies = [ 2789 "windows-targets 0.48.5", 2790] 2791 2792[[package]] 2793name = "windows-sys" 2794version = "0.52.0" 2795source = "registry+https://github.com/rust-lang/crates.io-index" 2796checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2797dependencies = [ 2798 "windows-targets 0.52.6", 2799] 2800 2801[[package]] 2802name = "windows-sys" 2803version = "0.60.2" 2804source = "registry+https://github.com/rust-lang/crates.io-index" 2805checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 2806dependencies = [ 2807 "windows-targets 0.53.5", 2808] 2809 2810[[package]] 2811name = "windows-sys" 2812version = "0.61.2" 2813source = "registry+https://github.com/rust-lang/crates.io-index" 2814checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 2815dependencies = [ 2816 "windows-link", 2817] 2818 2819[[package]] 2820name = "windows-targets" 2821version = "0.48.5" 2822source = "registry+https://github.com/rust-lang/crates.io-index" 2823checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 2824dependencies = [ 2825 "windows_aarch64_gnullvm 0.48.5", 2826 "windows_aarch64_msvc 0.48.5", 2827 "windows_i686_gnu 0.48.5", 2828 "windows_i686_msvc 0.48.5", 2829 "windows_x86_64_gnu 0.48.5", 2830 "windows_x86_64_gnullvm 0.48.5", 2831 "windows_x86_64_msvc 0.48.5", 2832] 2833 2834[[package]] 2835name = "windows-targets" 2836version = "0.52.6" 2837source = "registry+https://github.com/rust-lang/crates.io-index" 2838checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 2839dependencies = [ 2840 "windows_aarch64_gnullvm 0.52.6", 2841 "windows_aarch64_msvc 0.52.6", 2842 "windows_i686_gnu 0.52.6", 2843 "windows_i686_gnullvm 0.52.6", 2844 "windows_i686_msvc 0.52.6", 2845 "windows_x86_64_gnu 0.52.6", 2846 "windows_x86_64_gnullvm 0.52.6", 2847 "windows_x86_64_msvc 0.52.6", 2848] 2849 2850[[package]] 2851name = "windows-targets" 2852version = "0.53.5" 2853source = "registry+https://github.com/rust-lang/crates.io-index" 2854checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 2855dependencies = [ 2856 "windows-link", 2857 "windows_aarch64_gnullvm 0.53.1", 2858 "windows_aarch64_msvc 0.53.1", 2859 "windows_i686_gnu 0.53.1", 2860 "windows_i686_gnullvm 0.53.1", 2861 "windows_i686_msvc 0.53.1", 2862 "windows_x86_64_gnu 0.53.1", 2863 "windows_x86_64_gnullvm 0.53.1", 2864 "windows_x86_64_msvc 0.53.1", 2865] 2866 2867[[package]] 2868name = "windows_aarch64_gnullvm" 2869version = "0.48.5" 2870source = "registry+https://github.com/rust-lang/crates.io-index" 2871checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 2872 2873[[package]] 2874name = "windows_aarch64_gnullvm" 2875version = "0.52.6" 2876source = "registry+https://github.com/rust-lang/crates.io-index" 2877checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 2878 2879[[package]] 2880name = "windows_aarch64_gnullvm" 2881version = "0.53.1" 2882source = "registry+https://github.com/rust-lang/crates.io-index" 2883checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 2884 2885[[package]] 2886name = "windows_aarch64_msvc" 2887version = "0.48.5" 2888source = "registry+https://github.com/rust-lang/crates.io-index" 2889checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 2890 2891[[package]] 2892name = "windows_aarch64_msvc" 2893version = "0.52.6" 2894source = "registry+https://github.com/rust-lang/crates.io-index" 2895checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 2896 2897[[package]] 2898name = "windows_aarch64_msvc" 2899version = "0.53.1" 2900source = "registry+https://github.com/rust-lang/crates.io-index" 2901checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 2902 2903[[package]] 2904name = "windows_i686_gnu" 2905version = "0.48.5" 2906source = "registry+https://github.com/rust-lang/crates.io-index" 2907checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 2908 2909[[package]] 2910name = "windows_i686_gnu" 2911version = "0.52.6" 2912source = "registry+https://github.com/rust-lang/crates.io-index" 2913checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 2914 2915[[package]] 2916name = "windows_i686_gnu" 2917version = "0.53.1" 2918source = "registry+https://github.com/rust-lang/crates.io-index" 2919checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 2920 2921[[package]] 2922name = "windows_i686_gnullvm" 2923version = "0.52.6" 2924source = "registry+https://github.com/rust-lang/crates.io-index" 2925checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 2926 2927[[package]] 2928name = "windows_i686_gnullvm" 2929version = "0.53.1" 2930source = "registry+https://github.com/rust-lang/crates.io-index" 2931checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 2932 2933[[package]] 2934name = "windows_i686_msvc" 2935version = "0.48.5" 2936source = "registry+https://github.com/rust-lang/crates.io-index" 2937checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 2938 2939[[package]] 2940name = "windows_i686_msvc" 2941version = "0.52.6" 2942source = "registry+https://github.com/rust-lang/crates.io-index" 2943checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 2944 2945[[package]] 2946name = "windows_i686_msvc" 2947version = "0.53.1" 2948source = "registry+https://github.com/rust-lang/crates.io-index" 2949checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 2950 2951[[package]] 2952name = "windows_x86_64_gnu" 2953version = "0.48.5" 2954source = "registry+https://github.com/rust-lang/crates.io-index" 2955checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 2956 2957[[package]] 2958name = "windows_x86_64_gnu" 2959version = "0.52.6" 2960source = "registry+https://github.com/rust-lang/crates.io-index" 2961checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 2962 2963[[package]] 2964name = "windows_x86_64_gnu" 2965version = "0.53.1" 2966source = "registry+https://github.com/rust-lang/crates.io-index" 2967checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 2968 2969[[package]] 2970name = "windows_x86_64_gnullvm" 2971version = "0.48.5" 2972source = "registry+https://github.com/rust-lang/crates.io-index" 2973checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 2974 2975[[package]] 2976name = "windows_x86_64_gnullvm" 2977version = "0.52.6" 2978source = "registry+https://github.com/rust-lang/crates.io-index" 2979checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 2980 2981[[package]] 2982name = "windows_x86_64_gnullvm" 2983version = "0.53.1" 2984source = "registry+https://github.com/rust-lang/crates.io-index" 2985checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 2986 2987[[package]] 2988name = "windows_x86_64_msvc" 2989version = "0.48.5" 2990source = "registry+https://github.com/rust-lang/crates.io-index" 2991checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 2992 2993[[package]] 2994name = "windows_x86_64_msvc" 2995version = "0.52.6" 2996source = "registry+https://github.com/rust-lang/crates.io-index" 2997checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 2998 2999[[package]] 3000name = "windows_x86_64_msvc" 3001version = "0.53.1" 3002source = "registry+https://github.com/rust-lang/crates.io-index" 3003checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 3004 3005[[package]] 3006name = "wit-bindgen" 3007version = "0.46.0" 3008source = "registry+https://github.com/rust-lang/crates.io-index" 3009checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 3010 3011[[package]] 3012name = "writeable" 3013version = "0.6.2" 3014source = "registry+https://github.com/rust-lang/crates.io-index" 3015checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" 3016 3017[[package]] 3018name = "yoke" 3019version = "0.8.1" 3020source = "registry+https://github.com/rust-lang/crates.io-index" 3021checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" 3022dependencies = [ 3023 "stable_deref_trait", 3024 "yoke-derive", 3025 "zerofrom", 3026] 3027 3028[[package]] 3029name = "yoke-derive" 3030version = "0.8.1" 3031source = "registry+https://github.com/rust-lang/crates.io-index" 3032checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" 3033dependencies = [ 3034 "proc-macro2", 3035 "quote", 3036 "syn 2.0.111", 3037 "synstructure", 3038] 3039 3040[[package]] 3041name = "zerocopy" 3042version = "0.8.30" 3043source = "registry+https://github.com/rust-lang/crates.io-index" 3044checksum = "4ea879c944afe8a2b25fef16bb4ba234f47c694565e97383b36f3a878219065c" 3045dependencies = [ 3046 "zerocopy-derive", 3047] 3048 3049[[package]] 3050name = "zerocopy-derive" 3051version = "0.8.30" 3052source = "registry+https://github.com/rust-lang/crates.io-index" 3053checksum = "cf955aa904d6040f70dc8e9384444cb1030aed272ba3cb09bbc4ab9e7c1f34f5" 3054dependencies = [ 3055 "proc-macro2", 3056 "quote", 3057 "syn 2.0.111", 3058] 3059 3060[[package]] 3061name = "zerofrom" 3062version = "0.1.6" 3063source = "registry+https://github.com/rust-lang/crates.io-index" 3064checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 3065dependencies = [ 3066 "zerofrom-derive", 3067] 3068 3069[[package]] 3070name = "zerofrom-derive" 3071version = "0.1.6" 3072source = "registry+https://github.com/rust-lang/crates.io-index" 3073checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 3074dependencies = [ 3075 "proc-macro2", 3076 "quote", 3077 "syn 2.0.111", 3078 "synstructure", 3079] 3080 3081[[package]] 3082name = "zeroize" 3083version = "1.8.2" 3084source = "registry+https://github.com/rust-lang/crates.io-index" 3085checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 3086 3087[[package]] 3088name = "zerotrie" 3089version = "0.2.3" 3090source = "registry+https://github.com/rust-lang/crates.io-index" 3091checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" 3092dependencies = [ 3093 "displaydoc", 3094 "yoke", 3095 "zerofrom", 3096] 3097 3098[[package]] 3099name = "zerovec" 3100version = "0.11.5" 3101source = "registry+https://github.com/rust-lang/crates.io-index" 3102checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" 3103dependencies = [ 3104 "yoke", 3105 "zerofrom", 3106 "zerovec-derive", 3107] 3108 3109[[package]] 3110name = "zerovec-derive" 3111version = "0.11.2" 3112source = "registry+https://github.com/rust-lang/crates.io-index" 3113checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" 3114dependencies = [ 3115 "proc-macro2", 3116 "quote", 3117 "syn 2.0.111", 3118]