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