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