QuickDID is a high-performance AT Protocol identity resolution service written in Rust. It provides handle-to-DID resolution with Redis-backed caching and queue processing.
52
fork

Configure Feed

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

at 0d8891da2546df85567dc294e2b83d8bb1343c3a 3784 lines 93 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 = "addr2line" 7version = "0.24.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 10dependencies = [ 11 "gimli", 12] 13 14[[package]] 15name = "adler2" 16version = "2.0.1" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 19 20[[package]] 21name = "aho-corasick" 22version = "1.1.3" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 25dependencies = [ 26 "memchr", 27] 28 29[[package]] 30name = "allocator-api2" 31version = "0.2.21" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 34 35[[package]] 36name = "anyhow" 37version = "1.0.99" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100" 40 41[[package]] 42name = "arc-swap" 43version = "1.7.1" 44source = "registry+https://github.com/rust-lang/crates.io-index" 45checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 46 47[[package]] 48name = "async-trait" 49version = "0.1.89" 50source = "registry+https://github.com/rust-lang/crates.io-index" 51checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 52dependencies = [ 53 "proc-macro2", 54 "quote", 55 "syn", 56] 57 58[[package]] 59name = "atoi" 60version = "2.0.0" 61source = "registry+https://github.com/rust-lang/crates.io-index" 62checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" 63dependencies = [ 64 "num-traits", 65] 66 67[[package]] 68name = "atomic-waker" 69version = "1.1.2" 70source = "registry+https://github.com/rust-lang/crates.io-index" 71checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 72 73[[package]] 74name = "atproto-identity" 75version = "0.11.3" 76source = "registry+https://github.com/rust-lang/crates.io-index" 77checksum = "aaac8751c7e4329a95714c01d9e47d22d94bc8c96e78079098312235128acb9f" 78dependencies = [ 79 "anyhow", 80 "async-trait", 81 "ecdsa", 82 "elliptic-curve", 83 "hickory-resolver", 84 "k256", 85 "lru", 86 "multibase", 87 "p256", 88 "p384", 89 "rand 0.8.5", 90 "reqwest", 91 "serde", 92 "serde_ipld_dagcbor", 93 "serde_json", 94 "thiserror 2.0.16", 95 "tokio", 96 "tracing", 97] 98 99[[package]] 100name = "autocfg" 101version = "1.5.0" 102source = "registry+https://github.com/rust-lang/crates.io-index" 103checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 104 105[[package]] 106name = "axum" 107version = "0.8.4" 108source = "registry+https://github.com/rust-lang/crates.io-index" 109checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5" 110dependencies = [ 111 "axum-core", 112 "bytes", 113 "form_urlencoded", 114 "futures-util", 115 "http", 116 "http-body", 117 "http-body-util", 118 "hyper", 119 "hyper-util", 120 "itoa", 121 "matchit", 122 "memchr", 123 "mime", 124 "percent-encoding", 125 "pin-project-lite", 126 "rustversion", 127 "serde", 128 "serde_json", 129 "serde_path_to_error", 130 "serde_urlencoded", 131 "sync_wrapper", 132 "tokio", 133 "tower", 134 "tower-layer", 135 "tower-service", 136 "tracing", 137] 138 139[[package]] 140name = "axum-core" 141version = "0.5.2" 142source = "registry+https://github.com/rust-lang/crates.io-index" 143checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6" 144dependencies = [ 145 "bytes", 146 "futures-core", 147 "http", 148 "http-body", 149 "http-body-util", 150 "mime", 151 "pin-project-lite", 152 "rustversion", 153 "sync_wrapper", 154 "tower-layer", 155 "tower-service", 156 "tracing", 157] 158 159[[package]] 160name = "backon" 161version = "1.5.2" 162source = "registry+https://github.com/rust-lang/crates.io-index" 163checksum = "592277618714fbcecda9a02ba7a8781f319d26532a88553bbacc77ba5d2b3a8d" 164dependencies = [ 165 "fastrand", 166] 167 168[[package]] 169name = "backtrace" 170version = "0.3.75" 171source = "registry+https://github.com/rust-lang/crates.io-index" 172checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" 173dependencies = [ 174 "addr2line", 175 "cfg-if", 176 "libc", 177 "miniz_oxide", 178 "object", 179 "rustc-demangle", 180 "windows-targets 0.52.6", 181] 182 183[[package]] 184name = "base-x" 185version = "0.2.11" 186source = "registry+https://github.com/rust-lang/crates.io-index" 187checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 188 189[[package]] 190name = "base16ct" 191version = "0.2.0" 192source = "registry+https://github.com/rust-lang/crates.io-index" 193checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 194 195[[package]] 196name = "base64" 197version = "0.22.1" 198source = "registry+https://github.com/rust-lang/crates.io-index" 199checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 200 201[[package]] 202name = "base64ct" 203version = "1.8.0" 204source = "registry+https://github.com/rust-lang/crates.io-index" 205checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" 206 207[[package]] 208name = "bincode" 209version = "2.0.1" 210source = "registry+https://github.com/rust-lang/crates.io-index" 211checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740" 212dependencies = [ 213 "bincode_derive", 214 "serde", 215 "unty", 216] 217 218[[package]] 219name = "bincode_derive" 220version = "2.0.1" 221source = "registry+https://github.com/rust-lang/crates.io-index" 222checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09" 223dependencies = [ 224 "virtue", 225] 226 227[[package]] 228name = "bitflags" 229version = "2.9.4" 230source = "registry+https://github.com/rust-lang/crates.io-index" 231checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" 232dependencies = [ 233 "serde", 234] 235 236[[package]] 237name = "block-buffer" 238version = "0.10.4" 239source = "registry+https://github.com/rust-lang/crates.io-index" 240checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 241dependencies = [ 242 "generic-array", 243] 244 245[[package]] 246name = "bumpalo" 247version = "3.19.0" 248source = "registry+https://github.com/rust-lang/crates.io-index" 249checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 250 251[[package]] 252name = "byteorder" 253version = "1.5.0" 254source = "registry+https://github.com/rust-lang/crates.io-index" 255checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 256 257[[package]] 258name = "bytes" 259version = "1.10.1" 260source = "registry+https://github.com/rust-lang/crates.io-index" 261checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 262 263[[package]] 264name = "cadence" 265version = "1.6.0" 266source = "registry+https://github.com/rust-lang/crates.io-index" 267checksum = "3075f133bee430b7644c54fb629b9b4420346ffa275a45c81a6babe8b09b4f51" 268dependencies = [ 269 "crossbeam-channel", 270] 271 272[[package]] 273name = "cbor4ii" 274version = "0.2.14" 275source = "registry+https://github.com/rust-lang/crates.io-index" 276checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4" 277dependencies = [ 278 "serde", 279] 280 281[[package]] 282name = "cc" 283version = "1.2.36" 284source = "registry+https://github.com/rust-lang/crates.io-index" 285checksum = "5252b3d2648e5eedbc1a6f501e3c795e07025c1e93bbf8bbdd6eef7f447a6d54" 286dependencies = [ 287 "find-msvc-tools", 288 "shlex", 289] 290 291[[package]] 292name = "cfg-if" 293version = "1.0.3" 294source = "registry+https://github.com/rust-lang/crates.io-index" 295checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" 296 297[[package]] 298name = "cfg_aliases" 299version = "0.2.1" 300source = "registry+https://github.com/rust-lang/crates.io-index" 301checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 302 303[[package]] 304name = "cid" 305version = "0.11.1" 306source = "registry+https://github.com/rust-lang/crates.io-index" 307checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" 308dependencies = [ 309 "core2", 310 "multibase", 311 "multihash", 312 "serde", 313 "serde_bytes", 314 "unsigned-varint", 315] 316 317[[package]] 318name = "combine" 319version = "4.6.7" 320source = "registry+https://github.com/rust-lang/crates.io-index" 321checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 322dependencies = [ 323 "bytes", 324 "futures-core", 325 "memchr", 326 "pin-project-lite", 327 "tokio", 328 "tokio-util", 329] 330 331[[package]] 332name = "concurrent-queue" 333version = "2.5.0" 334source = "registry+https://github.com/rust-lang/crates.io-index" 335checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 336dependencies = [ 337 "crossbeam-utils", 338] 339 340[[package]] 341name = "const-oid" 342version = "0.9.6" 343source = "registry+https://github.com/rust-lang/crates.io-index" 344checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 345 346[[package]] 347name = "core-foundation" 348version = "0.9.4" 349source = "registry+https://github.com/rust-lang/crates.io-index" 350checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 351dependencies = [ 352 "core-foundation-sys", 353 "libc", 354] 355 356[[package]] 357name = "core-foundation" 358version = "0.10.1" 359source = "registry+https://github.com/rust-lang/crates.io-index" 360checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 361dependencies = [ 362 "core-foundation-sys", 363 "libc", 364] 365 366[[package]] 367name = "core-foundation-sys" 368version = "0.8.7" 369source = "registry+https://github.com/rust-lang/crates.io-index" 370checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 371 372[[package]] 373name = "core2" 374version = "0.4.0" 375source = "registry+https://github.com/rust-lang/crates.io-index" 376checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 377dependencies = [ 378 "memchr", 379] 380 381[[package]] 382name = "cpufeatures" 383version = "0.2.17" 384source = "registry+https://github.com/rust-lang/crates.io-index" 385checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 386dependencies = [ 387 "libc", 388] 389 390[[package]] 391name = "crc" 392version = "3.3.0" 393source = "registry+https://github.com/rust-lang/crates.io-index" 394checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" 395dependencies = [ 396 "crc-catalog", 397] 398 399[[package]] 400name = "crc-catalog" 401version = "2.4.0" 402source = "registry+https://github.com/rust-lang/crates.io-index" 403checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 404 405[[package]] 406name = "critical-section" 407version = "1.2.0" 408source = "registry+https://github.com/rust-lang/crates.io-index" 409checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" 410 411[[package]] 412name = "crossbeam-channel" 413version = "0.5.15" 414source = "registry+https://github.com/rust-lang/crates.io-index" 415checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 416dependencies = [ 417 "crossbeam-utils", 418] 419 420[[package]] 421name = "crossbeam-epoch" 422version = "0.9.18" 423source = "registry+https://github.com/rust-lang/crates.io-index" 424checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 425dependencies = [ 426 "crossbeam-utils", 427] 428 429[[package]] 430name = "crossbeam-queue" 431version = "0.3.12" 432source = "registry+https://github.com/rust-lang/crates.io-index" 433checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" 434dependencies = [ 435 "crossbeam-utils", 436] 437 438[[package]] 439name = "crossbeam-utils" 440version = "0.8.21" 441source = "registry+https://github.com/rust-lang/crates.io-index" 442checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 443 444[[package]] 445name = "crypto-bigint" 446version = "0.5.5" 447source = "registry+https://github.com/rust-lang/crates.io-index" 448checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 449dependencies = [ 450 "generic-array", 451 "rand_core 0.6.4", 452 "subtle", 453 "zeroize", 454] 455 456[[package]] 457name = "crypto-common" 458version = "0.1.6" 459source = "registry+https://github.com/rust-lang/crates.io-index" 460checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 461dependencies = [ 462 "generic-array", 463 "typenum", 464] 465 466[[package]] 467name = "data-encoding" 468version = "2.9.0" 469source = "registry+https://github.com/rust-lang/crates.io-index" 470checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 471 472[[package]] 473name = "data-encoding-macro" 474version = "0.1.18" 475source = "registry+https://github.com/rust-lang/crates.io-index" 476checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d" 477dependencies = [ 478 "data-encoding", 479 "data-encoding-macro-internal", 480] 481 482[[package]] 483name = "data-encoding-macro-internal" 484version = "0.1.16" 485source = "registry+https://github.com/rust-lang/crates.io-index" 486checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" 487dependencies = [ 488 "data-encoding", 489 "syn", 490] 491 492[[package]] 493name = "deadpool" 494version = "0.12.3" 495source = "registry+https://github.com/rust-lang/crates.io-index" 496checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b" 497dependencies = [ 498 "deadpool-runtime", 499 "lazy_static", 500 "num_cpus", 501 "tokio", 502] 503 504[[package]] 505name = "deadpool-redis" 506version = "0.22.0" 507source = "registry+https://github.com/rust-lang/crates.io-index" 508checksum = "c0965b977f1244bc3783bb27cd79cfcff335a8341da18f79232d00504b18eb1a" 509dependencies = [ 510 "deadpool", 511 "redis", 512] 513 514[[package]] 515name = "deadpool-runtime" 516version = "0.1.4" 517source = "registry+https://github.com/rust-lang/crates.io-index" 518checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b" 519dependencies = [ 520 "tokio", 521] 522 523[[package]] 524name = "der" 525version = "0.7.10" 526source = "registry+https://github.com/rust-lang/crates.io-index" 527checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 528dependencies = [ 529 "const-oid", 530 "pem-rfc7468", 531 "zeroize", 532] 533 534[[package]] 535name = "digest" 536version = "0.10.7" 537source = "registry+https://github.com/rust-lang/crates.io-index" 538checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 539dependencies = [ 540 "block-buffer", 541 "const-oid", 542 "crypto-common", 543 "subtle", 544] 545 546[[package]] 547name = "displaydoc" 548version = "0.2.5" 549source = "registry+https://github.com/rust-lang/crates.io-index" 550checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 551dependencies = [ 552 "proc-macro2", 553 "quote", 554 "syn", 555] 556 557[[package]] 558name = "dotenvy" 559version = "0.15.7" 560source = "registry+https://github.com/rust-lang/crates.io-index" 561checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 562 563[[package]] 564name = "ecdsa" 565version = "0.16.9" 566source = "registry+https://github.com/rust-lang/crates.io-index" 567checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 568dependencies = [ 569 "der", 570 "digest", 571 "elliptic-curve", 572 "rfc6979", 573 "signature", 574 "spki", 575] 576 577[[package]] 578name = "either" 579version = "1.15.0" 580source = "registry+https://github.com/rust-lang/crates.io-index" 581checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 582dependencies = [ 583 "serde", 584] 585 586[[package]] 587name = "elliptic-curve" 588version = "0.13.8" 589source = "registry+https://github.com/rust-lang/crates.io-index" 590checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 591dependencies = [ 592 "base16ct", 593 "base64ct", 594 "crypto-bigint", 595 "digest", 596 "ff", 597 "generic-array", 598 "group", 599 "hkdf", 600 "pem-rfc7468", 601 "pkcs8", 602 "rand_core 0.6.4", 603 "sec1", 604 "serde_json", 605 "serdect", 606 "subtle", 607 "zeroize", 608] 609 610[[package]] 611name = "encoding_rs" 612version = "0.8.35" 613source = "registry+https://github.com/rust-lang/crates.io-index" 614checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 615dependencies = [ 616 "cfg-if", 617] 618 619[[package]] 620name = "enum-as-inner" 621version = "0.6.1" 622source = "registry+https://github.com/rust-lang/crates.io-index" 623checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" 624dependencies = [ 625 "heck", 626 "proc-macro2", 627 "quote", 628 "syn", 629] 630 631[[package]] 632name = "equivalent" 633version = "1.0.2" 634source = "registry+https://github.com/rust-lang/crates.io-index" 635checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 636 637[[package]] 638name = "errno" 639version = "0.3.13" 640source = "registry+https://github.com/rust-lang/crates.io-index" 641checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad" 642dependencies = [ 643 "libc", 644 "windows-sys 0.60.2", 645] 646 647[[package]] 648name = "etcetera" 649version = "0.8.0" 650source = "registry+https://github.com/rust-lang/crates.io-index" 651checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" 652dependencies = [ 653 "cfg-if", 654 "home", 655 "windows-sys 0.48.0", 656] 657 658[[package]] 659name = "event-listener" 660version = "5.4.1" 661source = "registry+https://github.com/rust-lang/crates.io-index" 662checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 663dependencies = [ 664 "concurrent-queue", 665 "parking", 666 "pin-project-lite", 667] 668 669[[package]] 670name = "fastrand" 671version = "2.3.0" 672source = "registry+https://github.com/rust-lang/crates.io-index" 673checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 674 675[[package]] 676name = "ff" 677version = "0.13.1" 678source = "registry+https://github.com/rust-lang/crates.io-index" 679checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" 680dependencies = [ 681 "rand_core 0.6.4", 682 "subtle", 683] 684 685[[package]] 686name = "find-msvc-tools" 687version = "0.1.1" 688source = "registry+https://github.com/rust-lang/crates.io-index" 689checksum = "7fd99930f64d146689264c637b5af2f0233a933bef0d8570e2526bf9e083192d" 690 691[[package]] 692name = "flume" 693version = "0.11.1" 694source = "registry+https://github.com/rust-lang/crates.io-index" 695checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" 696dependencies = [ 697 "futures-core", 698 "futures-sink", 699 "spin", 700] 701 702[[package]] 703name = "fnv" 704version = "1.0.7" 705source = "registry+https://github.com/rust-lang/crates.io-index" 706checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 707 708[[package]] 709name = "foldhash" 710version = "0.1.5" 711source = "registry+https://github.com/rust-lang/crates.io-index" 712checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 713 714[[package]] 715name = "foreign-types" 716version = "0.3.2" 717source = "registry+https://github.com/rust-lang/crates.io-index" 718checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 719dependencies = [ 720 "foreign-types-shared", 721] 722 723[[package]] 724name = "foreign-types-shared" 725version = "0.1.1" 726source = "registry+https://github.com/rust-lang/crates.io-index" 727checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 728 729[[package]] 730name = "form_urlencoded" 731version = "1.2.2" 732source = "registry+https://github.com/rust-lang/crates.io-index" 733checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 734dependencies = [ 735 "percent-encoding", 736] 737 738[[package]] 739name = "futures-channel" 740version = "0.3.31" 741source = "registry+https://github.com/rust-lang/crates.io-index" 742checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 743dependencies = [ 744 "futures-core", 745 "futures-sink", 746] 747 748[[package]] 749name = "futures-core" 750version = "0.3.31" 751source = "registry+https://github.com/rust-lang/crates.io-index" 752checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 753 754[[package]] 755name = "futures-executor" 756version = "0.3.31" 757source = "registry+https://github.com/rust-lang/crates.io-index" 758checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 759dependencies = [ 760 "futures-core", 761 "futures-task", 762 "futures-util", 763] 764 765[[package]] 766name = "futures-intrusive" 767version = "0.5.0" 768source = "registry+https://github.com/rust-lang/crates.io-index" 769checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" 770dependencies = [ 771 "futures-core", 772 "lock_api", 773 "parking_lot", 774] 775 776[[package]] 777name = "futures-io" 778version = "0.3.31" 779source = "registry+https://github.com/rust-lang/crates.io-index" 780checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 781 782[[package]] 783name = "futures-macro" 784version = "0.3.31" 785source = "registry+https://github.com/rust-lang/crates.io-index" 786checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 787dependencies = [ 788 "proc-macro2", 789 "quote", 790 "syn", 791] 792 793[[package]] 794name = "futures-sink" 795version = "0.3.31" 796source = "registry+https://github.com/rust-lang/crates.io-index" 797checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 798 799[[package]] 800name = "futures-task" 801version = "0.3.31" 802source = "registry+https://github.com/rust-lang/crates.io-index" 803checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 804 805[[package]] 806name = "futures-util" 807version = "0.3.31" 808source = "registry+https://github.com/rust-lang/crates.io-index" 809checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 810dependencies = [ 811 "futures-core", 812 "futures-io", 813 "futures-macro", 814 "futures-sink", 815 "futures-task", 816 "memchr", 817 "pin-project-lite", 818 "pin-utils", 819 "slab", 820] 821 822[[package]] 823name = "generator" 824version = "0.8.7" 825source = "registry+https://github.com/rust-lang/crates.io-index" 826checksum = "605183a538e3e2a9c1038635cc5c2d194e2ee8fd0d1b66b8349fad7dbacce5a2" 827dependencies = [ 828 "cc", 829 "cfg-if", 830 "libc", 831 "log", 832 "rustversion", 833 "windows", 834] 835 836[[package]] 837name = "generic-array" 838version = "0.14.7" 839source = "registry+https://github.com/rust-lang/crates.io-index" 840checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 841dependencies = [ 842 "typenum", 843 "version_check", 844 "zeroize", 845] 846 847[[package]] 848name = "getrandom" 849version = "0.2.16" 850source = "registry+https://github.com/rust-lang/crates.io-index" 851checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 852dependencies = [ 853 "cfg-if", 854 "js-sys", 855 "libc", 856 "wasi 0.11.1+wasi-snapshot-preview1", 857 "wasm-bindgen", 858] 859 860[[package]] 861name = "getrandom" 862version = "0.3.3" 863source = "registry+https://github.com/rust-lang/crates.io-index" 864checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 865dependencies = [ 866 "cfg-if", 867 "js-sys", 868 "libc", 869 "r-efi", 870 "wasi 0.14.3+wasi-0.2.4", 871 "wasm-bindgen", 872] 873 874[[package]] 875name = "gimli" 876version = "0.31.1" 877source = "registry+https://github.com/rust-lang/crates.io-index" 878checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 879 880[[package]] 881name = "group" 882version = "0.13.0" 883source = "registry+https://github.com/rust-lang/crates.io-index" 884checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 885dependencies = [ 886 "ff", 887 "rand_core 0.6.4", 888 "subtle", 889] 890 891[[package]] 892name = "h2" 893version = "0.4.12" 894source = "registry+https://github.com/rust-lang/crates.io-index" 895checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" 896dependencies = [ 897 "atomic-waker", 898 "bytes", 899 "fnv", 900 "futures-core", 901 "futures-sink", 902 "http", 903 "indexmap", 904 "slab", 905 "tokio", 906 "tokio-util", 907 "tracing", 908] 909 910[[package]] 911name = "hashbrown" 912version = "0.15.5" 913source = "registry+https://github.com/rust-lang/crates.io-index" 914checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 915dependencies = [ 916 "allocator-api2", 917 "equivalent", 918 "foldhash", 919] 920 921[[package]] 922name = "hashlink" 923version = "0.10.0" 924source = "registry+https://github.com/rust-lang/crates.io-index" 925checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1" 926dependencies = [ 927 "hashbrown", 928] 929 930[[package]] 931name = "heck" 932version = "0.5.0" 933source = "registry+https://github.com/rust-lang/crates.io-index" 934checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 935 936[[package]] 937name = "hermit-abi" 938version = "0.5.2" 939source = "registry+https://github.com/rust-lang/crates.io-index" 940checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 941 942[[package]] 943name = "hex" 944version = "0.4.3" 945source = "registry+https://github.com/rust-lang/crates.io-index" 946checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 947 948[[package]] 949name = "hickory-proto" 950version = "0.25.2" 951source = "registry+https://github.com/rust-lang/crates.io-index" 952checksum = "f8a6fe56c0038198998a6f217ca4e7ef3a5e51f46163bd6dd60b5c71ca6c6502" 953dependencies = [ 954 "async-trait", 955 "cfg-if", 956 "data-encoding", 957 "enum-as-inner", 958 "futures-channel", 959 "futures-io", 960 "futures-util", 961 "idna", 962 "ipnet", 963 "once_cell", 964 "rand 0.9.2", 965 "ring", 966 "thiserror 2.0.16", 967 "tinyvec", 968 "tokio", 969 "tracing", 970 "url", 971] 972 973[[package]] 974name = "hickory-resolver" 975version = "0.25.2" 976source = "registry+https://github.com/rust-lang/crates.io-index" 977checksum = "dc62a9a99b0bfb44d2ab95a7208ac952d31060efc16241c87eaf36406fecf87a" 978dependencies = [ 979 "cfg-if", 980 "futures-util", 981 "hickory-proto", 982 "ipconfig", 983 "moka", 984 "once_cell", 985 "parking_lot", 986 "rand 0.9.2", 987 "resolv-conf", 988 "smallvec", 989 "thiserror 2.0.16", 990 "tokio", 991 "tracing", 992] 993 994[[package]] 995name = "hkdf" 996version = "0.12.4" 997source = "registry+https://github.com/rust-lang/crates.io-index" 998checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 999dependencies = [ 1000 "hmac", 1001] 1002 1003[[package]] 1004name = "hmac" 1005version = "0.12.1" 1006source = "registry+https://github.com/rust-lang/crates.io-index" 1007checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1008dependencies = [ 1009 "digest", 1010] 1011 1012[[package]] 1013name = "home" 1014version = "0.5.11" 1015source = "registry+https://github.com/rust-lang/crates.io-index" 1016checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" 1017dependencies = [ 1018 "windows-sys 0.59.0", 1019] 1020 1021[[package]] 1022name = "http" 1023version = "1.3.1" 1024source = "registry+https://github.com/rust-lang/crates.io-index" 1025checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" 1026dependencies = [ 1027 "bytes", 1028 "fnv", 1029 "itoa", 1030] 1031 1032[[package]] 1033name = "http-body" 1034version = "1.0.1" 1035source = "registry+https://github.com/rust-lang/crates.io-index" 1036checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1037dependencies = [ 1038 "bytes", 1039 "http", 1040] 1041 1042[[package]] 1043name = "http-body-util" 1044version = "0.1.3" 1045source = "registry+https://github.com/rust-lang/crates.io-index" 1046checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 1047dependencies = [ 1048 "bytes", 1049 "futures-core", 1050 "http", 1051 "http-body", 1052 "pin-project-lite", 1053] 1054 1055[[package]] 1056name = "httparse" 1057version = "1.10.1" 1058source = "registry+https://github.com/rust-lang/crates.io-index" 1059checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1060 1061[[package]] 1062name = "httpdate" 1063version = "1.0.3" 1064source = "registry+https://github.com/rust-lang/crates.io-index" 1065checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1066 1067[[package]] 1068name = "hyper" 1069version = "1.7.0" 1070source = "registry+https://github.com/rust-lang/crates.io-index" 1071checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" 1072dependencies = [ 1073 "atomic-waker", 1074 "bytes", 1075 "futures-channel", 1076 "futures-core", 1077 "h2", 1078 "http", 1079 "http-body", 1080 "httparse", 1081 "httpdate", 1082 "itoa", 1083 "pin-project-lite", 1084 "pin-utils", 1085 "smallvec", 1086 "tokio", 1087 "want", 1088] 1089 1090[[package]] 1091name = "hyper-rustls" 1092version = "0.27.7" 1093source = "registry+https://github.com/rust-lang/crates.io-index" 1094checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 1095dependencies = [ 1096 "http", 1097 "hyper", 1098 "hyper-util", 1099 "rustls", 1100 "rustls-pki-types", 1101 "tokio", 1102 "tokio-rustls", 1103 "tower-service", 1104 "webpki-roots", 1105] 1106 1107[[package]] 1108name = "hyper-tls" 1109version = "0.6.0" 1110source = "registry+https://github.com/rust-lang/crates.io-index" 1111checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 1112dependencies = [ 1113 "bytes", 1114 "http-body-util", 1115 "hyper", 1116 "hyper-util", 1117 "native-tls", 1118 "tokio", 1119 "tokio-native-tls", 1120 "tower-service", 1121] 1122 1123[[package]] 1124name = "hyper-util" 1125version = "0.1.16" 1126source = "registry+https://github.com/rust-lang/crates.io-index" 1127checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e" 1128dependencies = [ 1129 "base64", 1130 "bytes", 1131 "futures-channel", 1132 "futures-core", 1133 "futures-util", 1134 "http", 1135 "http-body", 1136 "hyper", 1137 "ipnet", 1138 "libc", 1139 "percent-encoding", 1140 "pin-project-lite", 1141 "socket2 0.6.0", 1142 "system-configuration", 1143 "tokio", 1144 "tower-service", 1145 "tracing", 1146 "windows-registry", 1147] 1148 1149[[package]] 1150name = "icu_collections" 1151version = "2.0.0" 1152source = "registry+https://github.com/rust-lang/crates.io-index" 1153checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" 1154dependencies = [ 1155 "displaydoc", 1156 "potential_utf", 1157 "yoke", 1158 "zerofrom", 1159 "zerovec", 1160] 1161 1162[[package]] 1163name = "icu_locale_core" 1164version = "2.0.0" 1165source = "registry+https://github.com/rust-lang/crates.io-index" 1166checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" 1167dependencies = [ 1168 "displaydoc", 1169 "litemap", 1170 "tinystr", 1171 "writeable", 1172 "zerovec", 1173] 1174 1175[[package]] 1176name = "icu_normalizer" 1177version = "2.0.0" 1178source = "registry+https://github.com/rust-lang/crates.io-index" 1179checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" 1180dependencies = [ 1181 "displaydoc", 1182 "icu_collections", 1183 "icu_normalizer_data", 1184 "icu_properties", 1185 "icu_provider", 1186 "smallvec", 1187 "zerovec", 1188] 1189 1190[[package]] 1191name = "icu_normalizer_data" 1192version = "2.0.0" 1193source = "registry+https://github.com/rust-lang/crates.io-index" 1194checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" 1195 1196[[package]] 1197name = "icu_properties" 1198version = "2.0.1" 1199source = "registry+https://github.com/rust-lang/crates.io-index" 1200checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" 1201dependencies = [ 1202 "displaydoc", 1203 "icu_collections", 1204 "icu_locale_core", 1205 "icu_properties_data", 1206 "icu_provider", 1207 "potential_utf", 1208 "zerotrie", 1209 "zerovec", 1210] 1211 1212[[package]] 1213name = "icu_properties_data" 1214version = "2.0.1" 1215source = "registry+https://github.com/rust-lang/crates.io-index" 1216checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" 1217 1218[[package]] 1219name = "icu_provider" 1220version = "2.0.0" 1221source = "registry+https://github.com/rust-lang/crates.io-index" 1222checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" 1223dependencies = [ 1224 "displaydoc", 1225 "icu_locale_core", 1226 "stable_deref_trait", 1227 "tinystr", 1228 "writeable", 1229 "yoke", 1230 "zerofrom", 1231 "zerotrie", 1232 "zerovec", 1233] 1234 1235[[package]] 1236name = "idna" 1237version = "1.1.0" 1238source = "registry+https://github.com/rust-lang/crates.io-index" 1239checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 1240dependencies = [ 1241 "idna_adapter", 1242 "smallvec", 1243 "utf8_iter", 1244] 1245 1246[[package]] 1247name = "idna_adapter" 1248version = "1.2.1" 1249source = "registry+https://github.com/rust-lang/crates.io-index" 1250checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 1251dependencies = [ 1252 "icu_normalizer", 1253 "icu_properties", 1254] 1255 1256[[package]] 1257name = "indexmap" 1258version = "2.11.0" 1259source = "registry+https://github.com/rust-lang/crates.io-index" 1260checksum = "f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9" 1261dependencies = [ 1262 "equivalent", 1263 "hashbrown", 1264] 1265 1266[[package]] 1267name = "io-uring" 1268version = "0.7.10" 1269source = "registry+https://github.com/rust-lang/crates.io-index" 1270checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b" 1271dependencies = [ 1272 "bitflags", 1273 "cfg-if", 1274 "libc", 1275] 1276 1277[[package]] 1278name = "ipconfig" 1279version = "0.3.2" 1280source = "registry+https://github.com/rust-lang/crates.io-index" 1281checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 1282dependencies = [ 1283 "socket2 0.5.10", 1284 "widestring", 1285 "windows-sys 0.48.0", 1286 "winreg", 1287] 1288 1289[[package]] 1290name = "ipld-core" 1291version = "0.4.2" 1292source = "registry+https://github.com/rust-lang/crates.io-index" 1293checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db" 1294dependencies = [ 1295 "cid", 1296 "serde", 1297 "serde_bytes", 1298] 1299 1300[[package]] 1301name = "ipnet" 1302version = "2.11.0" 1303source = "registry+https://github.com/rust-lang/crates.io-index" 1304checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 1305 1306[[package]] 1307name = "iri-string" 1308version = "0.7.8" 1309source = "registry+https://github.com/rust-lang/crates.io-index" 1310checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" 1311dependencies = [ 1312 "memchr", 1313 "serde", 1314] 1315 1316[[package]] 1317name = "itoa" 1318version = "1.0.15" 1319source = "registry+https://github.com/rust-lang/crates.io-index" 1320checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 1321 1322[[package]] 1323name = "js-sys" 1324version = "0.3.78" 1325source = "registry+https://github.com/rust-lang/crates.io-index" 1326checksum = "0c0b063578492ceec17683ef2f8c5e89121fbd0b172cbc280635ab7567db2738" 1327dependencies = [ 1328 "once_cell", 1329 "wasm-bindgen", 1330] 1331 1332[[package]] 1333name = "k256" 1334version = "0.13.4" 1335source = "registry+https://github.com/rust-lang/crates.io-index" 1336checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" 1337dependencies = [ 1338 "cfg-if", 1339 "ecdsa", 1340 "elliptic-curve", 1341 "once_cell", 1342 "sha2", 1343 "signature", 1344] 1345 1346[[package]] 1347name = "lazy_static" 1348version = "1.5.0" 1349source = "registry+https://github.com/rust-lang/crates.io-index" 1350checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1351dependencies = [ 1352 "spin", 1353] 1354 1355[[package]] 1356name = "libc" 1357version = "0.2.175" 1358source = "registry+https://github.com/rust-lang/crates.io-index" 1359checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543" 1360 1361[[package]] 1362name = "libm" 1363version = "0.2.15" 1364source = "registry+https://github.com/rust-lang/crates.io-index" 1365checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" 1366 1367[[package]] 1368name = "libredox" 1369version = "0.1.9" 1370source = "registry+https://github.com/rust-lang/crates.io-index" 1371checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3" 1372dependencies = [ 1373 "bitflags", 1374 "libc", 1375 "redox_syscall", 1376] 1377 1378[[package]] 1379name = "libsqlite3-sys" 1380version = "0.30.1" 1381source = "registry+https://github.com/rust-lang/crates.io-index" 1382checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" 1383dependencies = [ 1384 "cc", 1385 "pkg-config", 1386 "vcpkg", 1387] 1388 1389[[package]] 1390name = "linux-raw-sys" 1391version = "0.9.4" 1392source = "registry+https://github.com/rust-lang/crates.io-index" 1393checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" 1394 1395[[package]] 1396name = "litemap" 1397version = "0.8.0" 1398source = "registry+https://github.com/rust-lang/crates.io-index" 1399checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" 1400 1401[[package]] 1402name = "lock_api" 1403version = "0.4.13" 1404source = "registry+https://github.com/rust-lang/crates.io-index" 1405checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" 1406dependencies = [ 1407 "autocfg", 1408 "scopeguard", 1409] 1410 1411[[package]] 1412name = "log" 1413version = "0.4.28" 1414source = "registry+https://github.com/rust-lang/crates.io-index" 1415checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" 1416 1417[[package]] 1418name = "loom" 1419version = "0.7.2" 1420source = "registry+https://github.com/rust-lang/crates.io-index" 1421checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" 1422dependencies = [ 1423 "cfg-if", 1424 "generator", 1425 "scoped-tls", 1426 "tracing", 1427 "tracing-subscriber", 1428] 1429 1430[[package]] 1431name = "lru" 1432version = "0.12.5" 1433source = "registry+https://github.com/rust-lang/crates.io-index" 1434checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" 1435dependencies = [ 1436 "hashbrown", 1437] 1438 1439[[package]] 1440name = "lru-slab" 1441version = "0.1.2" 1442source = "registry+https://github.com/rust-lang/crates.io-index" 1443checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 1444 1445[[package]] 1446name = "matchers" 1447version = "0.2.0" 1448source = "registry+https://github.com/rust-lang/crates.io-index" 1449checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 1450dependencies = [ 1451 "regex-automata", 1452] 1453 1454[[package]] 1455name = "matchit" 1456version = "0.8.4" 1457source = "registry+https://github.com/rust-lang/crates.io-index" 1458checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 1459 1460[[package]] 1461name = "md-5" 1462version = "0.10.6" 1463source = "registry+https://github.com/rust-lang/crates.io-index" 1464checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 1465dependencies = [ 1466 "cfg-if", 1467 "digest", 1468] 1469 1470[[package]] 1471name = "memchr" 1472version = "2.7.5" 1473source = "registry+https://github.com/rust-lang/crates.io-index" 1474checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" 1475 1476[[package]] 1477name = "metrohash" 1478version = "1.0.7" 1479source = "registry+https://github.com/rust-lang/crates.io-index" 1480checksum = "a84011bfadc339f60fbcc38181da8a0a91cd16375394dd52edf9da80deacd8c5" 1481 1482[[package]] 1483name = "mime" 1484version = "0.3.17" 1485source = "registry+https://github.com/rust-lang/crates.io-index" 1486checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1487 1488[[package]] 1489name = "miniz_oxide" 1490version = "0.8.9" 1491source = "registry+https://github.com/rust-lang/crates.io-index" 1492checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 1493dependencies = [ 1494 "adler2", 1495] 1496 1497[[package]] 1498name = "mio" 1499version = "1.0.4" 1500source = "registry+https://github.com/rust-lang/crates.io-index" 1501checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" 1502dependencies = [ 1503 "libc", 1504 "wasi 0.11.1+wasi-snapshot-preview1", 1505 "windows-sys 0.59.0", 1506] 1507 1508[[package]] 1509name = "moka" 1510version = "0.12.10" 1511source = "registry+https://github.com/rust-lang/crates.io-index" 1512checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" 1513dependencies = [ 1514 "crossbeam-channel", 1515 "crossbeam-epoch", 1516 "crossbeam-utils", 1517 "loom", 1518 "parking_lot", 1519 "portable-atomic", 1520 "rustc_version", 1521 "smallvec", 1522 "tagptr", 1523 "thiserror 1.0.69", 1524 "uuid", 1525] 1526 1527[[package]] 1528name = "multibase" 1529version = "0.9.1" 1530source = "registry+https://github.com/rust-lang/crates.io-index" 1531checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404" 1532dependencies = [ 1533 "base-x", 1534 "data-encoding", 1535 "data-encoding-macro", 1536] 1537 1538[[package]] 1539name = "multihash" 1540version = "0.19.3" 1541source = "registry+https://github.com/rust-lang/crates.io-index" 1542checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" 1543dependencies = [ 1544 "core2", 1545 "serde", 1546 "unsigned-varint", 1547] 1548 1549[[package]] 1550name = "native-tls" 1551version = "0.2.14" 1552source = "registry+https://github.com/rust-lang/crates.io-index" 1553checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" 1554dependencies = [ 1555 "libc", 1556 "log", 1557 "openssl", 1558 "openssl-probe", 1559 "openssl-sys", 1560 "schannel", 1561 "security-framework 2.11.1", 1562 "security-framework-sys", 1563 "tempfile", 1564] 1565 1566[[package]] 1567name = "nu-ansi-term" 1568version = "0.50.1" 1569source = "registry+https://github.com/rust-lang/crates.io-index" 1570checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399" 1571dependencies = [ 1572 "windows-sys 0.52.0", 1573] 1574 1575[[package]] 1576name = "num-bigint" 1577version = "0.4.6" 1578source = "registry+https://github.com/rust-lang/crates.io-index" 1579checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 1580dependencies = [ 1581 "num-integer", 1582 "num-traits", 1583] 1584 1585[[package]] 1586name = "num-bigint-dig" 1587version = "0.8.4" 1588source = "registry+https://github.com/rust-lang/crates.io-index" 1589checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" 1590dependencies = [ 1591 "byteorder", 1592 "lazy_static", 1593 "libm", 1594 "num-integer", 1595 "num-iter", 1596 "num-traits", 1597 "rand 0.8.5", 1598 "smallvec", 1599 "zeroize", 1600] 1601 1602[[package]] 1603name = "num-integer" 1604version = "0.1.46" 1605source = "registry+https://github.com/rust-lang/crates.io-index" 1606checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 1607dependencies = [ 1608 "num-traits", 1609] 1610 1611[[package]] 1612name = "num-iter" 1613version = "0.1.45" 1614source = "registry+https://github.com/rust-lang/crates.io-index" 1615checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 1616dependencies = [ 1617 "autocfg", 1618 "num-integer", 1619 "num-traits", 1620] 1621 1622[[package]] 1623name = "num-traits" 1624version = "0.2.19" 1625source = "registry+https://github.com/rust-lang/crates.io-index" 1626checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1627dependencies = [ 1628 "autocfg", 1629 "libm", 1630] 1631 1632[[package]] 1633name = "num_cpus" 1634version = "1.17.0" 1635source = "registry+https://github.com/rust-lang/crates.io-index" 1636checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" 1637dependencies = [ 1638 "hermit-abi", 1639 "libc", 1640] 1641 1642[[package]] 1643name = "object" 1644version = "0.36.7" 1645source = "registry+https://github.com/rust-lang/crates.io-index" 1646checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" 1647dependencies = [ 1648 "memchr", 1649] 1650 1651[[package]] 1652name = "once_cell" 1653version = "1.21.3" 1654source = "registry+https://github.com/rust-lang/crates.io-index" 1655checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 1656dependencies = [ 1657 "critical-section", 1658 "portable-atomic", 1659] 1660 1661[[package]] 1662name = "openssl" 1663version = "0.10.73" 1664source = "registry+https://github.com/rust-lang/crates.io-index" 1665checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8" 1666dependencies = [ 1667 "bitflags", 1668 "cfg-if", 1669 "foreign-types", 1670 "libc", 1671 "once_cell", 1672 "openssl-macros", 1673 "openssl-sys", 1674] 1675 1676[[package]] 1677name = "openssl-macros" 1678version = "0.1.1" 1679source = "registry+https://github.com/rust-lang/crates.io-index" 1680checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 1681dependencies = [ 1682 "proc-macro2", 1683 "quote", 1684 "syn", 1685] 1686 1687[[package]] 1688name = "openssl-probe" 1689version = "0.1.6" 1690source = "registry+https://github.com/rust-lang/crates.io-index" 1691checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" 1692 1693[[package]] 1694name = "openssl-sys" 1695version = "0.9.109" 1696source = "registry+https://github.com/rust-lang/crates.io-index" 1697checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571" 1698dependencies = [ 1699 "cc", 1700 "libc", 1701 "pkg-config", 1702 "vcpkg", 1703] 1704 1705[[package]] 1706name = "p256" 1707version = "0.13.2" 1708source = "registry+https://github.com/rust-lang/crates.io-index" 1709checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 1710dependencies = [ 1711 "ecdsa", 1712 "elliptic-curve", 1713 "primeorder", 1714 "sha2", 1715] 1716 1717[[package]] 1718name = "p384" 1719version = "0.13.1" 1720source = "registry+https://github.com/rust-lang/crates.io-index" 1721checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" 1722dependencies = [ 1723 "ecdsa", 1724 "elliptic-curve", 1725 "primeorder", 1726 "sha2", 1727] 1728 1729[[package]] 1730name = "parking" 1731version = "2.2.1" 1732source = "registry+https://github.com/rust-lang/crates.io-index" 1733checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 1734 1735[[package]] 1736name = "parking_lot" 1737version = "0.12.4" 1738source = "registry+https://github.com/rust-lang/crates.io-index" 1739checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" 1740dependencies = [ 1741 "lock_api", 1742 "parking_lot_core", 1743] 1744 1745[[package]] 1746name = "parking_lot_core" 1747version = "0.9.11" 1748source = "registry+https://github.com/rust-lang/crates.io-index" 1749checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" 1750dependencies = [ 1751 "cfg-if", 1752 "libc", 1753 "redox_syscall", 1754 "smallvec", 1755 "windows-targets 0.52.6", 1756] 1757 1758[[package]] 1759name = "pem-rfc7468" 1760version = "0.7.0" 1761source = "registry+https://github.com/rust-lang/crates.io-index" 1762checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 1763dependencies = [ 1764 "base64ct", 1765] 1766 1767[[package]] 1768name = "percent-encoding" 1769version = "2.3.2" 1770source = "registry+https://github.com/rust-lang/crates.io-index" 1771checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 1772 1773[[package]] 1774name = "pin-project-lite" 1775version = "0.2.16" 1776source = "registry+https://github.com/rust-lang/crates.io-index" 1777checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 1778 1779[[package]] 1780name = "pin-utils" 1781version = "0.1.0" 1782source = "registry+https://github.com/rust-lang/crates.io-index" 1783checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1784 1785[[package]] 1786name = "pkcs1" 1787version = "0.7.5" 1788source = "registry+https://github.com/rust-lang/crates.io-index" 1789checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 1790dependencies = [ 1791 "der", 1792 "pkcs8", 1793 "spki", 1794] 1795 1796[[package]] 1797name = "pkcs8" 1798version = "0.10.2" 1799source = "registry+https://github.com/rust-lang/crates.io-index" 1800checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 1801dependencies = [ 1802 "der", 1803 "spki", 1804] 1805 1806[[package]] 1807name = "pkg-config" 1808version = "0.3.32" 1809source = "registry+https://github.com/rust-lang/crates.io-index" 1810checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 1811 1812[[package]] 1813name = "portable-atomic" 1814version = "1.11.1" 1815source = "registry+https://github.com/rust-lang/crates.io-index" 1816checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" 1817 1818[[package]] 1819name = "potential_utf" 1820version = "0.1.3" 1821source = "registry+https://github.com/rust-lang/crates.io-index" 1822checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a" 1823dependencies = [ 1824 "zerovec", 1825] 1826 1827[[package]] 1828name = "ppv-lite86" 1829version = "0.2.21" 1830source = "registry+https://github.com/rust-lang/crates.io-index" 1831checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 1832dependencies = [ 1833 "zerocopy", 1834] 1835 1836[[package]] 1837name = "primeorder" 1838version = "0.13.6" 1839source = "registry+https://github.com/rust-lang/crates.io-index" 1840checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 1841dependencies = [ 1842 "elliptic-curve", 1843] 1844 1845[[package]] 1846name = "proc-macro2" 1847version = "1.0.101" 1848source = "registry+https://github.com/rust-lang/crates.io-index" 1849checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" 1850dependencies = [ 1851 "unicode-ident", 1852] 1853 1854[[package]] 1855name = "quickdid" 1856version = "1.0.0-rc.3" 1857dependencies = [ 1858 "anyhow", 1859 "async-trait", 1860 "atproto-identity", 1861 "axum", 1862 "bincode", 1863 "cadence", 1864 "deadpool-redis", 1865 "httpdate", 1866 "metrohash", 1867 "reqwest", 1868 "serde", 1869 "serde_json", 1870 "sqlx", 1871 "thiserror 2.0.16", 1872 "tokio", 1873 "tokio-util", 1874 "tracing", 1875 "tracing-subscriber", 1876] 1877 1878[[package]] 1879name = "quinn" 1880version = "0.11.9" 1881source = "registry+https://github.com/rust-lang/crates.io-index" 1882checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 1883dependencies = [ 1884 "bytes", 1885 "cfg_aliases", 1886 "pin-project-lite", 1887 "quinn-proto", 1888 "quinn-udp", 1889 "rustc-hash", 1890 "rustls", 1891 "socket2 0.6.0", 1892 "thiserror 2.0.16", 1893 "tokio", 1894 "tracing", 1895 "web-time", 1896] 1897 1898[[package]] 1899name = "quinn-proto" 1900version = "0.11.13" 1901source = "registry+https://github.com/rust-lang/crates.io-index" 1902checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" 1903dependencies = [ 1904 "bytes", 1905 "getrandom 0.3.3", 1906 "lru-slab", 1907 "rand 0.9.2", 1908 "ring", 1909 "rustc-hash", 1910 "rustls", 1911 "rustls-pki-types", 1912 "slab", 1913 "thiserror 2.0.16", 1914 "tinyvec", 1915 "tracing", 1916 "web-time", 1917] 1918 1919[[package]] 1920name = "quinn-udp" 1921version = "0.5.14" 1922source = "registry+https://github.com/rust-lang/crates.io-index" 1923checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 1924dependencies = [ 1925 "cfg_aliases", 1926 "libc", 1927 "once_cell", 1928 "socket2 0.6.0", 1929 "tracing", 1930 "windows-sys 0.60.2", 1931] 1932 1933[[package]] 1934name = "quote" 1935version = "1.0.40" 1936source = "registry+https://github.com/rust-lang/crates.io-index" 1937checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 1938dependencies = [ 1939 "proc-macro2", 1940] 1941 1942[[package]] 1943name = "r-efi" 1944version = "5.3.0" 1945source = "registry+https://github.com/rust-lang/crates.io-index" 1946checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 1947 1948[[package]] 1949name = "rand" 1950version = "0.8.5" 1951source = "registry+https://github.com/rust-lang/crates.io-index" 1952checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1953dependencies = [ 1954 "libc", 1955 "rand_chacha 0.3.1", 1956 "rand_core 0.6.4", 1957] 1958 1959[[package]] 1960name = "rand" 1961version = "0.9.2" 1962source = "registry+https://github.com/rust-lang/crates.io-index" 1963checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 1964dependencies = [ 1965 "rand_chacha 0.9.0", 1966 "rand_core 0.9.3", 1967] 1968 1969[[package]] 1970name = "rand_chacha" 1971version = "0.3.1" 1972source = "registry+https://github.com/rust-lang/crates.io-index" 1973checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1974dependencies = [ 1975 "ppv-lite86", 1976 "rand_core 0.6.4", 1977] 1978 1979[[package]] 1980name = "rand_chacha" 1981version = "0.9.0" 1982source = "registry+https://github.com/rust-lang/crates.io-index" 1983checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 1984dependencies = [ 1985 "ppv-lite86", 1986 "rand_core 0.9.3", 1987] 1988 1989[[package]] 1990name = "rand_core" 1991version = "0.6.4" 1992source = "registry+https://github.com/rust-lang/crates.io-index" 1993checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1994dependencies = [ 1995 "getrandom 0.2.16", 1996] 1997 1998[[package]] 1999name = "rand_core" 2000version = "0.9.3" 2001source = "registry+https://github.com/rust-lang/crates.io-index" 2002checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 2003dependencies = [ 2004 "getrandom 0.3.3", 2005] 2006 2007[[package]] 2008name = "redis" 2009version = "0.32.5" 2010source = "registry+https://github.com/rust-lang/crates.io-index" 2011checksum = "7cd3650deebc68526b304898b192fa4102a4ef0b9ada24da096559cb60e0eef8" 2012dependencies = [ 2013 "arc-swap", 2014 "backon", 2015 "bytes", 2016 "cfg-if", 2017 "combine", 2018 "futures-channel", 2019 "futures-util", 2020 "itoa", 2021 "num-bigint", 2022 "percent-encoding", 2023 "pin-project-lite", 2024 "rustls", 2025 "rustls-native-certs", 2026 "ryu", 2027 "socket2 0.6.0", 2028 "tokio", 2029 "tokio-rustls", 2030 "tokio-util", 2031 "url", 2032] 2033 2034[[package]] 2035name = "redox_syscall" 2036version = "0.5.17" 2037source = "registry+https://github.com/rust-lang/crates.io-index" 2038checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" 2039dependencies = [ 2040 "bitflags", 2041] 2042 2043[[package]] 2044name = "regex-automata" 2045version = "0.4.10" 2046source = "registry+https://github.com/rust-lang/crates.io-index" 2047checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6" 2048dependencies = [ 2049 "aho-corasick", 2050 "memchr", 2051 "regex-syntax", 2052] 2053 2054[[package]] 2055name = "regex-syntax" 2056version = "0.8.6" 2057source = "registry+https://github.com/rust-lang/crates.io-index" 2058checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" 2059 2060[[package]] 2061name = "reqwest" 2062version = "0.12.23" 2063source = "registry+https://github.com/rust-lang/crates.io-index" 2064checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb" 2065dependencies = [ 2066 "base64", 2067 "bytes", 2068 "encoding_rs", 2069 "futures-core", 2070 "h2", 2071 "http", 2072 "http-body", 2073 "http-body-util", 2074 "hyper", 2075 "hyper-rustls", 2076 "hyper-tls", 2077 "hyper-util", 2078 "js-sys", 2079 "log", 2080 "mime", 2081 "native-tls", 2082 "percent-encoding", 2083 "pin-project-lite", 2084 "quinn", 2085 "rustls", 2086 "rustls-pki-types", 2087 "serde", 2088 "serde_json", 2089 "serde_urlencoded", 2090 "sync_wrapper", 2091 "tokio", 2092 "tokio-native-tls", 2093 "tokio-rustls", 2094 "tower", 2095 "tower-http", 2096 "tower-service", 2097 "url", 2098 "wasm-bindgen", 2099 "wasm-bindgen-futures", 2100 "web-sys", 2101 "webpki-roots", 2102] 2103 2104[[package]] 2105name = "resolv-conf" 2106version = "0.7.4" 2107source = "registry+https://github.com/rust-lang/crates.io-index" 2108checksum = "95325155c684b1c89f7765e30bc1c42e4a6da51ca513615660cb8a62ef9a88e3" 2109 2110[[package]] 2111name = "rfc6979" 2112version = "0.4.0" 2113source = "registry+https://github.com/rust-lang/crates.io-index" 2114checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 2115dependencies = [ 2116 "hmac", 2117 "subtle", 2118] 2119 2120[[package]] 2121name = "ring" 2122version = "0.17.14" 2123source = "registry+https://github.com/rust-lang/crates.io-index" 2124checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 2125dependencies = [ 2126 "cc", 2127 "cfg-if", 2128 "getrandom 0.2.16", 2129 "libc", 2130 "untrusted", 2131 "windows-sys 0.52.0", 2132] 2133 2134[[package]] 2135name = "rsa" 2136version = "0.9.8" 2137source = "registry+https://github.com/rust-lang/crates.io-index" 2138checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b" 2139dependencies = [ 2140 "const-oid", 2141 "digest", 2142 "num-bigint-dig", 2143 "num-integer", 2144 "num-traits", 2145 "pkcs1", 2146 "pkcs8", 2147 "rand_core 0.6.4", 2148 "signature", 2149 "spki", 2150 "subtle", 2151 "zeroize", 2152] 2153 2154[[package]] 2155name = "rustc-demangle" 2156version = "0.1.26" 2157source = "registry+https://github.com/rust-lang/crates.io-index" 2158checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" 2159 2160[[package]] 2161name = "rustc-hash" 2162version = "2.1.1" 2163source = "registry+https://github.com/rust-lang/crates.io-index" 2164checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 2165 2166[[package]] 2167name = "rustc_version" 2168version = "0.4.1" 2169source = "registry+https://github.com/rust-lang/crates.io-index" 2170checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 2171dependencies = [ 2172 "semver", 2173] 2174 2175[[package]] 2176name = "rustix" 2177version = "1.0.8" 2178source = "registry+https://github.com/rust-lang/crates.io-index" 2179checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8" 2180dependencies = [ 2181 "bitflags", 2182 "errno", 2183 "libc", 2184 "linux-raw-sys", 2185 "windows-sys 0.60.2", 2186] 2187 2188[[package]] 2189name = "rustls" 2190version = "0.23.31" 2191source = "registry+https://github.com/rust-lang/crates.io-index" 2192checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc" 2193dependencies = [ 2194 "once_cell", 2195 "ring", 2196 "rustls-pki-types", 2197 "rustls-webpki", 2198 "subtle", 2199 "zeroize", 2200] 2201 2202[[package]] 2203name = "rustls-native-certs" 2204version = "0.8.1" 2205source = "registry+https://github.com/rust-lang/crates.io-index" 2206checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" 2207dependencies = [ 2208 "openssl-probe", 2209 "rustls-pki-types", 2210 "schannel", 2211 "security-framework 3.3.0", 2212] 2213 2214[[package]] 2215name = "rustls-pki-types" 2216version = "1.12.0" 2217source = "registry+https://github.com/rust-lang/crates.io-index" 2218checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" 2219dependencies = [ 2220 "web-time", 2221 "zeroize", 2222] 2223 2224[[package]] 2225name = "rustls-webpki" 2226version = "0.103.4" 2227source = "registry+https://github.com/rust-lang/crates.io-index" 2228checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc" 2229dependencies = [ 2230 "ring", 2231 "rustls-pki-types", 2232 "untrusted", 2233] 2234 2235[[package]] 2236name = "rustversion" 2237version = "1.0.22" 2238source = "registry+https://github.com/rust-lang/crates.io-index" 2239checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 2240 2241[[package]] 2242name = "ryu" 2243version = "1.0.20" 2244source = "registry+https://github.com/rust-lang/crates.io-index" 2245checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 2246 2247[[package]] 2248name = "schannel" 2249version = "0.1.27" 2250source = "registry+https://github.com/rust-lang/crates.io-index" 2251checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" 2252dependencies = [ 2253 "windows-sys 0.59.0", 2254] 2255 2256[[package]] 2257name = "scoped-tls" 2258version = "1.0.1" 2259source = "registry+https://github.com/rust-lang/crates.io-index" 2260checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 2261 2262[[package]] 2263name = "scopeguard" 2264version = "1.2.0" 2265source = "registry+https://github.com/rust-lang/crates.io-index" 2266checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 2267 2268[[package]] 2269name = "sec1" 2270version = "0.7.3" 2271source = "registry+https://github.com/rust-lang/crates.io-index" 2272checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 2273dependencies = [ 2274 "base16ct", 2275 "der", 2276 "generic-array", 2277 "pkcs8", 2278 "serdect", 2279 "subtle", 2280 "zeroize", 2281] 2282 2283[[package]] 2284name = "security-framework" 2285version = "2.11.1" 2286source = "registry+https://github.com/rust-lang/crates.io-index" 2287checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 2288dependencies = [ 2289 "bitflags", 2290 "core-foundation 0.9.4", 2291 "core-foundation-sys", 2292 "libc", 2293 "security-framework-sys", 2294] 2295 2296[[package]] 2297name = "security-framework" 2298version = "3.3.0" 2299source = "registry+https://github.com/rust-lang/crates.io-index" 2300checksum = "80fb1d92c5028aa318b4b8bd7302a5bfcf48be96a37fc6fc790f806b0004ee0c" 2301dependencies = [ 2302 "bitflags", 2303 "core-foundation 0.10.1", 2304 "core-foundation-sys", 2305 "libc", 2306 "security-framework-sys", 2307] 2308 2309[[package]] 2310name = "security-framework-sys" 2311version = "2.14.0" 2312source = "registry+https://github.com/rust-lang/crates.io-index" 2313checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" 2314dependencies = [ 2315 "core-foundation-sys", 2316 "libc", 2317] 2318 2319[[package]] 2320name = "semver" 2321version = "1.0.26" 2322source = "registry+https://github.com/rust-lang/crates.io-index" 2323checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" 2324 2325[[package]] 2326name = "serde" 2327version = "1.0.219" 2328source = "registry+https://github.com/rust-lang/crates.io-index" 2329checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" 2330dependencies = [ 2331 "serde_derive", 2332] 2333 2334[[package]] 2335name = "serde_bytes" 2336version = "0.11.17" 2337source = "registry+https://github.com/rust-lang/crates.io-index" 2338checksum = "8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96" 2339dependencies = [ 2340 "serde", 2341] 2342 2343[[package]] 2344name = "serde_derive" 2345version = "1.0.219" 2346source = "registry+https://github.com/rust-lang/crates.io-index" 2347checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" 2348dependencies = [ 2349 "proc-macro2", 2350 "quote", 2351 "syn", 2352] 2353 2354[[package]] 2355name = "serde_ipld_dagcbor" 2356version = "0.6.3" 2357source = "registry+https://github.com/rust-lang/crates.io-index" 2358checksum = "99600723cf53fb000a66175555098db7e75217c415bdd9a16a65d52a19dcc4fc" 2359dependencies = [ 2360 "cbor4ii", 2361 "ipld-core", 2362 "scopeguard", 2363 "serde", 2364] 2365 2366[[package]] 2367name = "serde_json" 2368version = "1.0.143" 2369source = "registry+https://github.com/rust-lang/crates.io-index" 2370checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a" 2371dependencies = [ 2372 "itoa", 2373 "memchr", 2374 "ryu", 2375 "serde", 2376] 2377 2378[[package]] 2379name = "serde_path_to_error" 2380version = "0.1.17" 2381source = "registry+https://github.com/rust-lang/crates.io-index" 2382checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a" 2383dependencies = [ 2384 "itoa", 2385 "serde", 2386] 2387 2388[[package]] 2389name = "serde_urlencoded" 2390version = "0.7.1" 2391source = "registry+https://github.com/rust-lang/crates.io-index" 2392checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2393dependencies = [ 2394 "form_urlencoded", 2395 "itoa", 2396 "ryu", 2397 "serde", 2398] 2399 2400[[package]] 2401name = "serdect" 2402version = "0.2.0" 2403source = "registry+https://github.com/rust-lang/crates.io-index" 2404checksum = "a84f14a19e9a014bb9f4512488d9829a68e04ecabffb0f9904cd1ace94598177" 2405dependencies = [ 2406 "base16ct", 2407 "serde", 2408] 2409 2410[[package]] 2411name = "sha1" 2412version = "0.10.6" 2413source = "registry+https://github.com/rust-lang/crates.io-index" 2414checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 2415dependencies = [ 2416 "cfg-if", 2417 "cpufeatures", 2418 "digest", 2419] 2420 2421[[package]] 2422name = "sha2" 2423version = "0.10.9" 2424source = "registry+https://github.com/rust-lang/crates.io-index" 2425checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 2426dependencies = [ 2427 "cfg-if", 2428 "cpufeatures", 2429 "digest", 2430] 2431 2432[[package]] 2433name = "sharded-slab" 2434version = "0.1.7" 2435source = "registry+https://github.com/rust-lang/crates.io-index" 2436checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 2437dependencies = [ 2438 "lazy_static", 2439] 2440 2441[[package]] 2442name = "shlex" 2443version = "1.3.0" 2444source = "registry+https://github.com/rust-lang/crates.io-index" 2445checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2446 2447[[package]] 2448name = "signal-hook-registry" 2449version = "1.4.6" 2450source = "registry+https://github.com/rust-lang/crates.io-index" 2451checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" 2452dependencies = [ 2453 "libc", 2454] 2455 2456[[package]] 2457name = "signature" 2458version = "2.2.0" 2459source = "registry+https://github.com/rust-lang/crates.io-index" 2460checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 2461dependencies = [ 2462 "digest", 2463 "rand_core 0.6.4", 2464] 2465 2466[[package]] 2467name = "slab" 2468version = "0.4.11" 2469source = "registry+https://github.com/rust-lang/crates.io-index" 2470checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 2471 2472[[package]] 2473name = "smallvec" 2474version = "1.15.1" 2475source = "registry+https://github.com/rust-lang/crates.io-index" 2476checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 2477dependencies = [ 2478 "serde", 2479] 2480 2481[[package]] 2482name = "socket2" 2483version = "0.5.10" 2484source = "registry+https://github.com/rust-lang/crates.io-index" 2485checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 2486dependencies = [ 2487 "libc", 2488 "windows-sys 0.52.0", 2489] 2490 2491[[package]] 2492name = "socket2" 2493version = "0.6.0" 2494source = "registry+https://github.com/rust-lang/crates.io-index" 2495checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" 2496dependencies = [ 2497 "libc", 2498 "windows-sys 0.59.0", 2499] 2500 2501[[package]] 2502name = "spin" 2503version = "0.9.8" 2504source = "registry+https://github.com/rust-lang/crates.io-index" 2505checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2506dependencies = [ 2507 "lock_api", 2508] 2509 2510[[package]] 2511name = "spki" 2512version = "0.7.3" 2513source = "registry+https://github.com/rust-lang/crates.io-index" 2514checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 2515dependencies = [ 2516 "base64ct", 2517 "der", 2518] 2519 2520[[package]] 2521name = "sqlx" 2522version = "0.8.6" 2523source = "registry+https://github.com/rust-lang/crates.io-index" 2524checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc" 2525dependencies = [ 2526 "sqlx-core", 2527 "sqlx-macros", 2528 "sqlx-mysql", 2529 "sqlx-postgres", 2530 "sqlx-sqlite", 2531] 2532 2533[[package]] 2534name = "sqlx-core" 2535version = "0.8.6" 2536source = "registry+https://github.com/rust-lang/crates.io-index" 2537checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6" 2538dependencies = [ 2539 "base64", 2540 "bytes", 2541 "crc", 2542 "crossbeam-queue", 2543 "either", 2544 "event-listener", 2545 "futures-core", 2546 "futures-intrusive", 2547 "futures-io", 2548 "futures-util", 2549 "hashbrown", 2550 "hashlink", 2551 "indexmap", 2552 "log", 2553 "memchr", 2554 "once_cell", 2555 "percent-encoding", 2556 "serde", 2557 "serde_json", 2558 "sha2", 2559 "smallvec", 2560 "thiserror 2.0.16", 2561 "tokio", 2562 "tokio-stream", 2563 "tracing", 2564 "url", 2565] 2566 2567[[package]] 2568name = "sqlx-macros" 2569version = "0.8.6" 2570source = "registry+https://github.com/rust-lang/crates.io-index" 2571checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d" 2572dependencies = [ 2573 "proc-macro2", 2574 "quote", 2575 "sqlx-core", 2576 "sqlx-macros-core", 2577 "syn", 2578] 2579 2580[[package]] 2581name = "sqlx-macros-core" 2582version = "0.8.6" 2583source = "registry+https://github.com/rust-lang/crates.io-index" 2584checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b" 2585dependencies = [ 2586 "dotenvy", 2587 "either", 2588 "heck", 2589 "hex", 2590 "once_cell", 2591 "proc-macro2", 2592 "quote", 2593 "serde", 2594 "serde_json", 2595 "sha2", 2596 "sqlx-core", 2597 "sqlx-mysql", 2598 "sqlx-postgres", 2599 "sqlx-sqlite", 2600 "syn", 2601 "tokio", 2602 "url", 2603] 2604 2605[[package]] 2606name = "sqlx-mysql" 2607version = "0.8.6" 2608source = "registry+https://github.com/rust-lang/crates.io-index" 2609checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526" 2610dependencies = [ 2611 "atoi", 2612 "base64", 2613 "bitflags", 2614 "byteorder", 2615 "bytes", 2616 "crc", 2617 "digest", 2618 "dotenvy", 2619 "either", 2620 "futures-channel", 2621 "futures-core", 2622 "futures-io", 2623 "futures-util", 2624 "generic-array", 2625 "hex", 2626 "hkdf", 2627 "hmac", 2628 "itoa", 2629 "log", 2630 "md-5", 2631 "memchr", 2632 "once_cell", 2633 "percent-encoding", 2634 "rand 0.8.5", 2635 "rsa", 2636 "serde", 2637 "sha1", 2638 "sha2", 2639 "smallvec", 2640 "sqlx-core", 2641 "stringprep", 2642 "thiserror 2.0.16", 2643 "tracing", 2644 "whoami", 2645] 2646 2647[[package]] 2648name = "sqlx-postgres" 2649version = "0.8.6" 2650source = "registry+https://github.com/rust-lang/crates.io-index" 2651checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46" 2652dependencies = [ 2653 "atoi", 2654 "base64", 2655 "bitflags", 2656 "byteorder", 2657 "crc", 2658 "dotenvy", 2659 "etcetera", 2660 "futures-channel", 2661 "futures-core", 2662 "futures-util", 2663 "hex", 2664 "hkdf", 2665 "hmac", 2666 "home", 2667 "itoa", 2668 "log", 2669 "md-5", 2670 "memchr", 2671 "once_cell", 2672 "rand 0.8.5", 2673 "serde", 2674 "serde_json", 2675 "sha2", 2676 "smallvec", 2677 "sqlx-core", 2678 "stringprep", 2679 "thiserror 2.0.16", 2680 "tracing", 2681 "whoami", 2682] 2683 2684[[package]] 2685name = "sqlx-sqlite" 2686version = "0.8.6" 2687source = "registry+https://github.com/rust-lang/crates.io-index" 2688checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea" 2689dependencies = [ 2690 "atoi", 2691 "flume", 2692 "futures-channel", 2693 "futures-core", 2694 "futures-executor", 2695 "futures-intrusive", 2696 "futures-util", 2697 "libsqlite3-sys", 2698 "log", 2699 "percent-encoding", 2700 "serde", 2701 "serde_urlencoded", 2702 "sqlx-core", 2703 "thiserror 2.0.16", 2704 "tracing", 2705 "url", 2706] 2707 2708[[package]] 2709name = "stable_deref_trait" 2710version = "1.2.0" 2711source = "registry+https://github.com/rust-lang/crates.io-index" 2712checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2713 2714[[package]] 2715name = "stringprep" 2716version = "0.1.5" 2717source = "registry+https://github.com/rust-lang/crates.io-index" 2718checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" 2719dependencies = [ 2720 "unicode-bidi", 2721 "unicode-normalization", 2722 "unicode-properties", 2723] 2724 2725[[package]] 2726name = "subtle" 2727version = "2.6.1" 2728source = "registry+https://github.com/rust-lang/crates.io-index" 2729checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 2730 2731[[package]] 2732name = "syn" 2733version = "2.0.106" 2734source = "registry+https://github.com/rust-lang/crates.io-index" 2735checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" 2736dependencies = [ 2737 "proc-macro2", 2738 "quote", 2739 "unicode-ident", 2740] 2741 2742[[package]] 2743name = "sync_wrapper" 2744version = "1.0.2" 2745source = "registry+https://github.com/rust-lang/crates.io-index" 2746checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 2747dependencies = [ 2748 "futures-core", 2749] 2750 2751[[package]] 2752name = "synstructure" 2753version = "0.13.2" 2754source = "registry+https://github.com/rust-lang/crates.io-index" 2755checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 2756dependencies = [ 2757 "proc-macro2", 2758 "quote", 2759 "syn", 2760] 2761 2762[[package]] 2763name = "system-configuration" 2764version = "0.6.1" 2765source = "registry+https://github.com/rust-lang/crates.io-index" 2766checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" 2767dependencies = [ 2768 "bitflags", 2769 "core-foundation 0.9.4", 2770 "system-configuration-sys", 2771] 2772 2773[[package]] 2774name = "system-configuration-sys" 2775version = "0.6.0" 2776source = "registry+https://github.com/rust-lang/crates.io-index" 2777checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 2778dependencies = [ 2779 "core-foundation-sys", 2780 "libc", 2781] 2782 2783[[package]] 2784name = "tagptr" 2785version = "0.2.0" 2786source = "registry+https://github.com/rust-lang/crates.io-index" 2787checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" 2788 2789[[package]] 2790name = "tempfile" 2791version = "3.21.0" 2792source = "registry+https://github.com/rust-lang/crates.io-index" 2793checksum = "15b61f8f20e3a6f7e0649d825294eaf317edce30f82cf6026e7e4cb9222a7d1e" 2794dependencies = [ 2795 "fastrand", 2796 "getrandom 0.3.3", 2797 "once_cell", 2798 "rustix", 2799 "windows-sys 0.60.2", 2800] 2801 2802[[package]] 2803name = "thiserror" 2804version = "1.0.69" 2805source = "registry+https://github.com/rust-lang/crates.io-index" 2806checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 2807dependencies = [ 2808 "thiserror-impl 1.0.69", 2809] 2810 2811[[package]] 2812name = "thiserror" 2813version = "2.0.16" 2814source = "registry+https://github.com/rust-lang/crates.io-index" 2815checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0" 2816dependencies = [ 2817 "thiserror-impl 2.0.16", 2818] 2819 2820[[package]] 2821name = "thiserror-impl" 2822version = "1.0.69" 2823source = "registry+https://github.com/rust-lang/crates.io-index" 2824checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 2825dependencies = [ 2826 "proc-macro2", 2827 "quote", 2828 "syn", 2829] 2830 2831[[package]] 2832name = "thiserror-impl" 2833version = "2.0.16" 2834source = "registry+https://github.com/rust-lang/crates.io-index" 2835checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960" 2836dependencies = [ 2837 "proc-macro2", 2838 "quote", 2839 "syn", 2840] 2841 2842[[package]] 2843name = "thread_local" 2844version = "1.1.9" 2845source = "registry+https://github.com/rust-lang/crates.io-index" 2846checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 2847dependencies = [ 2848 "cfg-if", 2849] 2850 2851[[package]] 2852name = "tinystr" 2853version = "0.8.1" 2854source = "registry+https://github.com/rust-lang/crates.io-index" 2855checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" 2856dependencies = [ 2857 "displaydoc", 2858 "zerovec", 2859] 2860 2861[[package]] 2862name = "tinyvec" 2863version = "1.10.0" 2864source = "registry+https://github.com/rust-lang/crates.io-index" 2865checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" 2866dependencies = [ 2867 "tinyvec_macros", 2868] 2869 2870[[package]] 2871name = "tinyvec_macros" 2872version = "0.1.1" 2873source = "registry+https://github.com/rust-lang/crates.io-index" 2874checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2875 2876[[package]] 2877name = "tokio" 2878version = "1.47.1" 2879source = "registry+https://github.com/rust-lang/crates.io-index" 2880checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" 2881dependencies = [ 2882 "backtrace", 2883 "bytes", 2884 "io-uring", 2885 "libc", 2886 "mio", 2887 "pin-project-lite", 2888 "signal-hook-registry", 2889 "slab", 2890 "socket2 0.6.0", 2891 "tokio-macros", 2892 "windows-sys 0.59.0", 2893] 2894 2895[[package]] 2896name = "tokio-macros" 2897version = "2.5.0" 2898source = "registry+https://github.com/rust-lang/crates.io-index" 2899checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 2900dependencies = [ 2901 "proc-macro2", 2902 "quote", 2903 "syn", 2904] 2905 2906[[package]] 2907name = "tokio-native-tls" 2908version = "0.3.1" 2909source = "registry+https://github.com/rust-lang/crates.io-index" 2910checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 2911dependencies = [ 2912 "native-tls", 2913 "tokio", 2914] 2915 2916[[package]] 2917name = "tokio-rustls" 2918version = "0.26.2" 2919source = "registry+https://github.com/rust-lang/crates.io-index" 2920checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" 2921dependencies = [ 2922 "rustls", 2923 "tokio", 2924] 2925 2926[[package]] 2927name = "tokio-stream" 2928version = "0.1.17" 2929source = "registry+https://github.com/rust-lang/crates.io-index" 2930checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" 2931dependencies = [ 2932 "futures-core", 2933 "pin-project-lite", 2934 "tokio", 2935] 2936 2937[[package]] 2938name = "tokio-util" 2939version = "0.7.16" 2940source = "registry+https://github.com/rust-lang/crates.io-index" 2941checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5" 2942dependencies = [ 2943 "bytes", 2944 "futures-core", 2945 "futures-sink", 2946 "futures-util", 2947 "pin-project-lite", 2948 "tokio", 2949] 2950 2951[[package]] 2952name = "tower" 2953version = "0.5.2" 2954source = "registry+https://github.com/rust-lang/crates.io-index" 2955checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 2956dependencies = [ 2957 "futures-core", 2958 "futures-util", 2959 "pin-project-lite", 2960 "sync_wrapper", 2961 "tokio", 2962 "tower-layer", 2963 "tower-service", 2964 "tracing", 2965] 2966 2967[[package]] 2968name = "tower-http" 2969version = "0.6.6" 2970source = "registry+https://github.com/rust-lang/crates.io-index" 2971checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" 2972dependencies = [ 2973 "bitflags", 2974 "bytes", 2975 "futures-util", 2976 "http", 2977 "http-body", 2978 "iri-string", 2979 "pin-project-lite", 2980 "tower", 2981 "tower-layer", 2982 "tower-service", 2983] 2984 2985[[package]] 2986name = "tower-layer" 2987version = "0.3.3" 2988source = "registry+https://github.com/rust-lang/crates.io-index" 2989checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 2990 2991[[package]] 2992name = "tower-service" 2993version = "0.3.3" 2994source = "registry+https://github.com/rust-lang/crates.io-index" 2995checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 2996 2997[[package]] 2998name = "tracing" 2999version = "0.1.41" 3000source = "registry+https://github.com/rust-lang/crates.io-index" 3001checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 3002dependencies = [ 3003 "log", 3004 "pin-project-lite", 3005 "tracing-attributes", 3006 "tracing-core", 3007] 3008 3009[[package]] 3010name = "tracing-attributes" 3011version = "0.1.30" 3012source = "registry+https://github.com/rust-lang/crates.io-index" 3013checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" 3014dependencies = [ 3015 "proc-macro2", 3016 "quote", 3017 "syn", 3018] 3019 3020[[package]] 3021name = "tracing-core" 3022version = "0.1.34" 3023source = "registry+https://github.com/rust-lang/crates.io-index" 3024checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" 3025dependencies = [ 3026 "once_cell", 3027 "valuable", 3028] 3029 3030[[package]] 3031name = "tracing-log" 3032version = "0.2.0" 3033source = "registry+https://github.com/rust-lang/crates.io-index" 3034checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 3035dependencies = [ 3036 "log", 3037 "once_cell", 3038 "tracing-core", 3039] 3040 3041[[package]] 3042name = "tracing-subscriber" 3043version = "0.3.20" 3044source = "registry+https://github.com/rust-lang/crates.io-index" 3045checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5" 3046dependencies = [ 3047 "matchers", 3048 "nu-ansi-term", 3049 "once_cell", 3050 "regex-automata", 3051 "sharded-slab", 3052 "smallvec", 3053 "thread_local", 3054 "tracing", 3055 "tracing-core", 3056 "tracing-log", 3057] 3058 3059[[package]] 3060name = "try-lock" 3061version = "0.2.5" 3062source = "registry+https://github.com/rust-lang/crates.io-index" 3063checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 3064 3065[[package]] 3066name = "typenum" 3067version = "1.18.0" 3068source = "registry+https://github.com/rust-lang/crates.io-index" 3069checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" 3070 3071[[package]] 3072name = "unicode-bidi" 3073version = "0.3.18" 3074source = "registry+https://github.com/rust-lang/crates.io-index" 3075checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" 3076 3077[[package]] 3078name = "unicode-ident" 3079version = "1.0.18" 3080source = "registry+https://github.com/rust-lang/crates.io-index" 3081checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 3082 3083[[package]] 3084name = "unicode-normalization" 3085version = "0.1.24" 3086source = "registry+https://github.com/rust-lang/crates.io-index" 3087checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" 3088dependencies = [ 3089 "tinyvec", 3090] 3091 3092[[package]] 3093name = "unicode-properties" 3094version = "0.1.3" 3095source = "registry+https://github.com/rust-lang/crates.io-index" 3096checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0" 3097 3098[[package]] 3099name = "unsigned-varint" 3100version = "0.8.0" 3101source = "registry+https://github.com/rust-lang/crates.io-index" 3102checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 3103 3104[[package]] 3105name = "untrusted" 3106version = "0.9.0" 3107source = "registry+https://github.com/rust-lang/crates.io-index" 3108checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 3109 3110[[package]] 3111name = "unty" 3112version = "0.0.4" 3113source = "registry+https://github.com/rust-lang/crates.io-index" 3114checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae" 3115 3116[[package]] 3117name = "url" 3118version = "2.5.7" 3119source = "registry+https://github.com/rust-lang/crates.io-index" 3120checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" 3121dependencies = [ 3122 "form_urlencoded", 3123 "idna", 3124 "percent-encoding", 3125 "serde", 3126] 3127 3128[[package]] 3129name = "utf8_iter" 3130version = "1.0.4" 3131source = "registry+https://github.com/rust-lang/crates.io-index" 3132checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 3133 3134[[package]] 3135name = "uuid" 3136version = "1.18.1" 3137source = "registry+https://github.com/rust-lang/crates.io-index" 3138checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" 3139dependencies = [ 3140 "getrandom 0.3.3", 3141 "js-sys", 3142 "wasm-bindgen", 3143] 3144 3145[[package]] 3146name = "valuable" 3147version = "0.1.1" 3148source = "registry+https://github.com/rust-lang/crates.io-index" 3149checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 3150 3151[[package]] 3152name = "vcpkg" 3153version = "0.2.15" 3154source = "registry+https://github.com/rust-lang/crates.io-index" 3155checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3156 3157[[package]] 3158name = "version_check" 3159version = "0.9.5" 3160source = "registry+https://github.com/rust-lang/crates.io-index" 3161checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 3162 3163[[package]] 3164name = "virtue" 3165version = "0.0.18" 3166source = "registry+https://github.com/rust-lang/crates.io-index" 3167checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1" 3168 3169[[package]] 3170name = "want" 3171version = "0.3.1" 3172source = "registry+https://github.com/rust-lang/crates.io-index" 3173checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 3174dependencies = [ 3175 "try-lock", 3176] 3177 3178[[package]] 3179name = "wasi" 3180version = "0.11.1+wasi-snapshot-preview1" 3181source = "registry+https://github.com/rust-lang/crates.io-index" 3182checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 3183 3184[[package]] 3185name = "wasi" 3186version = "0.14.3+wasi-0.2.4" 3187source = "registry+https://github.com/rust-lang/crates.io-index" 3188checksum = "6a51ae83037bdd272a9e28ce236db8c07016dd0d50c27038b3f407533c030c95" 3189dependencies = [ 3190 "wit-bindgen", 3191] 3192 3193[[package]] 3194name = "wasite" 3195version = "0.1.0" 3196source = "registry+https://github.com/rust-lang/crates.io-index" 3197checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 3198 3199[[package]] 3200name = "wasm-bindgen" 3201version = "0.2.101" 3202source = "registry+https://github.com/rust-lang/crates.io-index" 3203checksum = "7e14915cadd45b529bb8d1f343c4ed0ac1de926144b746e2710f9cd05df6603b" 3204dependencies = [ 3205 "cfg-if", 3206 "once_cell", 3207 "rustversion", 3208 "wasm-bindgen-macro", 3209 "wasm-bindgen-shared", 3210] 3211 3212[[package]] 3213name = "wasm-bindgen-backend" 3214version = "0.2.101" 3215source = "registry+https://github.com/rust-lang/crates.io-index" 3216checksum = "e28d1ba982ca7923fd01448d5c30c6864d0a14109560296a162f80f305fb93bb" 3217dependencies = [ 3218 "bumpalo", 3219 "log", 3220 "proc-macro2", 3221 "quote", 3222 "syn", 3223 "wasm-bindgen-shared", 3224] 3225 3226[[package]] 3227name = "wasm-bindgen-futures" 3228version = "0.4.51" 3229source = "registry+https://github.com/rust-lang/crates.io-index" 3230checksum = "0ca85039a9b469b38336411d6d6ced91f3fc87109a2a27b0c197663f5144dffe" 3231dependencies = [ 3232 "cfg-if", 3233 "js-sys", 3234 "once_cell", 3235 "wasm-bindgen", 3236 "web-sys", 3237] 3238 3239[[package]] 3240name = "wasm-bindgen-macro" 3241version = "0.2.101" 3242source = "registry+https://github.com/rust-lang/crates.io-index" 3243checksum = "7c3d463ae3eff775b0c45df9da45d68837702ac35af998361e2c84e7c5ec1b0d" 3244dependencies = [ 3245 "quote", 3246 "wasm-bindgen-macro-support", 3247] 3248 3249[[package]] 3250name = "wasm-bindgen-macro-support" 3251version = "0.2.101" 3252source = "registry+https://github.com/rust-lang/crates.io-index" 3253checksum = "7bb4ce89b08211f923caf51d527662b75bdc9c9c7aab40f86dcb9fb85ac552aa" 3254dependencies = [ 3255 "proc-macro2", 3256 "quote", 3257 "syn", 3258 "wasm-bindgen-backend", 3259 "wasm-bindgen-shared", 3260] 3261 3262[[package]] 3263name = "wasm-bindgen-shared" 3264version = "0.2.101" 3265source = "registry+https://github.com/rust-lang/crates.io-index" 3266checksum = "f143854a3b13752c6950862c906306adb27c7e839f7414cec8fea35beab624c1" 3267dependencies = [ 3268 "unicode-ident", 3269] 3270 3271[[package]] 3272name = "web-sys" 3273version = "0.3.78" 3274source = "registry+https://github.com/rust-lang/crates.io-index" 3275checksum = "77e4b637749ff0d92b8fad63aa1f7cff3cbe125fd49c175cd6345e7272638b12" 3276dependencies = [ 3277 "js-sys", 3278 "wasm-bindgen", 3279] 3280 3281[[package]] 3282name = "web-time" 3283version = "1.1.0" 3284source = "registry+https://github.com/rust-lang/crates.io-index" 3285checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 3286dependencies = [ 3287 "js-sys", 3288 "wasm-bindgen", 3289] 3290 3291[[package]] 3292name = "webpki-roots" 3293version = "1.0.2" 3294source = "registry+https://github.com/rust-lang/crates.io-index" 3295checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2" 3296dependencies = [ 3297 "rustls-pki-types", 3298] 3299 3300[[package]] 3301name = "whoami" 3302version = "1.6.1" 3303source = "registry+https://github.com/rust-lang/crates.io-index" 3304checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d" 3305dependencies = [ 3306 "libredox", 3307 "wasite", 3308] 3309 3310[[package]] 3311name = "widestring" 3312version = "1.2.0" 3313source = "registry+https://github.com/rust-lang/crates.io-index" 3314checksum = "dd7cf3379ca1aac9eea11fba24fd7e315d621f8dfe35c8d7d2be8b793726e07d" 3315 3316[[package]] 3317name = "windows" 3318version = "0.61.3" 3319source = "registry+https://github.com/rust-lang/crates.io-index" 3320checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" 3321dependencies = [ 3322 "windows-collections", 3323 "windows-core", 3324 "windows-future", 3325 "windows-link", 3326 "windows-numerics", 3327] 3328 3329[[package]] 3330name = "windows-collections" 3331version = "0.2.0" 3332source = "registry+https://github.com/rust-lang/crates.io-index" 3333checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" 3334dependencies = [ 3335 "windows-core", 3336] 3337 3338[[package]] 3339name = "windows-core" 3340version = "0.61.2" 3341source = "registry+https://github.com/rust-lang/crates.io-index" 3342checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" 3343dependencies = [ 3344 "windows-implement", 3345 "windows-interface", 3346 "windows-link", 3347 "windows-result", 3348 "windows-strings", 3349] 3350 3351[[package]] 3352name = "windows-future" 3353version = "0.2.1" 3354source = "registry+https://github.com/rust-lang/crates.io-index" 3355checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" 3356dependencies = [ 3357 "windows-core", 3358 "windows-link", 3359 "windows-threading", 3360] 3361 3362[[package]] 3363name = "windows-implement" 3364version = "0.60.0" 3365source = "registry+https://github.com/rust-lang/crates.io-index" 3366checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" 3367dependencies = [ 3368 "proc-macro2", 3369 "quote", 3370 "syn", 3371] 3372 3373[[package]] 3374name = "windows-interface" 3375version = "0.59.1" 3376source = "registry+https://github.com/rust-lang/crates.io-index" 3377checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" 3378dependencies = [ 3379 "proc-macro2", 3380 "quote", 3381 "syn", 3382] 3383 3384[[package]] 3385name = "windows-link" 3386version = "0.1.3" 3387source = "registry+https://github.com/rust-lang/crates.io-index" 3388checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 3389 3390[[package]] 3391name = "windows-numerics" 3392version = "0.2.0" 3393source = "registry+https://github.com/rust-lang/crates.io-index" 3394checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" 3395dependencies = [ 3396 "windows-core", 3397 "windows-link", 3398] 3399 3400[[package]] 3401name = "windows-registry" 3402version = "0.5.3" 3403source = "registry+https://github.com/rust-lang/crates.io-index" 3404checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e" 3405dependencies = [ 3406 "windows-link", 3407 "windows-result", 3408 "windows-strings", 3409] 3410 3411[[package]] 3412name = "windows-result" 3413version = "0.3.4" 3414source = "registry+https://github.com/rust-lang/crates.io-index" 3415checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 3416dependencies = [ 3417 "windows-link", 3418] 3419 3420[[package]] 3421name = "windows-strings" 3422version = "0.4.2" 3423source = "registry+https://github.com/rust-lang/crates.io-index" 3424checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 3425dependencies = [ 3426 "windows-link", 3427] 3428 3429[[package]] 3430name = "windows-sys" 3431version = "0.48.0" 3432source = "registry+https://github.com/rust-lang/crates.io-index" 3433checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 3434dependencies = [ 3435 "windows-targets 0.48.5", 3436] 3437 3438[[package]] 3439name = "windows-sys" 3440version = "0.52.0" 3441source = "registry+https://github.com/rust-lang/crates.io-index" 3442checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 3443dependencies = [ 3444 "windows-targets 0.52.6", 3445] 3446 3447[[package]] 3448name = "windows-sys" 3449version = "0.59.0" 3450source = "registry+https://github.com/rust-lang/crates.io-index" 3451checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 3452dependencies = [ 3453 "windows-targets 0.52.6", 3454] 3455 3456[[package]] 3457name = "windows-sys" 3458version = "0.60.2" 3459source = "registry+https://github.com/rust-lang/crates.io-index" 3460checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 3461dependencies = [ 3462 "windows-targets 0.53.3", 3463] 3464 3465[[package]] 3466name = "windows-targets" 3467version = "0.48.5" 3468source = "registry+https://github.com/rust-lang/crates.io-index" 3469checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 3470dependencies = [ 3471 "windows_aarch64_gnullvm 0.48.5", 3472 "windows_aarch64_msvc 0.48.5", 3473 "windows_i686_gnu 0.48.5", 3474 "windows_i686_msvc 0.48.5", 3475 "windows_x86_64_gnu 0.48.5", 3476 "windows_x86_64_gnullvm 0.48.5", 3477 "windows_x86_64_msvc 0.48.5", 3478] 3479 3480[[package]] 3481name = "windows-targets" 3482version = "0.52.6" 3483source = "registry+https://github.com/rust-lang/crates.io-index" 3484checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 3485dependencies = [ 3486 "windows_aarch64_gnullvm 0.52.6", 3487 "windows_aarch64_msvc 0.52.6", 3488 "windows_i686_gnu 0.52.6", 3489 "windows_i686_gnullvm 0.52.6", 3490 "windows_i686_msvc 0.52.6", 3491 "windows_x86_64_gnu 0.52.6", 3492 "windows_x86_64_gnullvm 0.52.6", 3493 "windows_x86_64_msvc 0.52.6", 3494] 3495 3496[[package]] 3497name = "windows-targets" 3498version = "0.53.3" 3499source = "registry+https://github.com/rust-lang/crates.io-index" 3500checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91" 3501dependencies = [ 3502 "windows-link", 3503 "windows_aarch64_gnullvm 0.53.0", 3504 "windows_aarch64_msvc 0.53.0", 3505 "windows_i686_gnu 0.53.0", 3506 "windows_i686_gnullvm 0.53.0", 3507 "windows_i686_msvc 0.53.0", 3508 "windows_x86_64_gnu 0.53.0", 3509 "windows_x86_64_gnullvm 0.53.0", 3510 "windows_x86_64_msvc 0.53.0", 3511] 3512 3513[[package]] 3514name = "windows-threading" 3515version = "0.1.0" 3516source = "registry+https://github.com/rust-lang/crates.io-index" 3517checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" 3518dependencies = [ 3519 "windows-link", 3520] 3521 3522[[package]] 3523name = "windows_aarch64_gnullvm" 3524version = "0.48.5" 3525source = "registry+https://github.com/rust-lang/crates.io-index" 3526checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 3527 3528[[package]] 3529name = "windows_aarch64_gnullvm" 3530version = "0.52.6" 3531source = "registry+https://github.com/rust-lang/crates.io-index" 3532checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 3533 3534[[package]] 3535name = "windows_aarch64_gnullvm" 3536version = "0.53.0" 3537source = "registry+https://github.com/rust-lang/crates.io-index" 3538checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 3539 3540[[package]] 3541name = "windows_aarch64_msvc" 3542version = "0.48.5" 3543source = "registry+https://github.com/rust-lang/crates.io-index" 3544checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 3545 3546[[package]] 3547name = "windows_aarch64_msvc" 3548version = "0.52.6" 3549source = "registry+https://github.com/rust-lang/crates.io-index" 3550checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 3551 3552[[package]] 3553name = "windows_aarch64_msvc" 3554version = "0.53.0" 3555source = "registry+https://github.com/rust-lang/crates.io-index" 3556checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 3557 3558[[package]] 3559name = "windows_i686_gnu" 3560version = "0.48.5" 3561source = "registry+https://github.com/rust-lang/crates.io-index" 3562checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3563 3564[[package]] 3565name = "windows_i686_gnu" 3566version = "0.52.6" 3567source = "registry+https://github.com/rust-lang/crates.io-index" 3568checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 3569 3570[[package]] 3571name = "windows_i686_gnu" 3572version = "0.53.0" 3573source = "registry+https://github.com/rust-lang/crates.io-index" 3574checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 3575 3576[[package]] 3577name = "windows_i686_gnullvm" 3578version = "0.52.6" 3579source = "registry+https://github.com/rust-lang/crates.io-index" 3580checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 3581 3582[[package]] 3583name = "windows_i686_gnullvm" 3584version = "0.53.0" 3585source = "registry+https://github.com/rust-lang/crates.io-index" 3586checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 3587 3588[[package]] 3589name = "windows_i686_msvc" 3590version = "0.48.5" 3591source = "registry+https://github.com/rust-lang/crates.io-index" 3592checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3593 3594[[package]] 3595name = "windows_i686_msvc" 3596version = "0.52.6" 3597source = "registry+https://github.com/rust-lang/crates.io-index" 3598checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 3599 3600[[package]] 3601name = "windows_i686_msvc" 3602version = "0.53.0" 3603source = "registry+https://github.com/rust-lang/crates.io-index" 3604checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 3605 3606[[package]] 3607name = "windows_x86_64_gnu" 3608version = "0.48.5" 3609source = "registry+https://github.com/rust-lang/crates.io-index" 3610checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3611 3612[[package]] 3613name = "windows_x86_64_gnu" 3614version = "0.52.6" 3615source = "registry+https://github.com/rust-lang/crates.io-index" 3616checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 3617 3618[[package]] 3619name = "windows_x86_64_gnu" 3620version = "0.53.0" 3621source = "registry+https://github.com/rust-lang/crates.io-index" 3622checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 3623 3624[[package]] 3625name = "windows_x86_64_gnullvm" 3626version = "0.48.5" 3627source = "registry+https://github.com/rust-lang/crates.io-index" 3628checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3629 3630[[package]] 3631name = "windows_x86_64_gnullvm" 3632version = "0.52.6" 3633source = "registry+https://github.com/rust-lang/crates.io-index" 3634checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 3635 3636[[package]] 3637name = "windows_x86_64_gnullvm" 3638version = "0.53.0" 3639source = "registry+https://github.com/rust-lang/crates.io-index" 3640checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 3641 3642[[package]] 3643name = "windows_x86_64_msvc" 3644version = "0.48.5" 3645source = "registry+https://github.com/rust-lang/crates.io-index" 3646checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3647 3648[[package]] 3649name = "windows_x86_64_msvc" 3650version = "0.52.6" 3651source = "registry+https://github.com/rust-lang/crates.io-index" 3652checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 3653 3654[[package]] 3655name = "windows_x86_64_msvc" 3656version = "0.53.0" 3657source = "registry+https://github.com/rust-lang/crates.io-index" 3658checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 3659 3660[[package]] 3661name = "winreg" 3662version = "0.50.0" 3663source = "registry+https://github.com/rust-lang/crates.io-index" 3664checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 3665dependencies = [ 3666 "cfg-if", 3667 "windows-sys 0.48.0", 3668] 3669 3670[[package]] 3671name = "wit-bindgen" 3672version = "0.45.1" 3673source = "registry+https://github.com/rust-lang/crates.io-index" 3674checksum = "5c573471f125075647d03df72e026074b7203790d41351cd6edc96f46bcccd36" 3675 3676[[package]] 3677name = "writeable" 3678version = "0.6.1" 3679source = "registry+https://github.com/rust-lang/crates.io-index" 3680checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" 3681 3682[[package]] 3683name = "yoke" 3684version = "0.8.0" 3685source = "registry+https://github.com/rust-lang/crates.io-index" 3686checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" 3687dependencies = [ 3688 "serde", 3689 "stable_deref_trait", 3690 "yoke-derive", 3691 "zerofrom", 3692] 3693 3694[[package]] 3695name = "yoke-derive" 3696version = "0.8.0" 3697source = "registry+https://github.com/rust-lang/crates.io-index" 3698checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" 3699dependencies = [ 3700 "proc-macro2", 3701 "quote", 3702 "syn", 3703 "synstructure", 3704] 3705 3706[[package]] 3707name = "zerocopy" 3708version = "0.8.26" 3709source = "registry+https://github.com/rust-lang/crates.io-index" 3710checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f" 3711dependencies = [ 3712 "zerocopy-derive", 3713] 3714 3715[[package]] 3716name = "zerocopy-derive" 3717version = "0.8.26" 3718source = "registry+https://github.com/rust-lang/crates.io-index" 3719checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181" 3720dependencies = [ 3721 "proc-macro2", 3722 "quote", 3723 "syn", 3724] 3725 3726[[package]] 3727name = "zerofrom" 3728version = "0.1.6" 3729source = "registry+https://github.com/rust-lang/crates.io-index" 3730checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 3731dependencies = [ 3732 "zerofrom-derive", 3733] 3734 3735[[package]] 3736name = "zerofrom-derive" 3737version = "0.1.6" 3738source = "registry+https://github.com/rust-lang/crates.io-index" 3739checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 3740dependencies = [ 3741 "proc-macro2", 3742 "quote", 3743 "syn", 3744 "synstructure", 3745] 3746 3747[[package]] 3748name = "zeroize" 3749version = "1.8.1" 3750source = "registry+https://github.com/rust-lang/crates.io-index" 3751checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 3752 3753[[package]] 3754name = "zerotrie" 3755version = "0.2.2" 3756source = "registry+https://github.com/rust-lang/crates.io-index" 3757checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" 3758dependencies = [ 3759 "displaydoc", 3760 "yoke", 3761 "zerofrom", 3762] 3763 3764[[package]] 3765name = "zerovec" 3766version = "0.11.4" 3767source = "registry+https://github.com/rust-lang/crates.io-index" 3768checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" 3769dependencies = [ 3770 "yoke", 3771 "zerofrom", 3772 "zerovec-derive", 3773] 3774 3775[[package]] 3776name = "zerovec-derive" 3777version = "0.11.1" 3778source = "registry+https://github.com/rust-lang/crates.io-index" 3779checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" 3780dependencies = [ 3781 "proc-macro2", 3782 "quote", 3783 "syn", 3784]