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