Built for people who think better out loud.
at main 4720 lines 115 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 = "adler2" 7version = "2.0.1" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 10 11[[package]] 12name = "aho-corasick" 13version = "1.1.4" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 16dependencies = [ 17 "memchr", 18] 19 20[[package]] 21name = "allocator-api2" 22version = "0.2.21" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 25 26[[package]] 27name = "android_system_properties" 28version = "0.1.5" 29source = "registry+https://github.com/rust-lang/crates.io-index" 30checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 31dependencies = [ 32 "libc", 33] 34 35[[package]] 36name = "anyhow" 37version = "1.0.102" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" 40 41[[package]] 42name = "arrayref" 43version = "0.3.9" 44source = "registry+https://github.com/rust-lang/crates.io-index" 45checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" 46 47[[package]] 48name = "arrayvec" 49version = "0.7.6" 50source = "registry+https://github.com/rust-lang/crates.io-index" 51checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 52 53[[package]] 54name = "ascii-canvas" 55version = "3.0.0" 56source = "registry+https://github.com/rust-lang/crates.io-index" 57checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6" 58dependencies = [ 59 "term", 60] 61 62[[package]] 63name = "assert-json-diff" 64version = "2.0.2" 65source = "registry+https://github.com/rust-lang/crates.io-index" 66checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12" 67dependencies = [ 68 "serde", 69 "serde_json", 70] 71 72[[package]] 73name = "async-attributes" 74version = "1.1.2" 75source = "registry+https://github.com/rust-lang/crates.io-index" 76checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5" 77dependencies = [ 78 "quote", 79 "syn 1.0.109", 80] 81 82[[package]] 83name = "async-channel" 84version = "1.9.0" 85source = "registry+https://github.com/rust-lang/crates.io-index" 86checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 87dependencies = [ 88 "concurrent-queue", 89 "event-listener 2.5.3", 90 "futures-core", 91] 92 93[[package]] 94name = "async-channel" 95version = "2.5.0" 96source = "registry+https://github.com/rust-lang/crates.io-index" 97checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" 98dependencies = [ 99 "concurrent-queue", 100 "event-listener-strategy", 101 "futures-core", 102 "pin-project-lite", 103] 104 105[[package]] 106name = "async-compression" 107version = "0.4.41" 108source = "registry+https://github.com/rust-lang/crates.io-index" 109checksum = "d0f9ee0f6e02ffd7ad5816e9464499fba7b3effd01123b515c41d1697c43dad1" 110dependencies = [ 111 "compression-codecs", 112 "compression-core", 113 "pin-project-lite", 114 "tokio", 115] 116 117[[package]] 118name = "async-executor" 119version = "1.14.0" 120source = "registry+https://github.com/rust-lang/crates.io-index" 121checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a" 122dependencies = [ 123 "async-task", 124 "concurrent-queue", 125 "fastrand", 126 "futures-lite", 127 "pin-project-lite", 128 "slab", 129] 130 131[[package]] 132name = "async-global-executor" 133version = "2.4.1" 134source = "registry+https://github.com/rust-lang/crates.io-index" 135checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" 136dependencies = [ 137 "async-channel 2.5.0", 138 "async-executor", 139 "async-io", 140 "async-lock", 141 "blocking", 142 "futures-lite", 143 "once_cell", 144] 145 146[[package]] 147name = "async-io" 148version = "2.6.0" 149source = "registry+https://github.com/rust-lang/crates.io-index" 150checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" 151dependencies = [ 152 "autocfg", 153 "cfg-if", 154 "concurrent-queue", 155 "futures-io", 156 "futures-lite", 157 "parking", 158 "polling", 159 "rustix", 160 "slab", 161 "windows-sys 0.61.2", 162] 163 164[[package]] 165name = "async-lock" 166version = "3.4.2" 167source = "registry+https://github.com/rust-lang/crates.io-index" 168checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" 169dependencies = [ 170 "event-listener 5.4.1", 171 "event-listener-strategy", 172 "pin-project-lite", 173] 174 175[[package]] 176name = "async-object-pool" 177version = "0.1.5" 178source = "registry+https://github.com/rust-lang/crates.io-index" 179checksum = "333c456b97c3f2d50604e8b2624253b7f787208cb72eb75e64b0ad11b221652c" 180dependencies = [ 181 "async-std", 182] 183 184[[package]] 185name = "async-process" 186version = "2.5.0" 187source = "registry+https://github.com/rust-lang/crates.io-index" 188checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" 189dependencies = [ 190 "async-channel 2.5.0", 191 "async-io", 192 "async-lock", 193 "async-signal", 194 "async-task", 195 "blocking", 196 "cfg-if", 197 "event-listener 5.4.1", 198 "futures-lite", 199 "rustix", 200] 201 202[[package]] 203name = "async-signal" 204version = "0.2.13" 205source = "registry+https://github.com/rust-lang/crates.io-index" 206checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c" 207dependencies = [ 208 "async-io", 209 "async-lock", 210 "atomic-waker", 211 "cfg-if", 212 "futures-core", 213 "futures-io", 214 "rustix", 215 "signal-hook-registry", 216 "slab", 217 "windows-sys 0.61.2", 218] 219 220[[package]] 221name = "async-std" 222version = "1.13.2" 223source = "registry+https://github.com/rust-lang/crates.io-index" 224checksum = "2c8e079a4ab67ae52b7403632e4618815d6db36d2a010cfe41b02c1b1578f93b" 225dependencies = [ 226 "async-attributes", 227 "async-channel 1.9.0", 228 "async-global-executor", 229 "async-io", 230 "async-lock", 231 "async-process", 232 "crossbeam-utils", 233 "futures-channel", 234 "futures-core", 235 "futures-io", 236 "futures-lite", 237 "gloo-timers", 238 "kv-log-macro", 239 "log", 240 "memchr", 241 "once_cell", 242 "pin-project-lite", 243 "pin-utils", 244 "slab", 245 "wasm-bindgen-futures", 246] 247 248[[package]] 249name = "async-task" 250version = "4.7.1" 251source = "registry+https://github.com/rust-lang/crates.io-index" 252checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 253 254[[package]] 255name = "async-trait" 256version = "0.1.89" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 259dependencies = [ 260 "proc-macro2", 261 "quote", 262 "syn 2.0.116", 263] 264 265[[package]] 266name = "atoi" 267version = "2.0.0" 268source = "registry+https://github.com/rust-lang/crates.io-index" 269checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" 270dependencies = [ 271 "num-traits", 272] 273 274[[package]] 275name = "atomic-waker" 276version = "1.1.2" 277source = "registry+https://github.com/rust-lang/crates.io-index" 278checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 279 280[[package]] 281name = "atproto-dasl" 282version = "0.14.0" 283source = "registry+https://github.com/rust-lang/crates.io-index" 284checksum = "d63f8fb837f3bfa4440e3f38da8a21c827abea8819577893a56ac3e21d5d7ae2" 285dependencies = [ 286 "blake3", 287 "cid", 288 "futures", 289 "multihash", 290 "serde", 291 "serde_bytes", 292 "sha2", 293 "tempfile", 294 "thiserror 2.0.18", 295 "tokio", 296 "tracing", 297 "url", 298] 299 300[[package]] 301name = "atproto-identity" 302version = "0.14.0" 303source = "registry+https://github.com/rust-lang/crates.io-index" 304checksum = "13837fe8e5e93b9b842bfe2aaedd539f724021d52e5bedfb9b9fed52a5e0f46f" 305dependencies = [ 306 "anyhow", 307 "async-trait", 308 "atproto-dasl", 309 "base64 0.22.1", 310 "chrono", 311 "data-encoding", 312 "ecdsa", 313 "elliptic-curve", 314 "hickory-resolver", 315 "k256", 316 "lru", 317 "multibase", 318 "p256", 319 "p384", 320 "rand 0.8.5", 321 "reqwest", 322 "serde", 323 "serde_json", 324 "sha2", 325 "thiserror 2.0.18", 326 "tokio", 327 "tracing", 328 "url", 329] 330 331[[package]] 332name = "atproto-oauth" 333version = "0.14.0" 334source = "registry+https://github.com/rust-lang/crates.io-index" 335checksum = "70c231d6ad5805a8b28f366c47f7c7d5d73dfd8e2dab62ab3ad431c638ae30d4" 336dependencies = [ 337 "anyhow", 338 "async-trait", 339 "atproto-identity", 340 "base64 0.22.1", 341 "chrono", 342 "ecdsa", 343 "elliptic-curve", 344 "k256", 345 "lru", 346 "multibase", 347 "p256", 348 "p384", 349 "rand 0.8.5", 350 "reqwest", 351 "reqwest-chain", 352 "reqwest-middleware", 353 "serde", 354 "serde_json", 355 "sha2", 356 "thiserror 2.0.18", 357 "tokio", 358 "tracing", 359 "ulid", 360] 361 362[[package]] 363name = "atproto-oauth-axum" 364version = "0.14.0" 365source = "registry+https://github.com/rust-lang/crates.io-index" 366checksum = "968b7113b9912125fa258c4f92627f77cc317930ad837ce71740e09eec3538dc" 367dependencies = [ 368 "anyhow", 369 "async-trait", 370 "atproto-identity", 371 "atproto-oauth", 372 "atproto-record", 373 "axum", 374 "chrono", 375 "elliptic-curve", 376 "hickory-resolver", 377 "http 1.4.0", 378 "rand 0.8.5", 379 "reqwest", 380 "reqwest-chain", 381 "reqwest-middleware", 382 "serde", 383 "serde_json", 384 "thiserror 2.0.18", 385 "tokio", 386 "tracing", 387] 388 389[[package]] 390name = "atproto-record" 391version = "0.14.0" 392source = "registry+https://github.com/rust-lang/crates.io-index" 393checksum = "882dcedaf6ac22a3fbad9410b21153d8ae77131e901d6ac9e76c626ec5db28bd" 394dependencies = [ 395 "anyhow", 396 "atproto-dasl", 397 "atproto-identity", 398 "base64 0.22.1", 399 "chrono", 400 "cid", 401 "multihash", 402 "rand 0.8.5", 403 "serde", 404 "serde_json", 405 "sha2", 406 "thiserror 2.0.18", 407] 408 409[[package]] 410name = "autocfg" 411version = "1.5.0" 412source = "registry+https://github.com/rust-lang/crates.io-index" 413checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 414 415[[package]] 416name = "axiom-rs" 417version = "0.11.4" 418source = "registry+https://github.com/rust-lang/crates.io-index" 419checksum = "ead05aa318aa28c5eb1cf8e28f5382932b58986e2b73da6647c4be3d9af1ec59" 420dependencies = [ 421 "backoff", 422 "bitflags", 423 "bitflags_serde_shim", 424 "bytes", 425 "chrono", 426 "flate2", 427 "futures", 428 "http 1.4.0", 429 "reqwest", 430 "serde", 431 "serde_json", 432 "serde_qs", 433 "thiserror 1.0.69", 434 "tokio", 435 "tokio-stream", 436 "tracing", 437 "url", 438] 439 440[[package]] 441name = "axum" 442version = "0.8.8" 443source = "registry+https://github.com/rust-lang/crates.io-index" 444checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" 445dependencies = [ 446 "axum-core", 447 "axum-macros", 448 "bytes", 449 "form_urlencoded", 450 "futures-util", 451 "http 1.4.0", 452 "http-body 1.0.1", 453 "http-body-util", 454 "hyper 1.8.1", 455 "hyper-util", 456 "itoa", 457 "matchit", 458 "memchr", 459 "mime", 460 "multer", 461 "percent-encoding", 462 "pin-project-lite", 463 "serde_core", 464 "serde_json", 465 "serde_path_to_error", 466 "serde_urlencoded", 467 "sync_wrapper", 468 "tokio", 469 "tower", 470 "tower-layer", 471 "tower-service", 472 "tracing", 473] 474 475[[package]] 476name = "axum-core" 477version = "0.5.6" 478source = "registry+https://github.com/rust-lang/crates.io-index" 479checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" 480dependencies = [ 481 "bytes", 482 "futures-core", 483 "http 1.4.0", 484 "http-body 1.0.1", 485 "http-body-util", 486 "mime", 487 "pin-project-lite", 488 "sync_wrapper", 489 "tower-layer", 490 "tower-service", 491 "tracing", 492] 493 494[[package]] 495name = "axum-macros" 496version = "0.5.0" 497source = "registry+https://github.com/rust-lang/crates.io-index" 498checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c" 499dependencies = [ 500 "proc-macro2", 501 "quote", 502 "syn 2.0.116", 503] 504 505[[package]] 506name = "backoff" 507version = "0.4.0" 508source = "registry+https://github.com/rust-lang/crates.io-index" 509checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" 510dependencies = [ 511 "futures-core", 512 "getrandom 0.2.17", 513 "instant", 514 "pin-project-lite", 515 "rand 0.8.5", 516 "tokio", 517] 518 519[[package]] 520name = "base-x" 521version = "0.2.11" 522source = "registry+https://github.com/rust-lang/crates.io-index" 523checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 524 525[[package]] 526name = "base16ct" 527version = "0.2.0" 528source = "registry+https://github.com/rust-lang/crates.io-index" 529checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 530 531[[package]] 532name = "base256emoji" 533version = "1.0.2" 534source = "registry+https://github.com/rust-lang/crates.io-index" 535checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c" 536dependencies = [ 537 "const-str", 538 "match-lookup", 539] 540 541[[package]] 542name = "base64" 543version = "0.21.7" 544source = "registry+https://github.com/rust-lang/crates.io-index" 545checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 546 547[[package]] 548name = "base64" 549version = "0.22.1" 550source = "registry+https://github.com/rust-lang/crates.io-index" 551checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 552 553[[package]] 554name = "base64ct" 555version = "1.8.3" 556source = "registry+https://github.com/rust-lang/crates.io-index" 557checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" 558 559[[package]] 560name = "basic-cookies" 561version = "0.1.5" 562source = "registry+https://github.com/rust-lang/crates.io-index" 563checksum = "67bd8fd42c16bdb08688243dc5f0cc117a3ca9efeeaba3a345a18a6159ad96f7" 564dependencies = [ 565 "lalrpop", 566 "lalrpop-util", 567 "regex", 568] 569 570[[package]] 571name = "bit-set" 572version = "0.5.3" 573source = "registry+https://github.com/rust-lang/crates.io-index" 574checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 575dependencies = [ 576 "bit-vec 0.6.3", 577] 578 579[[package]] 580name = "bit-set" 581version = "0.8.0" 582source = "registry+https://github.com/rust-lang/crates.io-index" 583checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" 584dependencies = [ 585 "bit-vec 0.8.0", 586] 587 588[[package]] 589name = "bit-vec" 590version = "0.6.3" 591source = "registry+https://github.com/rust-lang/crates.io-index" 592checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 593 594[[package]] 595name = "bit-vec" 596version = "0.8.0" 597source = "registry+https://github.com/rust-lang/crates.io-index" 598checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" 599 600[[package]] 601name = "bitflags" 602version = "2.11.0" 603source = "registry+https://github.com/rust-lang/crates.io-index" 604checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" 605dependencies = [ 606 "serde_core", 607] 608 609[[package]] 610name = "bitflags_serde_shim" 611version = "0.2.5" 612source = "registry+https://github.com/rust-lang/crates.io-index" 613checksum = "df031780c32b0f93cecaf883fa9e351e74679e24380c534aeef94556cfd80ac9" 614dependencies = [ 615 "serde", 616] 617 618[[package]] 619name = "blake3" 620version = "1.8.3" 621source = "registry+https://github.com/rust-lang/crates.io-index" 622checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d" 623dependencies = [ 624 "arrayref", 625 "arrayvec", 626 "cc", 627 "cfg-if", 628 "constant_time_eq", 629 "cpufeatures", 630] 631 632[[package]] 633name = "block-buffer" 634version = "0.10.4" 635source = "registry+https://github.com/rust-lang/crates.io-index" 636checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 637dependencies = [ 638 "generic-array", 639] 640 641[[package]] 642name = "blocking" 643version = "1.6.2" 644source = "registry+https://github.com/rust-lang/crates.io-index" 645checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" 646dependencies = [ 647 "async-channel 2.5.0", 648 "async-task", 649 "futures-io", 650 "futures-lite", 651 "piper", 652] 653 654[[package]] 655name = "bumpalo" 656version = "3.20.2" 657source = "registry+https://github.com/rust-lang/crates.io-index" 658checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" 659 660[[package]] 661name = "byteorder" 662version = "1.5.0" 663source = "registry+https://github.com/rust-lang/crates.io-index" 664checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 665 666[[package]] 667name = "bytes" 668version = "1.11.1" 669source = "registry+https://github.com/rust-lang/crates.io-index" 670checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" 671 672[[package]] 673name = "cc" 674version = "1.2.56" 675source = "registry+https://github.com/rust-lang/crates.io-index" 676checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2" 677dependencies = [ 678 "find-msvc-tools", 679 "shlex", 680] 681 682[[package]] 683name = "cfg-if" 684version = "1.0.4" 685source = "registry+https://github.com/rust-lang/crates.io-index" 686checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 687 688[[package]] 689name = "cfg_aliases" 690version = "0.2.1" 691source = "registry+https://github.com/rust-lang/crates.io-index" 692checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 693 694[[package]] 695name = "chrono" 696version = "0.4.44" 697source = "registry+https://github.com/rust-lang/crates.io-index" 698checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" 699dependencies = [ 700 "iana-time-zone", 701 "js-sys", 702 "num-traits", 703 "serde", 704 "wasm-bindgen", 705 "windows-link", 706] 707 708[[package]] 709name = "cid" 710version = "0.11.1" 711source = "registry+https://github.com/rust-lang/crates.io-index" 712checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" 713dependencies = [ 714 "core2", 715 "multibase", 716 "multihash", 717 "unsigned-varint", 718] 719 720[[package]] 721name = "compression-codecs" 722version = "0.4.37" 723source = "registry+https://github.com/rust-lang/crates.io-index" 724checksum = "eb7b51a7d9c967fc26773061ba86150f19c50c0d65c887cb1fbe295fd16619b7" 725dependencies = [ 726 "compression-core", 727 "flate2", 728 "memchr", 729] 730 731[[package]] 732name = "compression-core" 733version = "0.4.31" 734source = "registry+https://github.com/rust-lang/crates.io-index" 735checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d" 736 737[[package]] 738name = "concurrent-queue" 739version = "2.5.0" 740source = "registry+https://github.com/rust-lang/crates.io-index" 741checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 742dependencies = [ 743 "crossbeam-utils", 744] 745 746[[package]] 747name = "const-oid" 748version = "0.9.6" 749source = "registry+https://github.com/rust-lang/crates.io-index" 750checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 751 752[[package]] 753name = "const-str" 754version = "0.4.3" 755source = "registry+https://github.com/rust-lang/crates.io-index" 756checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" 757 758[[package]] 759name = "constant_time_eq" 760version = "0.4.2" 761source = "registry+https://github.com/rust-lang/crates.io-index" 762checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b" 763 764[[package]] 765name = "core-foundation" 766version = "0.9.4" 767source = "registry+https://github.com/rust-lang/crates.io-index" 768checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 769dependencies = [ 770 "core-foundation-sys", 771 "libc", 772] 773 774[[package]] 775name = "core-foundation" 776version = "0.10.1" 777source = "registry+https://github.com/rust-lang/crates.io-index" 778checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 779dependencies = [ 780 "core-foundation-sys", 781 "libc", 782] 783 784[[package]] 785name = "core-foundation-sys" 786version = "0.8.7" 787source = "registry+https://github.com/rust-lang/crates.io-index" 788checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 789 790[[package]] 791name = "core2" 792version = "0.4.0" 793source = "registry+https://github.com/rust-lang/crates.io-index" 794checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 795dependencies = [ 796 "memchr", 797] 798 799[[package]] 800name = "cpufeatures" 801version = "0.2.17" 802source = "registry+https://github.com/rust-lang/crates.io-index" 803checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 804dependencies = [ 805 "libc", 806] 807 808[[package]] 809name = "crc" 810version = "3.4.0" 811source = "registry+https://github.com/rust-lang/crates.io-index" 812checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" 813dependencies = [ 814 "crc-catalog", 815] 816 817[[package]] 818name = "crc-catalog" 819version = "2.4.0" 820source = "registry+https://github.com/rust-lang/crates.io-index" 821checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 822 823[[package]] 824name = "crc32fast" 825version = "1.5.0" 826source = "registry+https://github.com/rust-lang/crates.io-index" 827checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 828dependencies = [ 829 "cfg-if", 830] 831 832[[package]] 833name = "critical-section" 834version = "1.2.0" 835source = "registry+https://github.com/rust-lang/crates.io-index" 836checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" 837 838[[package]] 839name = "crossbeam-channel" 840version = "0.5.15" 841source = "registry+https://github.com/rust-lang/crates.io-index" 842checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 843dependencies = [ 844 "crossbeam-utils", 845] 846 847[[package]] 848name = "crossbeam-epoch" 849version = "0.9.18" 850source = "registry+https://github.com/rust-lang/crates.io-index" 851checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 852dependencies = [ 853 "crossbeam-utils", 854] 855 856[[package]] 857name = "crossbeam-queue" 858version = "0.3.12" 859source = "registry+https://github.com/rust-lang/crates.io-index" 860checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" 861dependencies = [ 862 "crossbeam-utils", 863] 864 865[[package]] 866name = "crossbeam-utils" 867version = "0.8.21" 868source = "registry+https://github.com/rust-lang/crates.io-index" 869checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 870 871[[package]] 872name = "crunchy" 873version = "0.2.4" 874source = "registry+https://github.com/rust-lang/crates.io-index" 875checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 876 877[[package]] 878name = "crypto-bigint" 879version = "0.5.5" 880source = "registry+https://github.com/rust-lang/crates.io-index" 881checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 882dependencies = [ 883 "generic-array", 884 "rand_core 0.6.4", 885 "subtle", 886 "zeroize", 887] 888 889[[package]] 890name = "crypto-common" 891version = "0.1.7" 892source = "registry+https://github.com/rust-lang/crates.io-index" 893checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" 894dependencies = [ 895 "generic-array", 896 "typenum", 897] 898 899[[package]] 900name = "data-encoding" 901version = "2.10.0" 902source = "registry+https://github.com/rust-lang/crates.io-index" 903checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea" 904 905[[package]] 906name = "data-encoding-macro" 907version = "0.1.19" 908source = "registry+https://github.com/rust-lang/crates.io-index" 909checksum = "8142a83c17aa9461d637e649271eae18bf2edd00e91f2e105df36c3c16355bdb" 910dependencies = [ 911 "data-encoding", 912 "data-encoding-macro-internal", 913] 914 915[[package]] 916name = "data-encoding-macro-internal" 917version = "0.1.17" 918source = "registry+https://github.com/rust-lang/crates.io-index" 919checksum = "7ab67060fc6b8ef687992d439ca0fa36e7ed17e9a0b16b25b601e8757df720de" 920dependencies = [ 921 "data-encoding", 922 "syn 2.0.116", 923] 924 925[[package]] 926name = "der" 927version = "0.7.10" 928source = "registry+https://github.com/rust-lang/crates.io-index" 929checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 930dependencies = [ 931 "const-oid", 932 "pem-rfc7468", 933 "zeroize", 934] 935 936[[package]] 937name = "digest" 938version = "0.10.7" 939source = "registry+https://github.com/rust-lang/crates.io-index" 940checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 941dependencies = [ 942 "block-buffer", 943 "const-oid", 944 "crypto-common", 945 "subtle", 946] 947 948[[package]] 949name = "dirs-next" 950version = "2.0.0" 951source = "registry+https://github.com/rust-lang/crates.io-index" 952checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 953dependencies = [ 954 "cfg-if", 955 "dirs-sys-next", 956] 957 958[[package]] 959name = "dirs-sys-next" 960version = "0.1.2" 961source = "registry+https://github.com/rust-lang/crates.io-index" 962checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 963dependencies = [ 964 "libc", 965 "redox_users", 966 "winapi", 967] 968 969[[package]] 970name = "displaydoc" 971version = "0.2.5" 972source = "registry+https://github.com/rust-lang/crates.io-index" 973checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 974dependencies = [ 975 "proc-macro2", 976 "quote", 977 "syn 2.0.116", 978] 979 980[[package]] 981name = "dotenvy" 982version = "0.15.7" 983source = "registry+https://github.com/rust-lang/crates.io-index" 984checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 985 986[[package]] 987name = "ecdsa" 988version = "0.16.9" 989source = "registry+https://github.com/rust-lang/crates.io-index" 990checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 991dependencies = [ 992 "der", 993 "digest", 994 "elliptic-curve", 995 "rfc6979", 996 "serdect", 997 "signature", 998 "spki", 999] 1000 1001[[package]] 1002name = "either" 1003version = "1.15.0" 1004source = "registry+https://github.com/rust-lang/crates.io-index" 1005checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 1006dependencies = [ 1007 "serde", 1008] 1009 1010[[package]] 1011name = "elliptic-curve" 1012version = "0.13.8" 1013source = "registry+https://github.com/rust-lang/crates.io-index" 1014checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 1015dependencies = [ 1016 "base16ct", 1017 "base64ct", 1018 "crypto-bigint", 1019 "digest", 1020 "ff", 1021 "generic-array", 1022 "group", 1023 "hkdf", 1024 "pem-rfc7468", 1025 "pkcs8", 1026 "rand_core 0.6.4", 1027 "sec1", 1028 "serde_json", 1029 "serdect", 1030 "subtle", 1031 "zeroize", 1032] 1033 1034[[package]] 1035name = "ena" 1036version = "0.14.4" 1037source = "registry+https://github.com/rust-lang/crates.io-index" 1038checksum = "eabffdaee24bd1bf95c5ef7cec31260444317e72ea56c4c91750e8b7ee58d5f1" 1039dependencies = [ 1040 "log", 1041] 1042 1043[[package]] 1044name = "encoding_rs" 1045version = "0.8.35" 1046source = "registry+https://github.com/rust-lang/crates.io-index" 1047checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 1048dependencies = [ 1049 "cfg-if", 1050] 1051 1052[[package]] 1053name = "enum-as-inner" 1054version = "0.6.1" 1055source = "registry+https://github.com/rust-lang/crates.io-index" 1056checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" 1057dependencies = [ 1058 "heck", 1059 "proc-macro2", 1060 "quote", 1061 "syn 2.0.116", 1062] 1063 1064[[package]] 1065name = "equivalent" 1066version = "1.0.2" 1067source = "registry+https://github.com/rust-lang/crates.io-index" 1068checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 1069 1070[[package]] 1071name = "errno" 1072version = "0.3.14" 1073source = "registry+https://github.com/rust-lang/crates.io-index" 1074checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 1075dependencies = [ 1076 "libc", 1077 "windows-sys 0.61.2", 1078] 1079 1080[[package]] 1081name = "etcetera" 1082version = "0.8.0" 1083source = "registry+https://github.com/rust-lang/crates.io-index" 1084checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" 1085dependencies = [ 1086 "cfg-if", 1087 "home", 1088 "windows-sys 0.48.0", 1089] 1090 1091[[package]] 1092name = "event-listener" 1093version = "2.5.3" 1094source = "registry+https://github.com/rust-lang/crates.io-index" 1095checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1096 1097[[package]] 1098name = "event-listener" 1099version = "5.4.1" 1100source = "registry+https://github.com/rust-lang/crates.io-index" 1101checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 1102dependencies = [ 1103 "concurrent-queue", 1104 "parking", 1105 "pin-project-lite", 1106] 1107 1108[[package]] 1109name = "event-listener-strategy" 1110version = "0.5.4" 1111source = "registry+https://github.com/rust-lang/crates.io-index" 1112checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 1113dependencies = [ 1114 "event-listener 5.4.1", 1115 "pin-project-lite", 1116] 1117 1118[[package]] 1119name = "fastrand" 1120version = "2.3.0" 1121source = "registry+https://github.com/rust-lang/crates.io-index" 1122checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 1123 1124[[package]] 1125name = "ff" 1126version = "0.13.1" 1127source = "registry+https://github.com/rust-lang/crates.io-index" 1128checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" 1129dependencies = [ 1130 "rand_core 0.6.4", 1131 "subtle", 1132] 1133 1134[[package]] 1135name = "find-msvc-tools" 1136version = "0.1.9" 1137source = "registry+https://github.com/rust-lang/crates.io-index" 1138checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" 1139 1140[[package]] 1141name = "fixedbitset" 1142version = "0.4.2" 1143source = "registry+https://github.com/rust-lang/crates.io-index" 1144checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 1145 1146[[package]] 1147name = "flate2" 1148version = "1.1.9" 1149source = "registry+https://github.com/rust-lang/crates.io-index" 1150checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" 1151dependencies = [ 1152 "crc32fast", 1153 "miniz_oxide", 1154] 1155 1156[[package]] 1157name = "flume" 1158version = "0.11.1" 1159source = "registry+https://github.com/rust-lang/crates.io-index" 1160checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" 1161dependencies = [ 1162 "futures-core", 1163 "futures-sink", 1164 "spin", 1165] 1166 1167[[package]] 1168name = "fnv" 1169version = "1.0.7" 1170source = "registry+https://github.com/rust-lang/crates.io-index" 1171checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1172 1173[[package]] 1174name = "foldhash" 1175version = "0.1.5" 1176source = "registry+https://github.com/rust-lang/crates.io-index" 1177checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 1178 1179[[package]] 1180name = "foreign-types" 1181version = "0.3.2" 1182source = "registry+https://github.com/rust-lang/crates.io-index" 1183checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1184dependencies = [ 1185 "foreign-types-shared", 1186] 1187 1188[[package]] 1189name = "foreign-types-shared" 1190version = "0.1.1" 1191source = "registry+https://github.com/rust-lang/crates.io-index" 1192checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1193 1194[[package]] 1195name = "form_urlencoded" 1196version = "1.2.2" 1197source = "registry+https://github.com/rust-lang/crates.io-index" 1198checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 1199dependencies = [ 1200 "percent-encoding", 1201] 1202 1203[[package]] 1204name = "futures" 1205version = "0.3.32" 1206source = "registry+https://github.com/rust-lang/crates.io-index" 1207checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" 1208dependencies = [ 1209 "futures-channel", 1210 "futures-core", 1211 "futures-executor", 1212 "futures-io", 1213 "futures-sink", 1214 "futures-task", 1215 "futures-util", 1216] 1217 1218[[package]] 1219name = "futures-channel" 1220version = "0.3.32" 1221source = "registry+https://github.com/rust-lang/crates.io-index" 1222checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" 1223dependencies = [ 1224 "futures-core", 1225 "futures-sink", 1226] 1227 1228[[package]] 1229name = "futures-core" 1230version = "0.3.32" 1231source = "registry+https://github.com/rust-lang/crates.io-index" 1232checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" 1233 1234[[package]] 1235name = "futures-executor" 1236version = "0.3.32" 1237source = "registry+https://github.com/rust-lang/crates.io-index" 1238checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" 1239dependencies = [ 1240 "futures-core", 1241 "futures-task", 1242 "futures-util", 1243] 1244 1245[[package]] 1246name = "futures-intrusive" 1247version = "0.5.0" 1248source = "registry+https://github.com/rust-lang/crates.io-index" 1249checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" 1250dependencies = [ 1251 "futures-core", 1252 "lock_api", 1253 "parking_lot", 1254] 1255 1256[[package]] 1257name = "futures-io" 1258version = "0.3.32" 1259source = "registry+https://github.com/rust-lang/crates.io-index" 1260checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" 1261 1262[[package]] 1263name = "futures-lite" 1264version = "2.6.1" 1265source = "registry+https://github.com/rust-lang/crates.io-index" 1266checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 1267dependencies = [ 1268 "fastrand", 1269 "futures-core", 1270 "futures-io", 1271 "parking", 1272 "pin-project-lite", 1273] 1274 1275[[package]] 1276name = "futures-macro" 1277version = "0.3.32" 1278source = "registry+https://github.com/rust-lang/crates.io-index" 1279checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" 1280dependencies = [ 1281 "proc-macro2", 1282 "quote", 1283 "syn 2.0.116", 1284] 1285 1286[[package]] 1287name = "futures-sink" 1288version = "0.3.32" 1289source = "registry+https://github.com/rust-lang/crates.io-index" 1290checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" 1291 1292[[package]] 1293name = "futures-task" 1294version = "0.3.32" 1295source = "registry+https://github.com/rust-lang/crates.io-index" 1296checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" 1297 1298[[package]] 1299name = "futures-util" 1300version = "0.3.32" 1301source = "registry+https://github.com/rust-lang/crates.io-index" 1302checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" 1303dependencies = [ 1304 "futures-channel", 1305 "futures-core", 1306 "futures-io", 1307 "futures-macro", 1308 "futures-sink", 1309 "futures-task", 1310 "memchr", 1311 "pin-project-lite", 1312 "slab", 1313] 1314 1315[[package]] 1316name = "generic-array" 1317version = "0.14.7" 1318source = "registry+https://github.com/rust-lang/crates.io-index" 1319checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1320dependencies = [ 1321 "typenum", 1322 "version_check", 1323 "zeroize", 1324] 1325 1326[[package]] 1327name = "getrandom" 1328version = "0.2.17" 1329source = "registry+https://github.com/rust-lang/crates.io-index" 1330checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" 1331dependencies = [ 1332 "cfg-if", 1333 "js-sys", 1334 "libc", 1335 "wasi", 1336 "wasm-bindgen", 1337] 1338 1339[[package]] 1340name = "getrandom" 1341version = "0.3.4" 1342source = "registry+https://github.com/rust-lang/crates.io-index" 1343checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 1344dependencies = [ 1345 "cfg-if", 1346 "js-sys", 1347 "libc", 1348 "r-efi", 1349 "wasip2", 1350 "wasm-bindgen", 1351] 1352 1353[[package]] 1354name = "getrandom" 1355version = "0.4.1" 1356source = "registry+https://github.com/rust-lang/crates.io-index" 1357checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec" 1358dependencies = [ 1359 "cfg-if", 1360 "libc", 1361 "r-efi", 1362 "wasip2", 1363 "wasip3", 1364] 1365 1366[[package]] 1367name = "gloo-timers" 1368version = "0.3.0" 1369source = "registry+https://github.com/rust-lang/crates.io-index" 1370checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994" 1371dependencies = [ 1372 "futures-channel", 1373 "futures-core", 1374 "js-sys", 1375 "wasm-bindgen", 1376] 1377 1378[[package]] 1379name = "group" 1380version = "0.13.0" 1381source = "registry+https://github.com/rust-lang/crates.io-index" 1382checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 1383dependencies = [ 1384 "ff", 1385 "rand_core 0.6.4", 1386 "subtle", 1387] 1388 1389[[package]] 1390name = "h2" 1391version = "0.4.13" 1392source = "registry+https://github.com/rust-lang/crates.io-index" 1393checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" 1394dependencies = [ 1395 "atomic-waker", 1396 "bytes", 1397 "fnv", 1398 "futures-core", 1399 "futures-sink", 1400 "http 1.4.0", 1401 "indexmap", 1402 "slab", 1403 "tokio", 1404 "tokio-util", 1405 "tracing", 1406] 1407 1408[[package]] 1409name = "hashbrown" 1410version = "0.15.5" 1411source = "registry+https://github.com/rust-lang/crates.io-index" 1412checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 1413dependencies = [ 1414 "allocator-api2", 1415 "equivalent", 1416 "foldhash", 1417] 1418 1419[[package]] 1420name = "hashbrown" 1421version = "0.16.1" 1422source = "registry+https://github.com/rust-lang/crates.io-index" 1423checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 1424 1425[[package]] 1426name = "hashlink" 1427version = "0.10.0" 1428source = "registry+https://github.com/rust-lang/crates.io-index" 1429checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1" 1430dependencies = [ 1431 "hashbrown 0.15.5", 1432] 1433 1434[[package]] 1435name = "heck" 1436version = "0.5.0" 1437source = "registry+https://github.com/rust-lang/crates.io-index" 1438checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1439 1440[[package]] 1441name = "hermit-abi" 1442version = "0.5.2" 1443source = "registry+https://github.com/rust-lang/crates.io-index" 1444checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 1445 1446[[package]] 1447name = "hex" 1448version = "0.4.3" 1449source = "registry+https://github.com/rust-lang/crates.io-index" 1450checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1451 1452[[package]] 1453name = "hickory-proto" 1454version = "0.25.2" 1455source = "registry+https://github.com/rust-lang/crates.io-index" 1456checksum = "f8a6fe56c0038198998a6f217ca4e7ef3a5e51f46163bd6dd60b5c71ca6c6502" 1457dependencies = [ 1458 "async-trait", 1459 "cfg-if", 1460 "data-encoding", 1461 "enum-as-inner", 1462 "futures-channel", 1463 "futures-io", 1464 "futures-util", 1465 "idna", 1466 "ipnet", 1467 "once_cell", 1468 "rand 0.9.2", 1469 "ring", 1470 "thiserror 2.0.18", 1471 "tinyvec", 1472 "tokio", 1473 "tracing", 1474 "url", 1475] 1476 1477[[package]] 1478name = "hickory-resolver" 1479version = "0.25.2" 1480source = "registry+https://github.com/rust-lang/crates.io-index" 1481checksum = "dc62a9a99b0bfb44d2ab95a7208ac952d31060efc16241c87eaf36406fecf87a" 1482dependencies = [ 1483 "cfg-if", 1484 "futures-util", 1485 "hickory-proto", 1486 "ipconfig", 1487 "moka", 1488 "once_cell", 1489 "parking_lot", 1490 "rand 0.9.2", 1491 "resolv-conf", 1492 "smallvec", 1493 "thiserror 2.0.18", 1494 "tokio", 1495 "tracing", 1496] 1497 1498[[package]] 1499name = "hkdf" 1500version = "0.12.4" 1501source = "registry+https://github.com/rust-lang/crates.io-index" 1502checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 1503dependencies = [ 1504 "hmac", 1505] 1506 1507[[package]] 1508name = "hmac" 1509version = "0.12.1" 1510source = "registry+https://github.com/rust-lang/crates.io-index" 1511checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1512dependencies = [ 1513 "digest", 1514] 1515 1516[[package]] 1517name = "home" 1518version = "0.5.12" 1519source = "registry+https://github.com/rust-lang/crates.io-index" 1520checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" 1521dependencies = [ 1522 "windows-sys 0.61.2", 1523] 1524 1525[[package]] 1526name = "http" 1527version = "0.2.12" 1528source = "registry+https://github.com/rust-lang/crates.io-index" 1529checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 1530dependencies = [ 1531 "bytes", 1532 "fnv", 1533 "itoa", 1534] 1535 1536[[package]] 1537name = "http" 1538version = "1.4.0" 1539source = "registry+https://github.com/rust-lang/crates.io-index" 1540checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" 1541dependencies = [ 1542 "bytes", 1543 "itoa", 1544] 1545 1546[[package]] 1547name = "http-body" 1548version = "0.4.6" 1549source = "registry+https://github.com/rust-lang/crates.io-index" 1550checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 1551dependencies = [ 1552 "bytes", 1553 "http 0.2.12", 1554 "pin-project-lite", 1555] 1556 1557[[package]] 1558name = "http-body" 1559version = "1.0.1" 1560source = "registry+https://github.com/rust-lang/crates.io-index" 1561checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1562dependencies = [ 1563 "bytes", 1564 "http 1.4.0", 1565] 1566 1567[[package]] 1568name = "http-body-util" 1569version = "0.1.3" 1570source = "registry+https://github.com/rust-lang/crates.io-index" 1571checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 1572dependencies = [ 1573 "bytes", 1574 "futures-core", 1575 "http 1.4.0", 1576 "http-body 1.0.1", 1577 "pin-project-lite", 1578] 1579 1580[[package]] 1581name = "httparse" 1582version = "1.10.1" 1583source = "registry+https://github.com/rust-lang/crates.io-index" 1584checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1585 1586[[package]] 1587name = "httpdate" 1588version = "1.0.3" 1589source = "registry+https://github.com/rust-lang/crates.io-index" 1590checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1591 1592[[package]] 1593name = "httpmock" 1594version = "0.7.0" 1595source = "registry+https://github.com/rust-lang/crates.io-index" 1596checksum = "08ec9586ee0910472dec1a1f0f8acf52f0fdde93aea74d70d4a3107b4be0fd5b" 1597dependencies = [ 1598 "assert-json-diff", 1599 "async-object-pool", 1600 "async-std", 1601 "async-trait", 1602 "base64 0.21.7", 1603 "basic-cookies", 1604 "crossbeam-utils", 1605 "form_urlencoded", 1606 "futures-util", 1607 "hyper 0.14.32", 1608 "lazy_static", 1609 "levenshtein", 1610 "log", 1611 "regex", 1612 "serde", 1613 "serde_json", 1614 "serde_regex", 1615 "similar", 1616 "tokio", 1617 "url", 1618] 1619 1620[[package]] 1621name = "hyper" 1622version = "0.14.32" 1623source = "registry+https://github.com/rust-lang/crates.io-index" 1624checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" 1625dependencies = [ 1626 "bytes", 1627 "futures-channel", 1628 "futures-core", 1629 "futures-util", 1630 "http 0.2.12", 1631 "http-body 0.4.6", 1632 "httparse", 1633 "httpdate", 1634 "itoa", 1635 "pin-project-lite", 1636 "socket2 0.5.10", 1637 "tokio", 1638 "tower-service", 1639 "tracing", 1640 "want", 1641] 1642 1643[[package]] 1644name = "hyper" 1645version = "1.8.1" 1646source = "registry+https://github.com/rust-lang/crates.io-index" 1647checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" 1648dependencies = [ 1649 "atomic-waker", 1650 "bytes", 1651 "futures-channel", 1652 "futures-core", 1653 "h2", 1654 "http 1.4.0", 1655 "http-body 1.0.1", 1656 "httparse", 1657 "httpdate", 1658 "itoa", 1659 "pin-project-lite", 1660 "pin-utils", 1661 "smallvec", 1662 "tokio", 1663 "want", 1664] 1665 1666[[package]] 1667name = "hyper-rustls" 1668version = "0.27.7" 1669source = "registry+https://github.com/rust-lang/crates.io-index" 1670checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 1671dependencies = [ 1672 "http 1.4.0", 1673 "hyper 1.8.1", 1674 "hyper-util", 1675 "rustls", 1676 "rustls-pki-types", 1677 "tokio", 1678 "tokio-rustls", 1679 "tower-service", 1680 "webpki-roots", 1681] 1682 1683[[package]] 1684name = "hyper-tls" 1685version = "0.6.0" 1686source = "registry+https://github.com/rust-lang/crates.io-index" 1687checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 1688dependencies = [ 1689 "bytes", 1690 "http-body-util", 1691 "hyper 1.8.1", 1692 "hyper-util", 1693 "native-tls", 1694 "tokio", 1695 "tokio-native-tls", 1696 "tower-service", 1697] 1698 1699[[package]] 1700name = "hyper-util" 1701version = "0.1.20" 1702source = "registry+https://github.com/rust-lang/crates.io-index" 1703checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" 1704dependencies = [ 1705 "base64 0.22.1", 1706 "bytes", 1707 "futures-channel", 1708 "futures-util", 1709 "http 1.4.0", 1710 "http-body 1.0.1", 1711 "hyper 1.8.1", 1712 "ipnet", 1713 "libc", 1714 "percent-encoding", 1715 "pin-project-lite", 1716 "socket2 0.6.2", 1717 "system-configuration", 1718 "tokio", 1719 "tower-service", 1720 "tracing", 1721 "windows-registry", 1722] 1723 1724[[package]] 1725name = "iana-time-zone" 1726version = "0.1.65" 1727source = "registry+https://github.com/rust-lang/crates.io-index" 1728checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" 1729dependencies = [ 1730 "android_system_properties", 1731 "core-foundation-sys", 1732 "iana-time-zone-haiku", 1733 "js-sys", 1734 "log", 1735 "wasm-bindgen", 1736 "windows-core", 1737] 1738 1739[[package]] 1740name = "iana-time-zone-haiku" 1741version = "0.1.2" 1742source = "registry+https://github.com/rust-lang/crates.io-index" 1743checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1744dependencies = [ 1745 "cc", 1746] 1747 1748[[package]] 1749name = "icu_collections" 1750version = "2.1.1" 1751source = "registry+https://github.com/rust-lang/crates.io-index" 1752checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" 1753dependencies = [ 1754 "displaydoc", 1755 "potential_utf", 1756 "yoke", 1757 "zerofrom", 1758 "zerovec", 1759] 1760 1761[[package]] 1762name = "icu_locale_core" 1763version = "2.1.1" 1764source = "registry+https://github.com/rust-lang/crates.io-index" 1765checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" 1766dependencies = [ 1767 "displaydoc", 1768 "litemap", 1769 "tinystr", 1770 "writeable", 1771 "zerovec", 1772] 1773 1774[[package]] 1775name = "icu_normalizer" 1776version = "2.1.1" 1777source = "registry+https://github.com/rust-lang/crates.io-index" 1778checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" 1779dependencies = [ 1780 "icu_collections", 1781 "icu_normalizer_data", 1782 "icu_properties", 1783 "icu_provider", 1784 "smallvec", 1785 "zerovec", 1786] 1787 1788[[package]] 1789name = "icu_normalizer_data" 1790version = "2.1.1" 1791source = "registry+https://github.com/rust-lang/crates.io-index" 1792checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" 1793 1794[[package]] 1795name = "icu_properties" 1796version = "2.1.2" 1797source = "registry+https://github.com/rust-lang/crates.io-index" 1798checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" 1799dependencies = [ 1800 "icu_collections", 1801 "icu_locale_core", 1802 "icu_properties_data", 1803 "icu_provider", 1804 "zerotrie", 1805 "zerovec", 1806] 1807 1808[[package]] 1809name = "icu_properties_data" 1810version = "2.1.2" 1811source = "registry+https://github.com/rust-lang/crates.io-index" 1812checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" 1813 1814[[package]] 1815name = "icu_provider" 1816version = "2.1.1" 1817source = "registry+https://github.com/rust-lang/crates.io-index" 1818checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" 1819dependencies = [ 1820 "displaydoc", 1821 "icu_locale_core", 1822 "writeable", 1823 "yoke", 1824 "zerofrom", 1825 "zerotrie", 1826 "zerovec", 1827] 1828 1829[[package]] 1830name = "id-arena" 1831version = "2.3.0" 1832source = "registry+https://github.com/rust-lang/crates.io-index" 1833checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" 1834 1835[[package]] 1836name = "idna" 1837version = "1.1.0" 1838source = "registry+https://github.com/rust-lang/crates.io-index" 1839checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 1840dependencies = [ 1841 "idna_adapter", 1842 "smallvec", 1843 "utf8_iter", 1844] 1845 1846[[package]] 1847name = "idna_adapter" 1848version = "1.2.1" 1849source = "registry+https://github.com/rust-lang/crates.io-index" 1850checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 1851dependencies = [ 1852 "icu_normalizer", 1853 "icu_properties", 1854] 1855 1856[[package]] 1857name = "indexmap" 1858version = "2.13.0" 1859source = "registry+https://github.com/rust-lang/crates.io-index" 1860checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" 1861dependencies = [ 1862 "equivalent", 1863 "hashbrown 0.16.1", 1864 "serde", 1865 "serde_core", 1866] 1867 1868[[package]] 1869name = "instant" 1870version = "0.1.13" 1871source = "registry+https://github.com/rust-lang/crates.io-index" 1872checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 1873dependencies = [ 1874 "cfg-if", 1875] 1876 1877[[package]] 1878name = "ipconfig" 1879version = "0.3.2" 1880source = "registry+https://github.com/rust-lang/crates.io-index" 1881checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 1882dependencies = [ 1883 "socket2 0.5.10", 1884 "widestring", 1885 "windows-sys 0.48.0", 1886 "winreg", 1887] 1888 1889[[package]] 1890name = "ipnet" 1891version = "2.11.0" 1892source = "registry+https://github.com/rust-lang/crates.io-index" 1893checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 1894 1895[[package]] 1896name = "iri-string" 1897version = "0.7.10" 1898source = "registry+https://github.com/rust-lang/crates.io-index" 1899checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" 1900dependencies = [ 1901 "memchr", 1902 "serde", 1903] 1904 1905[[package]] 1906name = "itertools" 1907version = "0.11.0" 1908source = "registry+https://github.com/rust-lang/crates.io-index" 1909checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" 1910dependencies = [ 1911 "either", 1912] 1913 1914[[package]] 1915name = "itoa" 1916version = "1.0.17" 1917source = "registry+https://github.com/rust-lang/crates.io-index" 1918checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" 1919 1920[[package]] 1921name = "js-sys" 1922version = "0.3.90" 1923source = "registry+https://github.com/rust-lang/crates.io-index" 1924checksum = "14dc6f6450b3f6d4ed5b16327f38fed626d375a886159ca555bd7822c0c3a5a6" 1925dependencies = [ 1926 "once_cell", 1927 "wasm-bindgen", 1928] 1929 1930[[package]] 1931name = "k256" 1932version = "0.13.4" 1933source = "registry+https://github.com/rust-lang/crates.io-index" 1934checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" 1935dependencies = [ 1936 "cfg-if", 1937 "ecdsa", 1938 "elliptic-curve", 1939 "once_cell", 1940 "sha2", 1941 "signature", 1942] 1943 1944[[package]] 1945name = "kv-log-macro" 1946version = "1.0.7" 1947source = "registry+https://github.com/rust-lang/crates.io-index" 1948checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" 1949dependencies = [ 1950 "log", 1951] 1952 1953[[package]] 1954name = "lalrpop" 1955version = "0.20.2" 1956source = "registry+https://github.com/rust-lang/crates.io-index" 1957checksum = "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca" 1958dependencies = [ 1959 "ascii-canvas", 1960 "bit-set 0.5.3", 1961 "ena", 1962 "itertools", 1963 "lalrpop-util", 1964 "petgraph", 1965 "pico-args", 1966 "regex", 1967 "regex-syntax", 1968 "string_cache", 1969 "term", 1970 "tiny-keccak", 1971 "unicode-xid", 1972 "walkdir", 1973] 1974 1975[[package]] 1976name = "lalrpop-util" 1977version = "0.20.2" 1978source = "registry+https://github.com/rust-lang/crates.io-index" 1979checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" 1980dependencies = [ 1981 "regex-automata", 1982] 1983 1984[[package]] 1985name = "lazy_static" 1986version = "1.5.0" 1987source = "registry+https://github.com/rust-lang/crates.io-index" 1988checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1989dependencies = [ 1990 "spin", 1991] 1992 1993[[package]] 1994name = "leb128fmt" 1995version = "0.1.0" 1996source = "registry+https://github.com/rust-lang/crates.io-index" 1997checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" 1998 1999[[package]] 2000name = "levenshtein" 2001version = "1.0.5" 2002source = "registry+https://github.com/rust-lang/crates.io-index" 2003checksum = "db13adb97ab515a3691f56e4dbab09283d0b86cb45abd991d8634a9d6f501760" 2004 2005[[package]] 2006name = "libc" 2007version = "0.2.182" 2008source = "registry+https://github.com/rust-lang/crates.io-index" 2009checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112" 2010 2011[[package]] 2012name = "libm" 2013version = "0.2.16" 2014source = "registry+https://github.com/rust-lang/crates.io-index" 2015checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" 2016 2017[[package]] 2018name = "libredox" 2019version = "0.1.12" 2020source = "registry+https://github.com/rust-lang/crates.io-index" 2021checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616" 2022dependencies = [ 2023 "bitflags", 2024 "libc", 2025 "redox_syscall 0.7.2", 2026] 2027 2028[[package]] 2029name = "libsqlite3-sys" 2030version = "0.30.1" 2031source = "registry+https://github.com/rust-lang/crates.io-index" 2032checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" 2033dependencies = [ 2034 "pkg-config", 2035 "vcpkg", 2036] 2037 2038[[package]] 2039name = "linux-raw-sys" 2040version = "0.12.1" 2041source = "registry+https://github.com/rust-lang/crates.io-index" 2042checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" 2043 2044[[package]] 2045name = "litemap" 2046version = "0.8.1" 2047source = "registry+https://github.com/rust-lang/crates.io-index" 2048checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" 2049 2050[[package]] 2051name = "lock_api" 2052version = "0.4.14" 2053source = "registry+https://github.com/rust-lang/crates.io-index" 2054checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 2055dependencies = [ 2056 "scopeguard", 2057] 2058 2059[[package]] 2060name = "log" 2061version = "0.4.29" 2062source = "registry+https://github.com/rust-lang/crates.io-index" 2063checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 2064dependencies = [ 2065 "value-bag", 2066] 2067 2068[[package]] 2069name = "lru" 2070version = "0.12.5" 2071source = "registry+https://github.com/rust-lang/crates.io-index" 2072checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" 2073dependencies = [ 2074 "hashbrown 0.15.5", 2075] 2076 2077[[package]] 2078name = "lru-slab" 2079version = "0.1.2" 2080source = "registry+https://github.com/rust-lang/crates.io-index" 2081checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 2082 2083[[package]] 2084name = "match-lookup" 2085version = "0.1.2" 2086source = "registry+https://github.com/rust-lang/crates.io-index" 2087checksum = "757aee279b8bdbb9f9e676796fd459e4207a1f986e87886700abf589f5abf771" 2088dependencies = [ 2089 "proc-macro2", 2090 "quote", 2091 "syn 2.0.116", 2092] 2093 2094[[package]] 2095name = "matchit" 2096version = "0.8.4" 2097source = "registry+https://github.com/rust-lang/crates.io-index" 2098checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 2099 2100[[package]] 2101name = "md-5" 2102version = "0.10.6" 2103source = "registry+https://github.com/rust-lang/crates.io-index" 2104checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 2105dependencies = [ 2106 "cfg-if", 2107 "digest", 2108] 2109 2110[[package]] 2111name = "memchr" 2112version = "2.8.0" 2113source = "registry+https://github.com/rust-lang/crates.io-index" 2114checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" 2115 2116[[package]] 2117name = "mime" 2118version = "0.3.17" 2119source = "registry+https://github.com/rust-lang/crates.io-index" 2120checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 2121 2122[[package]] 2123name = "mime_guess" 2124version = "2.0.5" 2125source = "registry+https://github.com/rust-lang/crates.io-index" 2126checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 2127dependencies = [ 2128 "mime", 2129 "unicase", 2130] 2131 2132[[package]] 2133name = "miniz_oxide" 2134version = "0.8.9" 2135source = "registry+https://github.com/rust-lang/crates.io-index" 2136checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 2137dependencies = [ 2138 "adler2", 2139 "simd-adler32", 2140] 2141 2142[[package]] 2143name = "mio" 2144version = "1.1.1" 2145source = "registry+https://github.com/rust-lang/crates.io-index" 2146checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" 2147dependencies = [ 2148 "libc", 2149 "wasi", 2150 "windows-sys 0.61.2", 2151] 2152 2153[[package]] 2154name = "moka" 2155version = "0.12.13" 2156source = "registry+https://github.com/rust-lang/crates.io-index" 2157checksum = "b4ac832c50ced444ef6be0767a008b02c106a909ba79d1d830501e94b96f6b7e" 2158dependencies = [ 2159 "crossbeam-channel", 2160 "crossbeam-epoch", 2161 "crossbeam-utils", 2162 "equivalent", 2163 "parking_lot", 2164 "portable-atomic", 2165 "smallvec", 2166 "tagptr", 2167 "uuid", 2168] 2169 2170[[package]] 2171name = "multer" 2172version = "3.1.0" 2173source = "registry+https://github.com/rust-lang/crates.io-index" 2174checksum = "83e87776546dc87511aa5ee218730c92b666d7264ab6ed41f9d215af9cd5224b" 2175dependencies = [ 2176 "bytes", 2177 "encoding_rs", 2178 "futures-util", 2179 "http 1.4.0", 2180 "httparse", 2181 "memchr", 2182 "mime", 2183 "spin", 2184 "version_check", 2185] 2186 2187[[package]] 2188name = "multibase" 2189version = "0.9.2" 2190source = "registry+https://github.com/rust-lang/crates.io-index" 2191checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77" 2192dependencies = [ 2193 "base-x", 2194 "base256emoji", 2195 "data-encoding", 2196 "data-encoding-macro", 2197] 2198 2199[[package]] 2200name = "multihash" 2201version = "0.19.3" 2202source = "registry+https://github.com/rust-lang/crates.io-index" 2203checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" 2204dependencies = [ 2205 "core2", 2206 "unsigned-varint", 2207] 2208 2209[[package]] 2210name = "native-tls" 2211version = "0.2.18" 2212source = "registry+https://github.com/rust-lang/crates.io-index" 2213checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2" 2214dependencies = [ 2215 "libc", 2216 "log", 2217 "openssl", 2218 "openssl-probe", 2219 "openssl-sys", 2220 "schannel", 2221 "security-framework", 2222 "security-framework-sys", 2223 "tempfile", 2224] 2225 2226[[package]] 2227name = "new_debug_unreachable" 2228version = "1.0.6" 2229source = "registry+https://github.com/rust-lang/crates.io-index" 2230checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 2231 2232[[package]] 2233name = "num-bigint-dig" 2234version = "0.8.6" 2235source = "registry+https://github.com/rust-lang/crates.io-index" 2236checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" 2237dependencies = [ 2238 "lazy_static", 2239 "libm", 2240 "num-integer", 2241 "num-iter", 2242 "num-traits", 2243 "rand 0.8.5", 2244 "smallvec", 2245 "zeroize", 2246] 2247 2248[[package]] 2249name = "num-integer" 2250version = "0.1.46" 2251source = "registry+https://github.com/rust-lang/crates.io-index" 2252checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 2253dependencies = [ 2254 "num-traits", 2255] 2256 2257[[package]] 2258name = "num-iter" 2259version = "0.1.45" 2260source = "registry+https://github.com/rust-lang/crates.io-index" 2261checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 2262dependencies = [ 2263 "autocfg", 2264 "num-integer", 2265 "num-traits", 2266] 2267 2268[[package]] 2269name = "num-traits" 2270version = "0.2.19" 2271source = "registry+https://github.com/rust-lang/crates.io-index" 2272checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2273dependencies = [ 2274 "autocfg", 2275 "libm", 2276] 2277 2278[[package]] 2279name = "once_cell" 2280version = "1.21.3" 2281source = "registry+https://github.com/rust-lang/crates.io-index" 2282checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 2283dependencies = [ 2284 "critical-section", 2285 "portable-atomic", 2286] 2287 2288[[package]] 2289name = "openssl" 2290version = "0.10.75" 2291source = "registry+https://github.com/rust-lang/crates.io-index" 2292checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328" 2293dependencies = [ 2294 "bitflags", 2295 "cfg-if", 2296 "foreign-types", 2297 "libc", 2298 "once_cell", 2299 "openssl-macros", 2300 "openssl-sys", 2301] 2302 2303[[package]] 2304name = "openssl-macros" 2305version = "0.1.1" 2306source = "registry+https://github.com/rust-lang/crates.io-index" 2307checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 2308dependencies = [ 2309 "proc-macro2", 2310 "quote", 2311 "syn 2.0.116", 2312] 2313 2314[[package]] 2315name = "openssl-probe" 2316version = "0.2.1" 2317source = "registry+https://github.com/rust-lang/crates.io-index" 2318checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" 2319 2320[[package]] 2321name = "openssl-sys" 2322version = "0.9.111" 2323source = "registry+https://github.com/rust-lang/crates.io-index" 2324checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321" 2325dependencies = [ 2326 "cc", 2327 "libc", 2328 "pkg-config", 2329 "vcpkg", 2330] 2331 2332[[package]] 2333name = "p256" 2334version = "0.13.2" 2335source = "registry+https://github.com/rust-lang/crates.io-index" 2336checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 2337dependencies = [ 2338 "ecdsa", 2339 "elliptic-curve", 2340 "primeorder", 2341 "serdect", 2342 "sha2", 2343] 2344 2345[[package]] 2346name = "p384" 2347version = "0.13.1" 2348source = "registry+https://github.com/rust-lang/crates.io-index" 2349checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" 2350dependencies = [ 2351 "ecdsa", 2352 "elliptic-curve", 2353 "primeorder", 2354 "serdect", 2355 "sha2", 2356] 2357 2358[[package]] 2359name = "parking" 2360version = "2.2.1" 2361source = "registry+https://github.com/rust-lang/crates.io-index" 2362checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 2363 2364[[package]] 2365name = "parking_lot" 2366version = "0.12.5" 2367source = "registry+https://github.com/rust-lang/crates.io-index" 2368checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 2369dependencies = [ 2370 "lock_api", 2371 "parking_lot_core", 2372] 2373 2374[[package]] 2375name = "parking_lot_core" 2376version = "0.9.12" 2377source = "registry+https://github.com/rust-lang/crates.io-index" 2378checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 2379dependencies = [ 2380 "cfg-if", 2381 "libc", 2382 "redox_syscall 0.5.18", 2383 "smallvec", 2384 "windows-link", 2385] 2386 2387[[package]] 2388name = "pem-rfc7468" 2389version = "0.7.0" 2390source = "registry+https://github.com/rust-lang/crates.io-index" 2391checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 2392dependencies = [ 2393 "base64ct", 2394] 2395 2396[[package]] 2397name = "percent-encoding" 2398version = "2.3.2" 2399source = "registry+https://github.com/rust-lang/crates.io-index" 2400checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 2401 2402[[package]] 2403name = "petgraph" 2404version = "0.6.5" 2405source = "registry+https://github.com/rust-lang/crates.io-index" 2406checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" 2407dependencies = [ 2408 "fixedbitset", 2409 "indexmap", 2410] 2411 2412[[package]] 2413name = "phf_shared" 2414version = "0.11.3" 2415source = "registry+https://github.com/rust-lang/crates.io-index" 2416checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" 2417dependencies = [ 2418 "siphasher", 2419] 2420 2421[[package]] 2422name = "pico-args" 2423version = "0.5.0" 2424source = "registry+https://github.com/rust-lang/crates.io-index" 2425checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" 2426 2427[[package]] 2428name = "pin-project-lite" 2429version = "0.2.16" 2430source = "registry+https://github.com/rust-lang/crates.io-index" 2431checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 2432 2433[[package]] 2434name = "pin-utils" 2435version = "0.1.0" 2436source = "registry+https://github.com/rust-lang/crates.io-index" 2437checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2438 2439[[package]] 2440name = "piper" 2441version = "0.2.4" 2442source = "registry+https://github.com/rust-lang/crates.io-index" 2443checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 2444dependencies = [ 2445 "atomic-waker", 2446 "fastrand", 2447 "futures-io", 2448] 2449 2450[[package]] 2451name = "pkcs1" 2452version = "0.7.5" 2453source = "registry+https://github.com/rust-lang/crates.io-index" 2454checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 2455dependencies = [ 2456 "der", 2457 "pkcs8", 2458 "spki", 2459] 2460 2461[[package]] 2462name = "pkcs8" 2463version = "0.10.2" 2464source = "registry+https://github.com/rust-lang/crates.io-index" 2465checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 2466dependencies = [ 2467 "der", 2468 "spki", 2469] 2470 2471[[package]] 2472name = "pkg-config" 2473version = "0.3.32" 2474source = "registry+https://github.com/rust-lang/crates.io-index" 2475checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 2476 2477[[package]] 2478name = "polling" 2479version = "3.11.0" 2480source = "registry+https://github.com/rust-lang/crates.io-index" 2481checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" 2482dependencies = [ 2483 "cfg-if", 2484 "concurrent-queue", 2485 "hermit-abi", 2486 "pin-project-lite", 2487 "rustix", 2488 "windows-sys 0.61.2", 2489] 2490 2491[[package]] 2492name = "portable-atomic" 2493version = "1.13.1" 2494source = "registry+https://github.com/rust-lang/crates.io-index" 2495checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" 2496 2497[[package]] 2498name = "potential_utf" 2499version = "0.1.4" 2500source = "registry+https://github.com/rust-lang/crates.io-index" 2501checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" 2502dependencies = [ 2503 "zerovec", 2504] 2505 2506[[package]] 2507name = "ppv-lite86" 2508version = "0.2.21" 2509source = "registry+https://github.com/rust-lang/crates.io-index" 2510checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 2511dependencies = [ 2512 "zerocopy", 2513] 2514 2515[[package]] 2516name = "precomputed-hash" 2517version = "0.1.1" 2518source = "registry+https://github.com/rust-lang/crates.io-index" 2519checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 2520 2521[[package]] 2522name = "prettyplease" 2523version = "0.2.37" 2524source = "registry+https://github.com/rust-lang/crates.io-index" 2525checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" 2526dependencies = [ 2527 "proc-macro2", 2528 "syn 2.0.116", 2529] 2530 2531[[package]] 2532name = "primeorder" 2533version = "0.13.6" 2534source = "registry+https://github.com/rust-lang/crates.io-index" 2535checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 2536dependencies = [ 2537 "elliptic-curve", 2538 "serdect", 2539] 2540 2541[[package]] 2542name = "proc-macro2" 2543version = "1.0.106" 2544source = "registry+https://github.com/rust-lang/crates.io-index" 2545checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" 2546dependencies = [ 2547 "unicode-ident", 2548] 2549 2550[[package]] 2551name = "proptest" 2552version = "1.10.0" 2553source = "registry+https://github.com/rust-lang/crates.io-index" 2554checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532" 2555dependencies = [ 2556 "bit-set 0.8.0", 2557 "bit-vec 0.8.0", 2558 "bitflags", 2559 "num-traits", 2560 "rand 0.9.2", 2561 "rand_chacha 0.9.0", 2562 "rand_xorshift", 2563 "regex-syntax", 2564 "rusty-fork", 2565 "tempfile", 2566 "unarray", 2567] 2568 2569[[package]] 2570name = "quick-error" 2571version = "1.2.3" 2572source = "registry+https://github.com/rust-lang/crates.io-index" 2573checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" 2574 2575[[package]] 2576name = "quinn" 2577version = "0.11.9" 2578source = "registry+https://github.com/rust-lang/crates.io-index" 2579checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 2580dependencies = [ 2581 "bytes", 2582 "cfg_aliases", 2583 "pin-project-lite", 2584 "quinn-proto", 2585 "quinn-udp", 2586 "rustc-hash", 2587 "rustls", 2588 "socket2 0.6.2", 2589 "thiserror 2.0.18", 2590 "tokio", 2591 "tracing", 2592 "web-time", 2593] 2594 2595[[package]] 2596name = "quinn-proto" 2597version = "0.11.13" 2598source = "registry+https://github.com/rust-lang/crates.io-index" 2599checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" 2600dependencies = [ 2601 "bytes", 2602 "getrandom 0.3.4", 2603 "lru-slab", 2604 "rand 0.9.2", 2605 "ring", 2606 "rustc-hash", 2607 "rustls", 2608 "rustls-pki-types", 2609 "slab", 2610 "thiserror 2.0.18", 2611 "tinyvec", 2612 "tracing", 2613 "web-time", 2614] 2615 2616[[package]] 2617name = "quinn-udp" 2618version = "0.5.14" 2619source = "registry+https://github.com/rust-lang/crates.io-index" 2620checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 2621dependencies = [ 2622 "cfg_aliases", 2623 "libc", 2624 "once_cell", 2625 "socket2 0.6.2", 2626 "tracing", 2627 "windows-sys 0.60.2", 2628] 2629 2630[[package]] 2631name = "quote" 2632version = "1.0.44" 2633source = "registry+https://github.com/rust-lang/crates.io-index" 2634checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4" 2635dependencies = [ 2636 "proc-macro2", 2637] 2638 2639[[package]] 2640name = "r-efi" 2641version = "5.3.0" 2642source = "registry+https://github.com/rust-lang/crates.io-index" 2643checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 2644 2645[[package]] 2646name = "rand" 2647version = "0.8.5" 2648source = "registry+https://github.com/rust-lang/crates.io-index" 2649checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2650dependencies = [ 2651 "libc", 2652 "rand_chacha 0.3.1", 2653 "rand_core 0.6.4", 2654] 2655 2656[[package]] 2657name = "rand" 2658version = "0.9.2" 2659source = "registry+https://github.com/rust-lang/crates.io-index" 2660checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 2661dependencies = [ 2662 "rand_chacha 0.9.0", 2663 "rand_core 0.9.5", 2664] 2665 2666[[package]] 2667name = "rand_chacha" 2668version = "0.3.1" 2669source = "registry+https://github.com/rust-lang/crates.io-index" 2670checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2671dependencies = [ 2672 "ppv-lite86", 2673 "rand_core 0.6.4", 2674] 2675 2676[[package]] 2677name = "rand_chacha" 2678version = "0.9.0" 2679source = "registry+https://github.com/rust-lang/crates.io-index" 2680checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 2681dependencies = [ 2682 "ppv-lite86", 2683 "rand_core 0.9.5", 2684] 2685 2686[[package]] 2687name = "rand_core" 2688version = "0.6.4" 2689source = "registry+https://github.com/rust-lang/crates.io-index" 2690checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2691dependencies = [ 2692 "getrandom 0.2.17", 2693] 2694 2695[[package]] 2696name = "rand_core" 2697version = "0.9.5" 2698source = "registry+https://github.com/rust-lang/crates.io-index" 2699checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" 2700dependencies = [ 2701 "getrandom 0.3.4", 2702] 2703 2704[[package]] 2705name = "rand_xorshift" 2706version = "0.4.0" 2707source = "registry+https://github.com/rust-lang/crates.io-index" 2708checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" 2709dependencies = [ 2710 "rand_core 0.9.5", 2711] 2712 2713[[package]] 2714name = "redox_syscall" 2715version = "0.5.18" 2716source = "registry+https://github.com/rust-lang/crates.io-index" 2717checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 2718dependencies = [ 2719 "bitflags", 2720] 2721 2722[[package]] 2723name = "redox_syscall" 2724version = "0.7.2" 2725source = "registry+https://github.com/rust-lang/crates.io-index" 2726checksum = "6d94dd2f7cd932d4dc02cc8b2b50dfd38bd079a4e5d79198b99743d7fcf9a4b4" 2727dependencies = [ 2728 "bitflags", 2729] 2730 2731[[package]] 2732name = "redox_users" 2733version = "0.4.6" 2734source = "registry+https://github.com/rust-lang/crates.io-index" 2735checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" 2736dependencies = [ 2737 "getrandom 0.2.17", 2738 "libredox", 2739 "thiserror 1.0.69", 2740] 2741 2742[[package]] 2743name = "regex" 2744version = "1.12.3" 2745source = "registry+https://github.com/rust-lang/crates.io-index" 2746checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" 2747dependencies = [ 2748 "aho-corasick", 2749 "memchr", 2750 "regex-automata", 2751 "regex-syntax", 2752] 2753 2754[[package]] 2755name = "regex-automata" 2756version = "0.4.14" 2757source = "registry+https://github.com/rust-lang/crates.io-index" 2758checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" 2759dependencies = [ 2760 "aho-corasick", 2761 "memchr", 2762 "regex-syntax", 2763] 2764 2765[[package]] 2766name = "regex-syntax" 2767version = "0.8.10" 2768source = "registry+https://github.com/rust-lang/crates.io-index" 2769checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" 2770 2771[[package]] 2772name = "reqwest" 2773version = "0.12.28" 2774source = "registry+https://github.com/rust-lang/crates.io-index" 2775checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" 2776dependencies = [ 2777 "base64 0.22.1", 2778 "bytes", 2779 "encoding_rs", 2780 "futures-channel", 2781 "futures-core", 2782 "futures-util", 2783 "h2", 2784 "http 1.4.0", 2785 "http-body 1.0.1", 2786 "http-body-util", 2787 "hyper 1.8.1", 2788 "hyper-rustls", 2789 "hyper-tls", 2790 "hyper-util", 2791 "js-sys", 2792 "log", 2793 "mime", 2794 "mime_guess", 2795 "native-tls", 2796 "percent-encoding", 2797 "pin-project-lite", 2798 "quinn", 2799 "rustls", 2800 "rustls-pki-types", 2801 "serde", 2802 "serde_json", 2803 "serde_urlencoded", 2804 "sync_wrapper", 2805 "tokio", 2806 "tokio-native-tls", 2807 "tokio-rustls", 2808 "tokio-util", 2809 "tower", 2810 "tower-http", 2811 "tower-service", 2812 "url", 2813 "wasm-bindgen", 2814 "wasm-bindgen-futures", 2815 "wasm-streams", 2816 "web-sys", 2817 "webpki-roots", 2818] 2819 2820[[package]] 2821name = "reqwest-chain" 2822version = "1.0.0" 2823source = "registry+https://github.com/rust-lang/crates.io-index" 2824checksum = "da5c014fb79a8227db44a0433d748107750d2550b7fca55c59a3d7ee7d2ee2b2" 2825dependencies = [ 2826 "anyhow", 2827 "async-trait", 2828 "http 1.4.0", 2829 "reqwest-middleware", 2830] 2831 2832[[package]] 2833name = "reqwest-middleware" 2834version = "0.4.2" 2835source = "registry+https://github.com/rust-lang/crates.io-index" 2836checksum = "57f17d28a6e6acfe1733fe24bcd30774d13bffa4b8a22535b4c8c98423088d4e" 2837dependencies = [ 2838 "anyhow", 2839 "async-trait", 2840 "http 1.4.0", 2841 "reqwest", 2842 "serde", 2843 "thiserror 1.0.69", 2844 "tower-service", 2845] 2846 2847[[package]] 2848name = "resolv-conf" 2849version = "0.7.6" 2850source = "registry+https://github.com/rust-lang/crates.io-index" 2851checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7" 2852 2853[[package]] 2854name = "rfc6979" 2855version = "0.4.0" 2856source = "registry+https://github.com/rust-lang/crates.io-index" 2857checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 2858dependencies = [ 2859 "hmac", 2860 "subtle", 2861] 2862 2863[[package]] 2864name = "ring" 2865version = "0.17.14" 2866source = "registry+https://github.com/rust-lang/crates.io-index" 2867checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 2868dependencies = [ 2869 "cc", 2870 "cfg-if", 2871 "getrandom 0.2.17", 2872 "libc", 2873 "untrusted", 2874 "windows-sys 0.52.0", 2875] 2876 2877[[package]] 2878name = "rsa" 2879version = "0.9.10" 2880source = "registry+https://github.com/rust-lang/crates.io-index" 2881checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d" 2882dependencies = [ 2883 "const-oid", 2884 "digest", 2885 "num-bigint-dig", 2886 "num-integer", 2887 "num-traits", 2888 "pkcs1", 2889 "pkcs8", 2890 "rand_core 0.6.4", 2891 "signature", 2892 "spki", 2893 "subtle", 2894 "zeroize", 2895] 2896 2897[[package]] 2898name = "rustc-hash" 2899version = "2.1.1" 2900source = "registry+https://github.com/rust-lang/crates.io-index" 2901checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 2902 2903[[package]] 2904name = "rustix" 2905version = "1.1.4" 2906source = "registry+https://github.com/rust-lang/crates.io-index" 2907checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" 2908dependencies = [ 2909 "bitflags", 2910 "errno", 2911 "libc", 2912 "linux-raw-sys", 2913 "windows-sys 0.61.2", 2914] 2915 2916[[package]] 2917name = "rustls" 2918version = "0.23.37" 2919source = "registry+https://github.com/rust-lang/crates.io-index" 2920checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4" 2921dependencies = [ 2922 "once_cell", 2923 "ring", 2924 "rustls-pki-types", 2925 "rustls-webpki", 2926 "subtle", 2927 "zeroize", 2928] 2929 2930[[package]] 2931name = "rustls-pki-types" 2932version = "1.14.0" 2933source = "registry+https://github.com/rust-lang/crates.io-index" 2934checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" 2935dependencies = [ 2936 "web-time", 2937 "zeroize", 2938] 2939 2940[[package]] 2941name = "rustls-webpki" 2942version = "0.103.9" 2943source = "registry+https://github.com/rust-lang/crates.io-index" 2944checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53" 2945dependencies = [ 2946 "ring", 2947 "rustls-pki-types", 2948 "untrusted", 2949] 2950 2951[[package]] 2952name = "rustversion" 2953version = "1.0.22" 2954source = "registry+https://github.com/rust-lang/crates.io-index" 2955checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 2956 2957[[package]] 2958name = "rusty-fork" 2959version = "0.3.1" 2960source = "registry+https://github.com/rust-lang/crates.io-index" 2961checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2" 2962dependencies = [ 2963 "fnv", 2964 "quick-error", 2965 "tempfile", 2966 "wait-timeout", 2967] 2968 2969[[package]] 2970name = "ryu" 2971version = "1.0.23" 2972source = "registry+https://github.com/rust-lang/crates.io-index" 2973checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" 2974 2975[[package]] 2976name = "same-file" 2977version = "1.0.6" 2978source = "registry+https://github.com/rust-lang/crates.io-index" 2979checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2980dependencies = [ 2981 "winapi-util", 2982] 2983 2984[[package]] 2985name = "schannel" 2986version = "0.1.28" 2987source = "registry+https://github.com/rust-lang/crates.io-index" 2988checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" 2989dependencies = [ 2990 "windows-sys 0.61.2", 2991] 2992 2993[[package]] 2994name = "scopeguard" 2995version = "1.2.0" 2996source = "registry+https://github.com/rust-lang/crates.io-index" 2997checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2998 2999[[package]] 3000name = "sec1" 3001version = "0.7.3" 3002source = "registry+https://github.com/rust-lang/crates.io-index" 3003checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 3004dependencies = [ 3005 "base16ct", 3006 "der", 3007 "generic-array", 3008 "pkcs8", 3009 "serdect", 3010 "subtle", 3011 "zeroize", 3012] 3013 3014[[package]] 3015name = "security-framework" 3016version = "3.7.0" 3017source = "registry+https://github.com/rust-lang/crates.io-index" 3018checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" 3019dependencies = [ 3020 "bitflags", 3021 "core-foundation 0.10.1", 3022 "core-foundation-sys", 3023 "libc", 3024 "security-framework-sys", 3025] 3026 3027[[package]] 3028name = "security-framework-sys" 3029version = "2.17.0" 3030source = "registry+https://github.com/rust-lang/crates.io-index" 3031checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" 3032dependencies = [ 3033 "core-foundation-sys", 3034 "libc", 3035] 3036 3037[[package]] 3038name = "semver" 3039version = "1.0.27" 3040source = "registry+https://github.com/rust-lang/crates.io-index" 3041checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" 3042 3043[[package]] 3044name = "serde" 3045version = "1.0.228" 3046source = "registry+https://github.com/rust-lang/crates.io-index" 3047checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 3048dependencies = [ 3049 "serde_core", 3050 "serde_derive", 3051] 3052 3053[[package]] 3054name = "serde_bytes" 3055version = "0.11.19" 3056source = "registry+https://github.com/rust-lang/crates.io-index" 3057checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" 3058dependencies = [ 3059 "serde", 3060 "serde_core", 3061] 3062 3063[[package]] 3064name = "serde_core" 3065version = "1.0.228" 3066source = "registry+https://github.com/rust-lang/crates.io-index" 3067checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 3068dependencies = [ 3069 "serde_derive", 3070] 3071 3072[[package]] 3073name = "serde_derive" 3074version = "1.0.228" 3075source = "registry+https://github.com/rust-lang/crates.io-index" 3076checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 3077dependencies = [ 3078 "proc-macro2", 3079 "quote", 3080 "syn 2.0.116", 3081] 3082 3083[[package]] 3084name = "serde_json" 3085version = "1.0.149" 3086source = "registry+https://github.com/rust-lang/crates.io-index" 3087checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" 3088dependencies = [ 3089 "itoa", 3090 "memchr", 3091 "serde", 3092 "serde_core", 3093 "zmij", 3094] 3095 3096[[package]] 3097name = "serde_path_to_error" 3098version = "0.1.20" 3099source = "registry+https://github.com/rust-lang/crates.io-index" 3100checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" 3101dependencies = [ 3102 "itoa", 3103 "serde", 3104 "serde_core", 3105] 3106 3107[[package]] 3108name = "serde_qs" 3109version = "0.13.0" 3110source = "registry+https://github.com/rust-lang/crates.io-index" 3111checksum = "cd34f36fe4c5ba9654417139a9b3a20d2e1de6012ee678ad14d240c22c78d8d6" 3112dependencies = [ 3113 "percent-encoding", 3114 "serde", 3115 "thiserror 1.0.69", 3116] 3117 3118[[package]] 3119name = "serde_regex" 3120version = "1.1.0" 3121source = "registry+https://github.com/rust-lang/crates.io-index" 3122checksum = "a8136f1a4ea815d7eac4101cfd0b16dc0cb5e1fe1b8609dfd728058656b7badf" 3123dependencies = [ 3124 "regex", 3125 "serde", 3126] 3127 3128[[package]] 3129name = "serde_urlencoded" 3130version = "0.7.1" 3131source = "registry+https://github.com/rust-lang/crates.io-index" 3132checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 3133dependencies = [ 3134 "form_urlencoded", 3135 "itoa", 3136 "ryu", 3137 "serde", 3138] 3139 3140[[package]] 3141name = "serdect" 3142version = "0.2.0" 3143source = "registry+https://github.com/rust-lang/crates.io-index" 3144checksum = "a84f14a19e9a014bb9f4512488d9829a68e04ecabffb0f9904cd1ace94598177" 3145dependencies = [ 3146 "base16ct", 3147 "serde", 3148] 3149 3150[[package]] 3151name = "sha1" 3152version = "0.10.6" 3153source = "registry+https://github.com/rust-lang/crates.io-index" 3154checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 3155dependencies = [ 3156 "cfg-if", 3157 "cpufeatures", 3158 "digest", 3159] 3160 3161[[package]] 3162name = "sha2" 3163version = "0.10.9" 3164source = "registry+https://github.com/rust-lang/crates.io-index" 3165checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 3166dependencies = [ 3167 "cfg-if", 3168 "cpufeatures", 3169 "digest", 3170] 3171 3172[[package]] 3173name = "shlex" 3174version = "1.3.0" 3175source = "registry+https://github.com/rust-lang/crates.io-index" 3176checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 3177 3178[[package]] 3179name = "signal-hook-registry" 3180version = "1.4.8" 3181source = "registry+https://github.com/rust-lang/crates.io-index" 3182checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 3183dependencies = [ 3184 "errno", 3185 "libc", 3186] 3187 3188[[package]] 3189name = "signature" 3190version = "2.2.0" 3191source = "registry+https://github.com/rust-lang/crates.io-index" 3192checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 3193dependencies = [ 3194 "digest", 3195 "rand_core 0.6.4", 3196] 3197 3198[[package]] 3199name = "simd-adler32" 3200version = "0.3.8" 3201source = "registry+https://github.com/rust-lang/crates.io-index" 3202checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" 3203 3204[[package]] 3205name = "similar" 3206version = "2.7.0" 3207source = "registry+https://github.com/rust-lang/crates.io-index" 3208checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa" 3209 3210[[package]] 3211name = "siphasher" 3212version = "1.0.2" 3213source = "registry+https://github.com/rust-lang/crates.io-index" 3214checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e" 3215 3216[[package]] 3217name = "slab" 3218version = "0.4.12" 3219source = "registry+https://github.com/rust-lang/crates.io-index" 3220checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" 3221 3222[[package]] 3223name = "slipnote-backend" 3224version = "0.1.0" 3225dependencies = [ 3226 "anyhow", 3227 "async-trait", 3228 "atproto-identity", 3229 "atproto-oauth", 3230 "atproto-oauth-axum", 3231 "axiom-rs", 3232 "axum", 3233 "bytes", 3234 "chrono", 3235 "dotenvy", 3236 "httpmock", 3237 "proptest", 3238 "rand 0.9.2", 3239 "reqwest", 3240 "serde", 3241 "serde_json", 3242 "sqlx", 3243 "thiserror 2.0.18", 3244 "tokio", 3245 "tower", 3246 "tower-http", 3247 "uuid", 3248] 3249 3250[[package]] 3251name = "smallvec" 3252version = "1.15.1" 3253source = "registry+https://github.com/rust-lang/crates.io-index" 3254checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 3255dependencies = [ 3256 "serde", 3257] 3258 3259[[package]] 3260name = "socket2" 3261version = "0.5.10" 3262source = "registry+https://github.com/rust-lang/crates.io-index" 3263checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 3264dependencies = [ 3265 "libc", 3266 "windows-sys 0.52.0", 3267] 3268 3269[[package]] 3270name = "socket2" 3271version = "0.6.2" 3272source = "registry+https://github.com/rust-lang/crates.io-index" 3273checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0" 3274dependencies = [ 3275 "libc", 3276 "windows-sys 0.60.2", 3277] 3278 3279[[package]] 3280name = "spin" 3281version = "0.9.8" 3282source = "registry+https://github.com/rust-lang/crates.io-index" 3283checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 3284dependencies = [ 3285 "lock_api", 3286] 3287 3288[[package]] 3289name = "spki" 3290version = "0.7.3" 3291source = "registry+https://github.com/rust-lang/crates.io-index" 3292checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 3293dependencies = [ 3294 "base64ct", 3295 "der", 3296] 3297 3298[[package]] 3299name = "sqlx" 3300version = "0.8.6" 3301source = "registry+https://github.com/rust-lang/crates.io-index" 3302checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc" 3303dependencies = [ 3304 "sqlx-core", 3305 "sqlx-macros", 3306 "sqlx-mysql", 3307 "sqlx-postgres", 3308 "sqlx-sqlite", 3309] 3310 3311[[package]] 3312name = "sqlx-core" 3313version = "0.8.6" 3314source = "registry+https://github.com/rust-lang/crates.io-index" 3315checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6" 3316dependencies = [ 3317 "base64 0.22.1", 3318 "bytes", 3319 "chrono", 3320 "crc", 3321 "crossbeam-queue", 3322 "either", 3323 "event-listener 5.4.1", 3324 "futures-core", 3325 "futures-intrusive", 3326 "futures-io", 3327 "futures-util", 3328 "hashbrown 0.15.5", 3329 "hashlink", 3330 "indexmap", 3331 "log", 3332 "memchr", 3333 "once_cell", 3334 "percent-encoding", 3335 "serde", 3336 "serde_json", 3337 "sha2", 3338 "smallvec", 3339 "thiserror 2.0.18", 3340 "tokio", 3341 "tokio-stream", 3342 "tracing", 3343 "url", 3344 "uuid", 3345] 3346 3347[[package]] 3348name = "sqlx-macros" 3349version = "0.8.6" 3350source = "registry+https://github.com/rust-lang/crates.io-index" 3351checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d" 3352dependencies = [ 3353 "proc-macro2", 3354 "quote", 3355 "sqlx-core", 3356 "sqlx-macros-core", 3357 "syn 2.0.116", 3358] 3359 3360[[package]] 3361name = "sqlx-macros-core" 3362version = "0.8.6" 3363source = "registry+https://github.com/rust-lang/crates.io-index" 3364checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b" 3365dependencies = [ 3366 "dotenvy", 3367 "either", 3368 "heck", 3369 "hex", 3370 "once_cell", 3371 "proc-macro2", 3372 "quote", 3373 "serde", 3374 "serde_json", 3375 "sha2", 3376 "sqlx-core", 3377 "sqlx-mysql", 3378 "sqlx-postgres", 3379 "sqlx-sqlite", 3380 "syn 2.0.116", 3381 "tokio", 3382 "url", 3383] 3384 3385[[package]] 3386name = "sqlx-mysql" 3387version = "0.8.6" 3388source = "registry+https://github.com/rust-lang/crates.io-index" 3389checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526" 3390dependencies = [ 3391 "atoi", 3392 "base64 0.22.1", 3393 "bitflags", 3394 "byteorder", 3395 "bytes", 3396 "chrono", 3397 "crc", 3398 "digest", 3399 "dotenvy", 3400 "either", 3401 "futures-channel", 3402 "futures-core", 3403 "futures-io", 3404 "futures-util", 3405 "generic-array", 3406 "hex", 3407 "hkdf", 3408 "hmac", 3409 "itoa", 3410 "log", 3411 "md-5", 3412 "memchr", 3413 "once_cell", 3414 "percent-encoding", 3415 "rand 0.8.5", 3416 "rsa", 3417 "serde", 3418 "sha1", 3419 "sha2", 3420 "smallvec", 3421 "sqlx-core", 3422 "stringprep", 3423 "thiserror 2.0.18", 3424 "tracing", 3425 "uuid", 3426 "whoami", 3427] 3428 3429[[package]] 3430name = "sqlx-postgres" 3431version = "0.8.6" 3432source = "registry+https://github.com/rust-lang/crates.io-index" 3433checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46" 3434dependencies = [ 3435 "atoi", 3436 "base64 0.22.1", 3437 "bitflags", 3438 "byteorder", 3439 "chrono", 3440 "crc", 3441 "dotenvy", 3442 "etcetera", 3443 "futures-channel", 3444 "futures-core", 3445 "futures-util", 3446 "hex", 3447 "hkdf", 3448 "hmac", 3449 "home", 3450 "itoa", 3451 "log", 3452 "md-5", 3453 "memchr", 3454 "once_cell", 3455 "rand 0.8.5", 3456 "serde", 3457 "serde_json", 3458 "sha2", 3459 "smallvec", 3460 "sqlx-core", 3461 "stringprep", 3462 "thiserror 2.0.18", 3463 "tracing", 3464 "uuid", 3465 "whoami", 3466] 3467 3468[[package]] 3469name = "sqlx-sqlite" 3470version = "0.8.6" 3471source = "registry+https://github.com/rust-lang/crates.io-index" 3472checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea" 3473dependencies = [ 3474 "atoi", 3475 "chrono", 3476 "flume", 3477 "futures-channel", 3478 "futures-core", 3479 "futures-executor", 3480 "futures-intrusive", 3481 "futures-util", 3482 "libsqlite3-sys", 3483 "log", 3484 "percent-encoding", 3485 "serde", 3486 "serde_urlencoded", 3487 "sqlx-core", 3488 "thiserror 2.0.18", 3489 "tracing", 3490 "url", 3491 "uuid", 3492] 3493 3494[[package]] 3495name = "stable_deref_trait" 3496version = "1.2.1" 3497source = "registry+https://github.com/rust-lang/crates.io-index" 3498checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 3499 3500[[package]] 3501name = "string_cache" 3502version = "0.8.9" 3503source = "registry+https://github.com/rust-lang/crates.io-index" 3504checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" 3505dependencies = [ 3506 "new_debug_unreachable", 3507 "parking_lot", 3508 "phf_shared", 3509 "precomputed-hash", 3510] 3511 3512[[package]] 3513name = "stringprep" 3514version = "0.1.5" 3515source = "registry+https://github.com/rust-lang/crates.io-index" 3516checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" 3517dependencies = [ 3518 "unicode-bidi", 3519 "unicode-normalization", 3520 "unicode-properties", 3521] 3522 3523[[package]] 3524name = "subtle" 3525version = "2.6.1" 3526source = "registry+https://github.com/rust-lang/crates.io-index" 3527checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 3528 3529[[package]] 3530name = "syn" 3531version = "1.0.109" 3532source = "registry+https://github.com/rust-lang/crates.io-index" 3533checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 3534dependencies = [ 3535 "proc-macro2", 3536 "quote", 3537 "unicode-ident", 3538] 3539 3540[[package]] 3541name = "syn" 3542version = "2.0.116" 3543source = "registry+https://github.com/rust-lang/crates.io-index" 3544checksum = "3df424c70518695237746f84cede799c9c58fcb37450d7b23716568cc8bc69cb" 3545dependencies = [ 3546 "proc-macro2", 3547 "quote", 3548 "unicode-ident", 3549] 3550 3551[[package]] 3552name = "sync_wrapper" 3553version = "1.0.2" 3554source = "registry+https://github.com/rust-lang/crates.io-index" 3555checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 3556dependencies = [ 3557 "futures-core", 3558] 3559 3560[[package]] 3561name = "synstructure" 3562version = "0.13.2" 3563source = "registry+https://github.com/rust-lang/crates.io-index" 3564checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 3565dependencies = [ 3566 "proc-macro2", 3567 "quote", 3568 "syn 2.0.116", 3569] 3570 3571[[package]] 3572name = "system-configuration" 3573version = "0.7.0" 3574source = "registry+https://github.com/rust-lang/crates.io-index" 3575checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" 3576dependencies = [ 3577 "bitflags", 3578 "core-foundation 0.9.4", 3579 "system-configuration-sys", 3580] 3581 3582[[package]] 3583name = "system-configuration-sys" 3584version = "0.6.0" 3585source = "registry+https://github.com/rust-lang/crates.io-index" 3586checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 3587dependencies = [ 3588 "core-foundation-sys", 3589 "libc", 3590] 3591 3592[[package]] 3593name = "tagptr" 3594version = "0.2.0" 3595source = "registry+https://github.com/rust-lang/crates.io-index" 3596checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" 3597 3598[[package]] 3599name = "tempfile" 3600version = "3.26.0" 3601source = "registry+https://github.com/rust-lang/crates.io-index" 3602checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0" 3603dependencies = [ 3604 "fastrand", 3605 "getrandom 0.4.1", 3606 "once_cell", 3607 "rustix", 3608 "windows-sys 0.61.2", 3609] 3610 3611[[package]] 3612name = "term" 3613version = "0.7.0" 3614source = "registry+https://github.com/rust-lang/crates.io-index" 3615checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" 3616dependencies = [ 3617 "dirs-next", 3618 "rustversion", 3619 "winapi", 3620] 3621 3622[[package]] 3623name = "thiserror" 3624version = "1.0.69" 3625source = "registry+https://github.com/rust-lang/crates.io-index" 3626checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 3627dependencies = [ 3628 "thiserror-impl 1.0.69", 3629] 3630 3631[[package]] 3632name = "thiserror" 3633version = "2.0.18" 3634source = "registry+https://github.com/rust-lang/crates.io-index" 3635checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" 3636dependencies = [ 3637 "thiserror-impl 2.0.18", 3638] 3639 3640[[package]] 3641name = "thiserror-impl" 3642version = "1.0.69" 3643source = "registry+https://github.com/rust-lang/crates.io-index" 3644checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 3645dependencies = [ 3646 "proc-macro2", 3647 "quote", 3648 "syn 2.0.116", 3649] 3650 3651[[package]] 3652name = "thiserror-impl" 3653version = "2.0.18" 3654source = "registry+https://github.com/rust-lang/crates.io-index" 3655checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" 3656dependencies = [ 3657 "proc-macro2", 3658 "quote", 3659 "syn 2.0.116", 3660] 3661 3662[[package]] 3663name = "tiny-keccak" 3664version = "2.0.2" 3665source = "registry+https://github.com/rust-lang/crates.io-index" 3666checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" 3667dependencies = [ 3668 "crunchy", 3669] 3670 3671[[package]] 3672name = "tinystr" 3673version = "0.8.2" 3674source = "registry+https://github.com/rust-lang/crates.io-index" 3675checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" 3676dependencies = [ 3677 "displaydoc", 3678 "zerovec", 3679] 3680 3681[[package]] 3682name = "tinyvec" 3683version = "1.10.0" 3684source = "registry+https://github.com/rust-lang/crates.io-index" 3685checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" 3686dependencies = [ 3687 "tinyvec_macros", 3688] 3689 3690[[package]] 3691name = "tinyvec_macros" 3692version = "0.1.1" 3693source = "registry+https://github.com/rust-lang/crates.io-index" 3694checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3695 3696[[package]] 3697name = "tokio" 3698version = "1.49.0" 3699source = "registry+https://github.com/rust-lang/crates.io-index" 3700checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" 3701dependencies = [ 3702 "bytes", 3703 "libc", 3704 "mio", 3705 "pin-project-lite", 3706 "signal-hook-registry", 3707 "socket2 0.6.2", 3708 "tokio-macros", 3709 "windows-sys 0.61.2", 3710] 3711 3712[[package]] 3713name = "tokio-macros" 3714version = "2.6.0" 3715source = "registry+https://github.com/rust-lang/crates.io-index" 3716checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" 3717dependencies = [ 3718 "proc-macro2", 3719 "quote", 3720 "syn 2.0.116", 3721] 3722 3723[[package]] 3724name = "tokio-native-tls" 3725version = "0.3.1" 3726source = "registry+https://github.com/rust-lang/crates.io-index" 3727checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 3728dependencies = [ 3729 "native-tls", 3730 "tokio", 3731] 3732 3733[[package]] 3734name = "tokio-rustls" 3735version = "0.26.4" 3736source = "registry+https://github.com/rust-lang/crates.io-index" 3737checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 3738dependencies = [ 3739 "rustls", 3740 "tokio", 3741] 3742 3743[[package]] 3744name = "tokio-stream" 3745version = "0.1.18" 3746source = "registry+https://github.com/rust-lang/crates.io-index" 3747checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" 3748dependencies = [ 3749 "futures-core", 3750 "pin-project-lite", 3751 "tokio", 3752] 3753 3754[[package]] 3755name = "tokio-util" 3756version = "0.7.18" 3757source = "registry+https://github.com/rust-lang/crates.io-index" 3758checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" 3759dependencies = [ 3760 "bytes", 3761 "futures-core", 3762 "futures-sink", 3763 "pin-project-lite", 3764 "tokio", 3765] 3766 3767[[package]] 3768name = "tower" 3769version = "0.5.3" 3770source = "registry+https://github.com/rust-lang/crates.io-index" 3771checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" 3772dependencies = [ 3773 "futures-core", 3774 "futures-util", 3775 "pin-project-lite", 3776 "sync_wrapper", 3777 "tokio", 3778 "tower-layer", 3779 "tower-service", 3780 "tracing", 3781] 3782 3783[[package]] 3784name = "tower-http" 3785version = "0.6.8" 3786source = "registry+https://github.com/rust-lang/crates.io-index" 3787checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" 3788dependencies = [ 3789 "async-compression", 3790 "bitflags", 3791 "bytes", 3792 "futures-core", 3793 "futures-util", 3794 "http 1.4.0", 3795 "http-body 1.0.1", 3796 "http-body-util", 3797 "iri-string", 3798 "pin-project-lite", 3799 "tokio", 3800 "tokio-util", 3801 "tower", 3802 "tower-layer", 3803 "tower-service", 3804] 3805 3806[[package]] 3807name = "tower-layer" 3808version = "0.3.3" 3809source = "registry+https://github.com/rust-lang/crates.io-index" 3810checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 3811 3812[[package]] 3813name = "tower-service" 3814version = "0.3.3" 3815source = "registry+https://github.com/rust-lang/crates.io-index" 3816checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 3817 3818[[package]] 3819name = "tracing" 3820version = "0.1.44" 3821source = "registry+https://github.com/rust-lang/crates.io-index" 3822checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 3823dependencies = [ 3824 "log", 3825 "pin-project-lite", 3826 "tracing-attributes", 3827 "tracing-core", 3828] 3829 3830[[package]] 3831name = "tracing-attributes" 3832version = "0.1.31" 3833source = "registry+https://github.com/rust-lang/crates.io-index" 3834checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 3835dependencies = [ 3836 "proc-macro2", 3837 "quote", 3838 "syn 2.0.116", 3839] 3840 3841[[package]] 3842name = "tracing-core" 3843version = "0.1.36" 3844source = "registry+https://github.com/rust-lang/crates.io-index" 3845checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 3846dependencies = [ 3847 "once_cell", 3848] 3849 3850[[package]] 3851name = "try-lock" 3852version = "0.2.5" 3853source = "registry+https://github.com/rust-lang/crates.io-index" 3854checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 3855 3856[[package]] 3857name = "typenum" 3858version = "1.19.0" 3859source = "registry+https://github.com/rust-lang/crates.io-index" 3860checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 3861 3862[[package]] 3863name = "ulid" 3864version = "1.2.1" 3865source = "registry+https://github.com/rust-lang/crates.io-index" 3866checksum = "470dbf6591da1b39d43c14523b2b469c86879a53e8b758c8e090a470fe7b1fbe" 3867dependencies = [ 3868 "rand 0.9.2", 3869 "web-time", 3870] 3871 3872[[package]] 3873name = "unarray" 3874version = "0.1.4" 3875source = "registry+https://github.com/rust-lang/crates.io-index" 3876checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" 3877 3878[[package]] 3879name = "unicase" 3880version = "2.9.0" 3881source = "registry+https://github.com/rust-lang/crates.io-index" 3882checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142" 3883 3884[[package]] 3885name = "unicode-bidi" 3886version = "0.3.18" 3887source = "registry+https://github.com/rust-lang/crates.io-index" 3888checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" 3889 3890[[package]] 3891name = "unicode-ident" 3892version = "1.0.24" 3893source = "registry+https://github.com/rust-lang/crates.io-index" 3894checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" 3895 3896[[package]] 3897name = "unicode-normalization" 3898version = "0.1.25" 3899source = "registry+https://github.com/rust-lang/crates.io-index" 3900checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" 3901dependencies = [ 3902 "tinyvec", 3903] 3904 3905[[package]] 3906name = "unicode-properties" 3907version = "0.1.4" 3908source = "registry+https://github.com/rust-lang/crates.io-index" 3909checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d" 3910 3911[[package]] 3912name = "unicode-xid" 3913version = "0.2.6" 3914source = "registry+https://github.com/rust-lang/crates.io-index" 3915checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 3916 3917[[package]] 3918name = "unsigned-varint" 3919version = "0.8.0" 3920source = "registry+https://github.com/rust-lang/crates.io-index" 3921checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 3922 3923[[package]] 3924name = "untrusted" 3925version = "0.9.0" 3926source = "registry+https://github.com/rust-lang/crates.io-index" 3927checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 3928 3929[[package]] 3930name = "url" 3931version = "2.5.8" 3932source = "registry+https://github.com/rust-lang/crates.io-index" 3933checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" 3934dependencies = [ 3935 "form_urlencoded", 3936 "idna", 3937 "percent-encoding", 3938 "serde", 3939 "serde_derive", 3940] 3941 3942[[package]] 3943name = "utf8_iter" 3944version = "1.0.4" 3945source = "registry+https://github.com/rust-lang/crates.io-index" 3946checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 3947 3948[[package]] 3949name = "uuid" 3950version = "1.21.0" 3951source = "registry+https://github.com/rust-lang/crates.io-index" 3952checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb" 3953dependencies = [ 3954 "getrandom 0.4.1", 3955 "js-sys", 3956 "wasm-bindgen", 3957] 3958 3959[[package]] 3960name = "value-bag" 3961version = "1.12.0" 3962source = "registry+https://github.com/rust-lang/crates.io-index" 3963checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0" 3964 3965[[package]] 3966name = "vcpkg" 3967version = "0.2.15" 3968source = "registry+https://github.com/rust-lang/crates.io-index" 3969checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3970 3971[[package]] 3972name = "version_check" 3973version = "0.9.5" 3974source = "registry+https://github.com/rust-lang/crates.io-index" 3975checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 3976 3977[[package]] 3978name = "wait-timeout" 3979version = "0.2.1" 3980source = "registry+https://github.com/rust-lang/crates.io-index" 3981checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11" 3982dependencies = [ 3983 "libc", 3984] 3985 3986[[package]] 3987name = "walkdir" 3988version = "2.5.0" 3989source = "registry+https://github.com/rust-lang/crates.io-index" 3990checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 3991dependencies = [ 3992 "same-file", 3993 "winapi-util", 3994] 3995 3996[[package]] 3997name = "want" 3998version = "0.3.1" 3999source = "registry+https://github.com/rust-lang/crates.io-index" 4000checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 4001dependencies = [ 4002 "try-lock", 4003] 4004 4005[[package]] 4006name = "wasi" 4007version = "0.11.1+wasi-snapshot-preview1" 4008source = "registry+https://github.com/rust-lang/crates.io-index" 4009checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 4010 4011[[package]] 4012name = "wasip2" 4013version = "1.0.2+wasi-0.2.9" 4014source = "registry+https://github.com/rust-lang/crates.io-index" 4015checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" 4016dependencies = [ 4017 "wit-bindgen", 4018] 4019 4020[[package]] 4021name = "wasip3" 4022version = "0.4.0+wasi-0.3.0-rc-2026-01-06" 4023source = "registry+https://github.com/rust-lang/crates.io-index" 4024checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" 4025dependencies = [ 4026 "wit-bindgen", 4027] 4028 4029[[package]] 4030name = "wasite" 4031version = "0.1.0" 4032source = "registry+https://github.com/rust-lang/crates.io-index" 4033checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 4034 4035[[package]] 4036name = "wasm-bindgen" 4037version = "0.2.113" 4038source = "registry+https://github.com/rust-lang/crates.io-index" 4039checksum = "60722a937f594b7fde9adb894d7c092fc1bb6612897c46368d18e7a20208eff2" 4040dependencies = [ 4041 "cfg-if", 4042 "once_cell", 4043 "rustversion", 4044 "wasm-bindgen-macro", 4045 "wasm-bindgen-shared", 4046] 4047 4048[[package]] 4049name = "wasm-bindgen-futures" 4050version = "0.4.63" 4051source = "registry+https://github.com/rust-lang/crates.io-index" 4052checksum = "8a89f4650b770e4521aa6573724e2aed4704372151bd0de9d16a3bbabb87441a" 4053dependencies = [ 4054 "cfg-if", 4055 "futures-util", 4056 "js-sys", 4057 "once_cell", 4058 "wasm-bindgen", 4059 "web-sys", 4060] 4061 4062[[package]] 4063name = "wasm-bindgen-macro" 4064version = "0.2.113" 4065source = "registry+https://github.com/rust-lang/crates.io-index" 4066checksum = "0fac8c6395094b6b91c4af293f4c79371c163f9a6f56184d2c9a85f5a95f3950" 4067dependencies = [ 4068 "quote", 4069 "wasm-bindgen-macro-support", 4070] 4071 4072[[package]] 4073name = "wasm-bindgen-macro-support" 4074version = "0.2.113" 4075source = "registry+https://github.com/rust-lang/crates.io-index" 4076checksum = "ab3fabce6159dc20728033842636887e4877688ae94382766e00b180abac9d60" 4077dependencies = [ 4078 "bumpalo", 4079 "proc-macro2", 4080 "quote", 4081 "syn 2.0.116", 4082 "wasm-bindgen-shared", 4083] 4084 4085[[package]] 4086name = "wasm-bindgen-shared" 4087version = "0.2.113" 4088source = "registry+https://github.com/rust-lang/crates.io-index" 4089checksum = "de0e091bdb824da87dc01d967388880d017a0a9bc4f3bdc0d86ee9f9336e3bb5" 4090dependencies = [ 4091 "unicode-ident", 4092] 4093 4094[[package]] 4095name = "wasm-encoder" 4096version = "0.244.0" 4097source = "registry+https://github.com/rust-lang/crates.io-index" 4098checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" 4099dependencies = [ 4100 "leb128fmt", 4101 "wasmparser", 4102] 4103 4104[[package]] 4105name = "wasm-metadata" 4106version = "0.244.0" 4107source = "registry+https://github.com/rust-lang/crates.io-index" 4108checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" 4109dependencies = [ 4110 "anyhow", 4111 "indexmap", 4112 "wasm-encoder", 4113 "wasmparser", 4114] 4115 4116[[package]] 4117name = "wasm-streams" 4118version = "0.4.2" 4119source = "registry+https://github.com/rust-lang/crates.io-index" 4120checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" 4121dependencies = [ 4122 "futures-util", 4123 "js-sys", 4124 "wasm-bindgen", 4125 "wasm-bindgen-futures", 4126 "web-sys", 4127] 4128 4129[[package]] 4130name = "wasmparser" 4131version = "0.244.0" 4132source = "registry+https://github.com/rust-lang/crates.io-index" 4133checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" 4134dependencies = [ 4135 "bitflags", 4136 "hashbrown 0.15.5", 4137 "indexmap", 4138 "semver", 4139] 4140 4141[[package]] 4142name = "web-sys" 4143version = "0.3.90" 4144source = "registry+https://github.com/rust-lang/crates.io-index" 4145checksum = "705eceb4ce901230f8625bd1d665128056ccbe4b7408faa625eec1ba80f59a97" 4146dependencies = [ 4147 "js-sys", 4148 "wasm-bindgen", 4149] 4150 4151[[package]] 4152name = "web-time" 4153version = "1.1.0" 4154source = "registry+https://github.com/rust-lang/crates.io-index" 4155checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 4156dependencies = [ 4157 "js-sys", 4158 "wasm-bindgen", 4159] 4160 4161[[package]] 4162name = "webpki-roots" 4163version = "1.0.6" 4164source = "registry+https://github.com/rust-lang/crates.io-index" 4165checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed" 4166dependencies = [ 4167 "rustls-pki-types", 4168] 4169 4170[[package]] 4171name = "whoami" 4172version = "1.6.1" 4173source = "registry+https://github.com/rust-lang/crates.io-index" 4174checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d" 4175dependencies = [ 4176 "libredox", 4177 "wasite", 4178] 4179 4180[[package]] 4181name = "widestring" 4182version = "1.2.1" 4183source = "registry+https://github.com/rust-lang/crates.io-index" 4184checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" 4185 4186[[package]] 4187name = "winapi" 4188version = "0.3.9" 4189source = "registry+https://github.com/rust-lang/crates.io-index" 4190checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 4191dependencies = [ 4192 "winapi-i686-pc-windows-gnu", 4193 "winapi-x86_64-pc-windows-gnu", 4194] 4195 4196[[package]] 4197name = "winapi-i686-pc-windows-gnu" 4198version = "0.4.0" 4199source = "registry+https://github.com/rust-lang/crates.io-index" 4200checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 4201 4202[[package]] 4203name = "winapi-util" 4204version = "0.1.11" 4205source = "registry+https://github.com/rust-lang/crates.io-index" 4206checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" 4207dependencies = [ 4208 "windows-sys 0.61.2", 4209] 4210 4211[[package]] 4212name = "winapi-x86_64-pc-windows-gnu" 4213version = "0.4.0" 4214source = "registry+https://github.com/rust-lang/crates.io-index" 4215checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 4216 4217[[package]] 4218name = "windows-core" 4219version = "0.62.2" 4220source = "registry+https://github.com/rust-lang/crates.io-index" 4221checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 4222dependencies = [ 4223 "windows-implement", 4224 "windows-interface", 4225 "windows-link", 4226 "windows-result", 4227 "windows-strings", 4228] 4229 4230[[package]] 4231name = "windows-implement" 4232version = "0.60.2" 4233source = "registry+https://github.com/rust-lang/crates.io-index" 4234checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 4235dependencies = [ 4236 "proc-macro2", 4237 "quote", 4238 "syn 2.0.116", 4239] 4240 4241[[package]] 4242name = "windows-interface" 4243version = "0.59.3" 4244source = "registry+https://github.com/rust-lang/crates.io-index" 4245checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 4246dependencies = [ 4247 "proc-macro2", 4248 "quote", 4249 "syn 2.0.116", 4250] 4251 4252[[package]] 4253name = "windows-link" 4254version = "0.2.1" 4255source = "registry+https://github.com/rust-lang/crates.io-index" 4256checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 4257 4258[[package]] 4259name = "windows-registry" 4260version = "0.6.1" 4261source = "registry+https://github.com/rust-lang/crates.io-index" 4262checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" 4263dependencies = [ 4264 "windows-link", 4265 "windows-result", 4266 "windows-strings", 4267] 4268 4269[[package]] 4270name = "windows-result" 4271version = "0.4.1" 4272source = "registry+https://github.com/rust-lang/crates.io-index" 4273checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 4274dependencies = [ 4275 "windows-link", 4276] 4277 4278[[package]] 4279name = "windows-strings" 4280version = "0.5.1" 4281source = "registry+https://github.com/rust-lang/crates.io-index" 4282checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 4283dependencies = [ 4284 "windows-link", 4285] 4286 4287[[package]] 4288name = "windows-sys" 4289version = "0.48.0" 4290source = "registry+https://github.com/rust-lang/crates.io-index" 4291checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 4292dependencies = [ 4293 "windows-targets 0.48.5", 4294] 4295 4296[[package]] 4297name = "windows-sys" 4298version = "0.52.0" 4299source = "registry+https://github.com/rust-lang/crates.io-index" 4300checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 4301dependencies = [ 4302 "windows-targets 0.52.6", 4303] 4304 4305[[package]] 4306name = "windows-sys" 4307version = "0.60.2" 4308source = "registry+https://github.com/rust-lang/crates.io-index" 4309checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 4310dependencies = [ 4311 "windows-targets 0.53.5", 4312] 4313 4314[[package]] 4315name = "windows-sys" 4316version = "0.61.2" 4317source = "registry+https://github.com/rust-lang/crates.io-index" 4318checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 4319dependencies = [ 4320 "windows-link", 4321] 4322 4323[[package]] 4324name = "windows-targets" 4325version = "0.48.5" 4326source = "registry+https://github.com/rust-lang/crates.io-index" 4327checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 4328dependencies = [ 4329 "windows_aarch64_gnullvm 0.48.5", 4330 "windows_aarch64_msvc 0.48.5", 4331 "windows_i686_gnu 0.48.5", 4332 "windows_i686_msvc 0.48.5", 4333 "windows_x86_64_gnu 0.48.5", 4334 "windows_x86_64_gnullvm 0.48.5", 4335 "windows_x86_64_msvc 0.48.5", 4336] 4337 4338[[package]] 4339name = "windows-targets" 4340version = "0.52.6" 4341source = "registry+https://github.com/rust-lang/crates.io-index" 4342checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 4343dependencies = [ 4344 "windows_aarch64_gnullvm 0.52.6", 4345 "windows_aarch64_msvc 0.52.6", 4346 "windows_i686_gnu 0.52.6", 4347 "windows_i686_gnullvm 0.52.6", 4348 "windows_i686_msvc 0.52.6", 4349 "windows_x86_64_gnu 0.52.6", 4350 "windows_x86_64_gnullvm 0.52.6", 4351 "windows_x86_64_msvc 0.52.6", 4352] 4353 4354[[package]] 4355name = "windows-targets" 4356version = "0.53.5" 4357source = "registry+https://github.com/rust-lang/crates.io-index" 4358checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 4359dependencies = [ 4360 "windows-link", 4361 "windows_aarch64_gnullvm 0.53.1", 4362 "windows_aarch64_msvc 0.53.1", 4363 "windows_i686_gnu 0.53.1", 4364 "windows_i686_gnullvm 0.53.1", 4365 "windows_i686_msvc 0.53.1", 4366 "windows_x86_64_gnu 0.53.1", 4367 "windows_x86_64_gnullvm 0.53.1", 4368 "windows_x86_64_msvc 0.53.1", 4369] 4370 4371[[package]] 4372name = "windows_aarch64_gnullvm" 4373version = "0.48.5" 4374source = "registry+https://github.com/rust-lang/crates.io-index" 4375checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 4376 4377[[package]] 4378name = "windows_aarch64_gnullvm" 4379version = "0.52.6" 4380source = "registry+https://github.com/rust-lang/crates.io-index" 4381checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 4382 4383[[package]] 4384name = "windows_aarch64_gnullvm" 4385version = "0.53.1" 4386source = "registry+https://github.com/rust-lang/crates.io-index" 4387checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 4388 4389[[package]] 4390name = "windows_aarch64_msvc" 4391version = "0.48.5" 4392source = "registry+https://github.com/rust-lang/crates.io-index" 4393checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 4394 4395[[package]] 4396name = "windows_aarch64_msvc" 4397version = "0.52.6" 4398source = "registry+https://github.com/rust-lang/crates.io-index" 4399checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 4400 4401[[package]] 4402name = "windows_aarch64_msvc" 4403version = "0.53.1" 4404source = "registry+https://github.com/rust-lang/crates.io-index" 4405checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 4406 4407[[package]] 4408name = "windows_i686_gnu" 4409version = "0.48.5" 4410source = "registry+https://github.com/rust-lang/crates.io-index" 4411checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 4412 4413[[package]] 4414name = "windows_i686_gnu" 4415version = "0.52.6" 4416source = "registry+https://github.com/rust-lang/crates.io-index" 4417checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 4418 4419[[package]] 4420name = "windows_i686_gnu" 4421version = "0.53.1" 4422source = "registry+https://github.com/rust-lang/crates.io-index" 4423checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 4424 4425[[package]] 4426name = "windows_i686_gnullvm" 4427version = "0.52.6" 4428source = "registry+https://github.com/rust-lang/crates.io-index" 4429checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 4430 4431[[package]] 4432name = "windows_i686_gnullvm" 4433version = "0.53.1" 4434source = "registry+https://github.com/rust-lang/crates.io-index" 4435checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 4436 4437[[package]] 4438name = "windows_i686_msvc" 4439version = "0.48.5" 4440source = "registry+https://github.com/rust-lang/crates.io-index" 4441checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 4442 4443[[package]] 4444name = "windows_i686_msvc" 4445version = "0.52.6" 4446source = "registry+https://github.com/rust-lang/crates.io-index" 4447checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 4448 4449[[package]] 4450name = "windows_i686_msvc" 4451version = "0.53.1" 4452source = "registry+https://github.com/rust-lang/crates.io-index" 4453checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 4454 4455[[package]] 4456name = "windows_x86_64_gnu" 4457version = "0.48.5" 4458source = "registry+https://github.com/rust-lang/crates.io-index" 4459checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 4460 4461[[package]] 4462name = "windows_x86_64_gnu" 4463version = "0.52.6" 4464source = "registry+https://github.com/rust-lang/crates.io-index" 4465checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 4466 4467[[package]] 4468name = "windows_x86_64_gnu" 4469version = "0.53.1" 4470source = "registry+https://github.com/rust-lang/crates.io-index" 4471checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 4472 4473[[package]] 4474name = "windows_x86_64_gnullvm" 4475version = "0.48.5" 4476source = "registry+https://github.com/rust-lang/crates.io-index" 4477checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 4478 4479[[package]] 4480name = "windows_x86_64_gnullvm" 4481version = "0.52.6" 4482source = "registry+https://github.com/rust-lang/crates.io-index" 4483checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 4484 4485[[package]] 4486name = "windows_x86_64_gnullvm" 4487version = "0.53.1" 4488source = "registry+https://github.com/rust-lang/crates.io-index" 4489checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 4490 4491[[package]] 4492name = "windows_x86_64_msvc" 4493version = "0.48.5" 4494source = "registry+https://github.com/rust-lang/crates.io-index" 4495checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 4496 4497[[package]] 4498name = "windows_x86_64_msvc" 4499version = "0.52.6" 4500source = "registry+https://github.com/rust-lang/crates.io-index" 4501checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 4502 4503[[package]] 4504name = "windows_x86_64_msvc" 4505version = "0.53.1" 4506source = "registry+https://github.com/rust-lang/crates.io-index" 4507checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 4508 4509[[package]] 4510name = "winreg" 4511version = "0.50.0" 4512source = "registry+https://github.com/rust-lang/crates.io-index" 4513checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 4514dependencies = [ 4515 "cfg-if", 4516 "windows-sys 0.48.0", 4517] 4518 4519[[package]] 4520name = "wit-bindgen" 4521version = "0.51.0" 4522source = "registry+https://github.com/rust-lang/crates.io-index" 4523checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" 4524dependencies = [ 4525 "wit-bindgen-rust-macro", 4526] 4527 4528[[package]] 4529name = "wit-bindgen-core" 4530version = "0.51.0" 4531source = "registry+https://github.com/rust-lang/crates.io-index" 4532checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" 4533dependencies = [ 4534 "anyhow", 4535 "heck", 4536 "wit-parser", 4537] 4538 4539[[package]] 4540name = "wit-bindgen-rust" 4541version = "0.51.0" 4542source = "registry+https://github.com/rust-lang/crates.io-index" 4543checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" 4544dependencies = [ 4545 "anyhow", 4546 "heck", 4547 "indexmap", 4548 "prettyplease", 4549 "syn 2.0.116", 4550 "wasm-metadata", 4551 "wit-bindgen-core", 4552 "wit-component", 4553] 4554 4555[[package]] 4556name = "wit-bindgen-rust-macro" 4557version = "0.51.0" 4558source = "registry+https://github.com/rust-lang/crates.io-index" 4559checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" 4560dependencies = [ 4561 "anyhow", 4562 "prettyplease", 4563 "proc-macro2", 4564 "quote", 4565 "syn 2.0.116", 4566 "wit-bindgen-core", 4567 "wit-bindgen-rust", 4568] 4569 4570[[package]] 4571name = "wit-component" 4572version = "0.244.0" 4573source = "registry+https://github.com/rust-lang/crates.io-index" 4574checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" 4575dependencies = [ 4576 "anyhow", 4577 "bitflags", 4578 "indexmap", 4579 "log", 4580 "serde", 4581 "serde_derive", 4582 "serde_json", 4583 "wasm-encoder", 4584 "wasm-metadata", 4585 "wasmparser", 4586 "wit-parser", 4587] 4588 4589[[package]] 4590name = "wit-parser" 4591version = "0.244.0" 4592source = "registry+https://github.com/rust-lang/crates.io-index" 4593checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" 4594dependencies = [ 4595 "anyhow", 4596 "id-arena", 4597 "indexmap", 4598 "log", 4599 "semver", 4600 "serde", 4601 "serde_derive", 4602 "serde_json", 4603 "unicode-xid", 4604 "wasmparser", 4605] 4606 4607[[package]] 4608name = "writeable" 4609version = "0.6.2" 4610source = "registry+https://github.com/rust-lang/crates.io-index" 4611checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" 4612 4613[[package]] 4614name = "yoke" 4615version = "0.8.1" 4616source = "registry+https://github.com/rust-lang/crates.io-index" 4617checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" 4618dependencies = [ 4619 "stable_deref_trait", 4620 "yoke-derive", 4621 "zerofrom", 4622] 4623 4624[[package]] 4625name = "yoke-derive" 4626version = "0.8.1" 4627source = "registry+https://github.com/rust-lang/crates.io-index" 4628checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" 4629dependencies = [ 4630 "proc-macro2", 4631 "quote", 4632 "syn 2.0.116", 4633 "synstructure", 4634] 4635 4636[[package]] 4637name = "zerocopy" 4638version = "0.8.39" 4639source = "registry+https://github.com/rust-lang/crates.io-index" 4640checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a" 4641dependencies = [ 4642 "zerocopy-derive", 4643] 4644 4645[[package]] 4646name = "zerocopy-derive" 4647version = "0.8.39" 4648source = "registry+https://github.com/rust-lang/crates.io-index" 4649checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517" 4650dependencies = [ 4651 "proc-macro2", 4652 "quote", 4653 "syn 2.0.116", 4654] 4655 4656[[package]] 4657name = "zerofrom" 4658version = "0.1.6" 4659source = "registry+https://github.com/rust-lang/crates.io-index" 4660checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 4661dependencies = [ 4662 "zerofrom-derive", 4663] 4664 4665[[package]] 4666name = "zerofrom-derive" 4667version = "0.1.6" 4668source = "registry+https://github.com/rust-lang/crates.io-index" 4669checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 4670dependencies = [ 4671 "proc-macro2", 4672 "quote", 4673 "syn 2.0.116", 4674 "synstructure", 4675] 4676 4677[[package]] 4678name = "zeroize" 4679version = "1.8.2" 4680source = "registry+https://github.com/rust-lang/crates.io-index" 4681checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 4682 4683[[package]] 4684name = "zerotrie" 4685version = "0.2.3" 4686source = "registry+https://github.com/rust-lang/crates.io-index" 4687checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" 4688dependencies = [ 4689 "displaydoc", 4690 "yoke", 4691 "zerofrom", 4692] 4693 4694[[package]] 4695name = "zerovec" 4696version = "0.11.5" 4697source = "registry+https://github.com/rust-lang/crates.io-index" 4698checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" 4699dependencies = [ 4700 "yoke", 4701 "zerofrom", 4702 "zerovec-derive", 4703] 4704 4705[[package]] 4706name = "zerovec-derive" 4707version = "0.11.2" 4708source = "registry+https://github.com/rust-lang/crates.io-index" 4709checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" 4710dependencies = [ 4711 "proc-macro2", 4712 "quote", 4713 "syn 2.0.116", 4714] 4715 4716[[package]] 4717name = "zmij" 4718version = "1.0.21" 4719source = "registry+https://github.com/rust-lang/crates.io-index" 4720checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"