A very performant and light (2mb in memory) link shortener and tracker. Written in Rust and React and uses Postgres/SQLite.
0
fork

Configure Feed

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

at ffe0e9479b78511a03edb1b83c08c669a0937736 3077 lines 76 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "SimpleLink" 7version = "0.1.0" 8dependencies = [ 9 "actix-cors", 10 "actix-web", 11 "anyhow", 12 "argon2", 13 "base62", 14 "chrono", 15 "clap", 16 "dotenv", 17 "jsonwebtoken", 18 "lazy_static", 19 "regex", 20 "serde", 21 "serde_json", 22 "sqlx", 23 "thiserror 1.0.69", 24 "tokio", 25 "tracing", 26 "tracing-subscriber", 27 "uuid", 28] 29 30[[package]] 31name = "actix-codec" 32version = "0.5.2" 33source = "registry+https://github.com/rust-lang/crates.io-index" 34checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" 35dependencies = [ 36 "bitflags", 37 "bytes", 38 "futures-core", 39 "futures-sink", 40 "memchr", 41 "pin-project-lite", 42 "tokio", 43 "tokio-util", 44 "tracing", 45] 46 47[[package]] 48name = "actix-cors" 49version = "0.6.5" 50source = "registry+https://github.com/rust-lang/crates.io-index" 51checksum = "0346d8c1f762b41b458ed3145eea914966bb9ad20b9be0d6d463b20d45586370" 52dependencies = [ 53 "actix-utils", 54 "actix-web", 55 "derive_more", 56 "futures-util", 57 "log", 58 "once_cell", 59 "smallvec", 60] 61 62[[package]] 63name = "actix-http" 64version = "3.9.0" 65source = "registry+https://github.com/rust-lang/crates.io-index" 66checksum = "d48f96fc3003717aeb9856ca3d02a8c7de502667ad76eeacd830b48d2e91fac4" 67dependencies = [ 68 "actix-codec", 69 "actix-rt", 70 "actix-service", 71 "actix-utils", 72 "ahash", 73 "base64 0.22.1", 74 "bitflags", 75 "brotli", 76 "bytes", 77 "bytestring", 78 "derive_more", 79 "encoding_rs", 80 "flate2", 81 "futures-core", 82 "h2", 83 "http", 84 "httparse", 85 "httpdate", 86 "itoa", 87 "language-tags", 88 "local-channel", 89 "mime", 90 "percent-encoding", 91 "pin-project-lite", 92 "rand", 93 "sha1", 94 "smallvec", 95 "tokio", 96 "tokio-util", 97 "tracing", 98 "zstd", 99] 100 101[[package]] 102name = "actix-macros" 103version = "0.2.4" 104source = "registry+https://github.com/rust-lang/crates.io-index" 105checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" 106dependencies = [ 107 "quote", 108 "syn", 109] 110 111[[package]] 112name = "actix-router" 113version = "0.5.3" 114source = "registry+https://github.com/rust-lang/crates.io-index" 115checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8" 116dependencies = [ 117 "bytestring", 118 "cfg-if", 119 "http", 120 "regex", 121 "regex-lite", 122 "serde", 123 "tracing", 124] 125 126[[package]] 127name = "actix-rt" 128version = "2.10.0" 129source = "registry+https://github.com/rust-lang/crates.io-index" 130checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208" 131dependencies = [ 132 "futures-core", 133 "tokio", 134] 135 136[[package]] 137name = "actix-server" 138version = "2.5.0" 139source = "registry+https://github.com/rust-lang/crates.io-index" 140checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894" 141dependencies = [ 142 "actix-rt", 143 "actix-service", 144 "actix-utils", 145 "futures-core", 146 "futures-util", 147 "mio", 148 "socket2", 149 "tokio", 150 "tracing", 151] 152 153[[package]] 154name = "actix-service" 155version = "2.0.2" 156source = "registry+https://github.com/rust-lang/crates.io-index" 157checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a" 158dependencies = [ 159 "futures-core", 160 "paste", 161 "pin-project-lite", 162] 163 164[[package]] 165name = "actix-utils" 166version = "3.0.1" 167source = "registry+https://github.com/rust-lang/crates.io-index" 168checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8" 169dependencies = [ 170 "local-waker", 171 "pin-project-lite", 172] 173 174[[package]] 175name = "actix-web" 176version = "4.9.0" 177source = "registry+https://github.com/rust-lang/crates.io-index" 178checksum = "9180d76e5cc7ccbc4d60a506f2c727730b154010262df5b910eb17dbe4b8cb38" 179dependencies = [ 180 "actix-codec", 181 "actix-http", 182 "actix-macros", 183 "actix-router", 184 "actix-rt", 185 "actix-server", 186 "actix-service", 187 "actix-utils", 188 "actix-web-codegen", 189 "ahash", 190 "bytes", 191 "bytestring", 192 "cfg-if", 193 "cookie", 194 "derive_more", 195 "encoding_rs", 196 "futures-core", 197 "futures-util", 198 "impl-more", 199 "itoa", 200 "language-tags", 201 "log", 202 "mime", 203 "once_cell", 204 "pin-project-lite", 205 "regex", 206 "regex-lite", 207 "serde", 208 "serde_json", 209 "serde_urlencoded", 210 "smallvec", 211 "socket2", 212 "time", 213 "url", 214] 215 216[[package]] 217name = "actix-web-codegen" 218version = "4.3.0" 219source = "registry+https://github.com/rust-lang/crates.io-index" 220checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8" 221dependencies = [ 222 "actix-router", 223 "proc-macro2", 224 "quote", 225 "syn", 226] 227 228[[package]] 229name = "addr2line" 230version = "0.24.2" 231source = "registry+https://github.com/rust-lang/crates.io-index" 232checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 233dependencies = [ 234 "gimli", 235] 236 237[[package]] 238name = "adler2" 239version = "2.0.0" 240source = "registry+https://github.com/rust-lang/crates.io-index" 241checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 242 243[[package]] 244name = "ahash" 245version = "0.8.11" 246source = "registry+https://github.com/rust-lang/crates.io-index" 247checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 248dependencies = [ 249 "cfg-if", 250 "getrandom", 251 "once_cell", 252 "version_check", 253 "zerocopy", 254] 255 256[[package]] 257name = "aho-corasick" 258version = "1.1.3" 259source = "registry+https://github.com/rust-lang/crates.io-index" 260checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 261dependencies = [ 262 "memchr", 263] 264 265[[package]] 266name = "alloc-no-stdlib" 267version = "2.0.4" 268source = "registry+https://github.com/rust-lang/crates.io-index" 269checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 270 271[[package]] 272name = "alloc-stdlib" 273version = "0.2.2" 274source = "registry+https://github.com/rust-lang/crates.io-index" 275checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 276dependencies = [ 277 "alloc-no-stdlib", 278] 279 280[[package]] 281name = "allocator-api2" 282version = "0.2.21" 283source = "registry+https://github.com/rust-lang/crates.io-index" 284checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 285 286[[package]] 287name = "android-tzdata" 288version = "0.1.1" 289source = "registry+https://github.com/rust-lang/crates.io-index" 290checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 291 292[[package]] 293name = "android_system_properties" 294version = "0.1.5" 295source = "registry+https://github.com/rust-lang/crates.io-index" 296checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 297dependencies = [ 298 "libc", 299] 300 301[[package]] 302name = "anstream" 303version = "0.6.18" 304source = "registry+https://github.com/rust-lang/crates.io-index" 305checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" 306dependencies = [ 307 "anstyle", 308 "anstyle-parse", 309 "anstyle-query", 310 "anstyle-wincon", 311 "colorchoice", 312 "is_terminal_polyfill", 313 "utf8parse", 314] 315 316[[package]] 317name = "anstyle" 318version = "1.0.10" 319source = "registry+https://github.com/rust-lang/crates.io-index" 320checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" 321 322[[package]] 323name = "anstyle-parse" 324version = "0.2.6" 325source = "registry+https://github.com/rust-lang/crates.io-index" 326checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" 327dependencies = [ 328 "utf8parse", 329] 330 331[[package]] 332name = "anstyle-query" 333version = "1.1.2" 334source = "registry+https://github.com/rust-lang/crates.io-index" 335checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" 336dependencies = [ 337 "windows-sys 0.59.0", 338] 339 340[[package]] 341name = "anstyle-wincon" 342version = "3.0.7" 343source = "registry+https://github.com/rust-lang/crates.io-index" 344checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e" 345dependencies = [ 346 "anstyle", 347 "once_cell", 348 "windows-sys 0.59.0", 349] 350 351[[package]] 352name = "anyhow" 353version = "1.0.95" 354source = "registry+https://github.com/rust-lang/crates.io-index" 355checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" 356 357[[package]] 358name = "argon2" 359version = "0.5.3" 360source = "registry+https://github.com/rust-lang/crates.io-index" 361checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072" 362dependencies = [ 363 "base64ct", 364 "blake2", 365 "cpufeatures", 366 "password-hash", 367] 368 369[[package]] 370name = "atoi" 371version = "2.0.0" 372source = "registry+https://github.com/rust-lang/crates.io-index" 373checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" 374dependencies = [ 375 "num-traits", 376] 377 378[[package]] 379name = "autocfg" 380version = "1.4.0" 381source = "registry+https://github.com/rust-lang/crates.io-index" 382checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 383 384[[package]] 385name = "backtrace" 386version = "0.3.74" 387source = "registry+https://github.com/rust-lang/crates.io-index" 388checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" 389dependencies = [ 390 "addr2line", 391 "cfg-if", 392 "libc", 393 "miniz_oxide", 394 "object", 395 "rustc-demangle", 396 "windows-targets 0.52.6", 397] 398 399[[package]] 400name = "base62" 401version = "2.2.1" 402source = "registry+https://github.com/rust-lang/crates.io-index" 403checksum = "10e52a7bcb1d6beebee21fb5053af9e3cbb7a7ed1a4909e534040e676437ab1f" 404dependencies = [ 405 "rustversion", 406] 407 408[[package]] 409name = "base64" 410version = "0.21.7" 411source = "registry+https://github.com/rust-lang/crates.io-index" 412checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 413 414[[package]] 415name = "base64" 416version = "0.22.1" 417source = "registry+https://github.com/rust-lang/crates.io-index" 418checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 419 420[[package]] 421name = "base64ct" 422version = "1.6.0" 423source = "registry+https://github.com/rust-lang/crates.io-index" 424checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 425 426[[package]] 427name = "bitflags" 428version = "2.8.0" 429source = "registry+https://github.com/rust-lang/crates.io-index" 430checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" 431dependencies = [ 432 "serde", 433] 434 435[[package]] 436name = "blake2" 437version = "0.10.6" 438source = "registry+https://github.com/rust-lang/crates.io-index" 439checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" 440dependencies = [ 441 "digest", 442] 443 444[[package]] 445name = "block-buffer" 446version = "0.10.4" 447source = "registry+https://github.com/rust-lang/crates.io-index" 448checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 449dependencies = [ 450 "generic-array", 451] 452 453[[package]] 454name = "brotli" 455version = "6.0.0" 456source = "registry+https://github.com/rust-lang/crates.io-index" 457checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" 458dependencies = [ 459 "alloc-no-stdlib", 460 "alloc-stdlib", 461 "brotli-decompressor", 462] 463 464[[package]] 465name = "brotli-decompressor" 466version = "4.0.2" 467source = "registry+https://github.com/rust-lang/crates.io-index" 468checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37" 469dependencies = [ 470 "alloc-no-stdlib", 471 "alloc-stdlib", 472] 473 474[[package]] 475name = "bumpalo" 476version = "3.16.0" 477source = "registry+https://github.com/rust-lang/crates.io-index" 478checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 479 480[[package]] 481name = "byteorder" 482version = "1.5.0" 483source = "registry+https://github.com/rust-lang/crates.io-index" 484checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 485 486[[package]] 487name = "bytes" 488version = "1.9.0" 489source = "registry+https://github.com/rust-lang/crates.io-index" 490checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b" 491 492[[package]] 493name = "bytestring" 494version = "1.4.0" 495source = "registry+https://github.com/rust-lang/crates.io-index" 496checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f" 497dependencies = [ 498 "bytes", 499] 500 501[[package]] 502name = "cc" 503version = "1.2.10" 504source = "registry+https://github.com/rust-lang/crates.io-index" 505checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229" 506dependencies = [ 507 "jobserver", 508 "libc", 509 "shlex", 510] 511 512[[package]] 513name = "cfg-if" 514version = "1.0.0" 515source = "registry+https://github.com/rust-lang/crates.io-index" 516checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 517 518[[package]] 519name = "chrono" 520version = "0.4.39" 521source = "registry+https://github.com/rust-lang/crates.io-index" 522checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825" 523dependencies = [ 524 "android-tzdata", 525 "iana-time-zone", 526 "js-sys", 527 "num-traits", 528 "serde", 529 "wasm-bindgen", 530 "windows-targets 0.52.6", 531] 532 533[[package]] 534name = "clap" 535version = "4.5.27" 536source = "registry+https://github.com/rust-lang/crates.io-index" 537checksum = "769b0145982b4b48713e01ec42d61614425f27b7058bda7180a3a41f30104796" 538dependencies = [ 539 "clap_builder", 540 "clap_derive", 541] 542 543[[package]] 544name = "clap_builder" 545version = "4.5.27" 546source = "registry+https://github.com/rust-lang/crates.io-index" 547checksum = "1b26884eb4b57140e4d2d93652abfa49498b938b3c9179f9fc487b0acc3edad7" 548dependencies = [ 549 "anstream", 550 "anstyle", 551 "clap_lex", 552 "strsim", 553] 554 555[[package]] 556name = "clap_derive" 557version = "4.5.24" 558source = "registry+https://github.com/rust-lang/crates.io-index" 559checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c" 560dependencies = [ 561 "heck", 562 "proc-macro2", 563 "quote", 564 "syn", 565] 566 567[[package]] 568name = "clap_lex" 569version = "0.7.4" 570source = "registry+https://github.com/rust-lang/crates.io-index" 571checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" 572 573[[package]] 574name = "colorchoice" 575version = "1.0.3" 576source = "registry+https://github.com/rust-lang/crates.io-index" 577checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" 578 579[[package]] 580name = "concurrent-queue" 581version = "2.5.0" 582source = "registry+https://github.com/rust-lang/crates.io-index" 583checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 584dependencies = [ 585 "crossbeam-utils", 586] 587 588[[package]] 589name = "const-oid" 590version = "0.9.6" 591source = "registry+https://github.com/rust-lang/crates.io-index" 592checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 593 594[[package]] 595name = "convert_case" 596version = "0.4.0" 597source = "registry+https://github.com/rust-lang/crates.io-index" 598checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 599 600[[package]] 601name = "cookie" 602version = "0.16.2" 603source = "registry+https://github.com/rust-lang/crates.io-index" 604checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" 605dependencies = [ 606 "percent-encoding", 607 "time", 608 "version_check", 609] 610 611[[package]] 612name = "core-foundation" 613version = "0.9.4" 614source = "registry+https://github.com/rust-lang/crates.io-index" 615checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 616dependencies = [ 617 "core-foundation-sys", 618 "libc", 619] 620 621[[package]] 622name = "core-foundation-sys" 623version = "0.8.7" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 626 627[[package]] 628name = "cpufeatures" 629version = "0.2.17" 630source = "registry+https://github.com/rust-lang/crates.io-index" 631checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 632dependencies = [ 633 "libc", 634] 635 636[[package]] 637name = "crc" 638version = "3.2.1" 639source = "registry+https://github.com/rust-lang/crates.io-index" 640checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636" 641dependencies = [ 642 "crc-catalog", 643] 644 645[[package]] 646name = "crc-catalog" 647version = "2.4.0" 648source = "registry+https://github.com/rust-lang/crates.io-index" 649checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" 650 651[[package]] 652name = "crc32fast" 653version = "1.4.2" 654source = "registry+https://github.com/rust-lang/crates.io-index" 655checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 656dependencies = [ 657 "cfg-if", 658] 659 660[[package]] 661name = "crossbeam-queue" 662version = "0.3.12" 663source = "registry+https://github.com/rust-lang/crates.io-index" 664checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" 665dependencies = [ 666 "crossbeam-utils", 667] 668 669[[package]] 670name = "crossbeam-utils" 671version = "0.8.21" 672source = "registry+https://github.com/rust-lang/crates.io-index" 673checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 674 675[[package]] 676name = "crypto-common" 677version = "0.1.6" 678source = "registry+https://github.com/rust-lang/crates.io-index" 679checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 680dependencies = [ 681 "generic-array", 682 "typenum", 683] 684 685[[package]] 686name = "der" 687version = "0.7.9" 688source = "registry+https://github.com/rust-lang/crates.io-index" 689checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" 690dependencies = [ 691 "const-oid", 692 "pem-rfc7468", 693 "zeroize", 694] 695 696[[package]] 697name = "deranged" 698version = "0.3.11" 699source = "registry+https://github.com/rust-lang/crates.io-index" 700checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 701dependencies = [ 702 "powerfmt", 703] 704 705[[package]] 706name = "derive_more" 707version = "0.99.18" 708source = "registry+https://github.com/rust-lang/crates.io-index" 709checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" 710dependencies = [ 711 "convert_case", 712 "proc-macro2", 713 "quote", 714 "rustc_version", 715 "syn", 716] 717 718[[package]] 719name = "digest" 720version = "0.10.7" 721source = "registry+https://github.com/rust-lang/crates.io-index" 722checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 723dependencies = [ 724 "block-buffer", 725 "const-oid", 726 "crypto-common", 727 "subtle", 728] 729 730[[package]] 731name = "displaydoc" 732version = "0.2.5" 733source = "registry+https://github.com/rust-lang/crates.io-index" 734checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 735dependencies = [ 736 "proc-macro2", 737 "quote", 738 "syn", 739] 740 741[[package]] 742name = "dotenv" 743version = "0.15.0" 744source = "registry+https://github.com/rust-lang/crates.io-index" 745checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f" 746 747[[package]] 748name = "dotenvy" 749version = "0.15.7" 750source = "registry+https://github.com/rust-lang/crates.io-index" 751checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 752 753[[package]] 754name = "either" 755version = "1.13.0" 756source = "registry+https://github.com/rust-lang/crates.io-index" 757checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 758dependencies = [ 759 "serde", 760] 761 762[[package]] 763name = "encoding_rs" 764version = "0.8.35" 765source = "registry+https://github.com/rust-lang/crates.io-index" 766checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 767dependencies = [ 768 "cfg-if", 769] 770 771[[package]] 772name = "equivalent" 773version = "1.0.1" 774source = "registry+https://github.com/rust-lang/crates.io-index" 775checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 776 777[[package]] 778name = "errno" 779version = "0.3.10" 780source = "registry+https://github.com/rust-lang/crates.io-index" 781checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" 782dependencies = [ 783 "libc", 784 "windows-sys 0.59.0", 785] 786 787[[package]] 788name = "etcetera" 789version = "0.8.0" 790source = "registry+https://github.com/rust-lang/crates.io-index" 791checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" 792dependencies = [ 793 "cfg-if", 794 "home", 795 "windows-sys 0.48.0", 796] 797 798[[package]] 799name = "event-listener" 800version = "5.4.0" 801source = "registry+https://github.com/rust-lang/crates.io-index" 802checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" 803dependencies = [ 804 "concurrent-queue", 805 "parking", 806 "pin-project-lite", 807] 808 809[[package]] 810name = "fastrand" 811version = "2.3.0" 812source = "registry+https://github.com/rust-lang/crates.io-index" 813checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 814 815[[package]] 816name = "flate2" 817version = "1.0.35" 818source = "registry+https://github.com/rust-lang/crates.io-index" 819checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" 820dependencies = [ 821 "crc32fast", 822 "miniz_oxide", 823] 824 825[[package]] 826name = "flume" 827version = "0.11.1" 828source = "registry+https://github.com/rust-lang/crates.io-index" 829checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" 830dependencies = [ 831 "futures-core", 832 "futures-sink", 833 "spin", 834] 835 836[[package]] 837name = "fnv" 838version = "1.0.7" 839source = "registry+https://github.com/rust-lang/crates.io-index" 840checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 841 842[[package]] 843name = "foreign-types" 844version = "0.3.2" 845source = "registry+https://github.com/rust-lang/crates.io-index" 846checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 847dependencies = [ 848 "foreign-types-shared", 849] 850 851[[package]] 852name = "foreign-types-shared" 853version = "0.1.1" 854source = "registry+https://github.com/rust-lang/crates.io-index" 855checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 856 857[[package]] 858name = "form_urlencoded" 859version = "1.2.1" 860source = "registry+https://github.com/rust-lang/crates.io-index" 861checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 862dependencies = [ 863 "percent-encoding", 864] 865 866[[package]] 867name = "futures-channel" 868version = "0.3.31" 869source = "registry+https://github.com/rust-lang/crates.io-index" 870checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 871dependencies = [ 872 "futures-core", 873 "futures-sink", 874] 875 876[[package]] 877name = "futures-core" 878version = "0.3.31" 879source = "registry+https://github.com/rust-lang/crates.io-index" 880checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 881 882[[package]] 883name = "futures-executor" 884version = "0.3.31" 885source = "registry+https://github.com/rust-lang/crates.io-index" 886checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 887dependencies = [ 888 "futures-core", 889 "futures-task", 890 "futures-util", 891] 892 893[[package]] 894name = "futures-intrusive" 895version = "0.5.0" 896source = "registry+https://github.com/rust-lang/crates.io-index" 897checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" 898dependencies = [ 899 "futures-core", 900 "lock_api", 901 "parking_lot", 902] 903 904[[package]] 905name = "futures-io" 906version = "0.3.31" 907source = "registry+https://github.com/rust-lang/crates.io-index" 908checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 909 910[[package]] 911name = "futures-sink" 912version = "0.3.31" 913source = "registry+https://github.com/rust-lang/crates.io-index" 914checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 915 916[[package]] 917name = "futures-task" 918version = "0.3.31" 919source = "registry+https://github.com/rust-lang/crates.io-index" 920checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 921 922[[package]] 923name = "futures-util" 924version = "0.3.31" 925source = "registry+https://github.com/rust-lang/crates.io-index" 926checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 927dependencies = [ 928 "futures-core", 929 "futures-io", 930 "futures-sink", 931 "futures-task", 932 "memchr", 933 "pin-project-lite", 934 "pin-utils", 935 "slab", 936] 937 938[[package]] 939name = "generic-array" 940version = "0.14.7" 941source = "registry+https://github.com/rust-lang/crates.io-index" 942checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 943dependencies = [ 944 "typenum", 945 "version_check", 946] 947 948[[package]] 949name = "getrandom" 950version = "0.2.15" 951source = "registry+https://github.com/rust-lang/crates.io-index" 952checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 953dependencies = [ 954 "cfg-if", 955 "js-sys", 956 "libc", 957 "wasi", 958 "wasm-bindgen", 959] 960 961[[package]] 962name = "gimli" 963version = "0.31.1" 964source = "registry+https://github.com/rust-lang/crates.io-index" 965checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 966 967[[package]] 968name = "h2" 969version = "0.3.26" 970source = "registry+https://github.com/rust-lang/crates.io-index" 971checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 972dependencies = [ 973 "bytes", 974 "fnv", 975 "futures-core", 976 "futures-sink", 977 "futures-util", 978 "http", 979 "indexmap", 980 "slab", 981 "tokio", 982 "tokio-util", 983 "tracing", 984] 985 986[[package]] 987name = "hashbrown" 988version = "0.14.5" 989source = "registry+https://github.com/rust-lang/crates.io-index" 990checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 991dependencies = [ 992 "ahash", 993 "allocator-api2", 994] 995 996[[package]] 997name = "hashbrown" 998version = "0.15.2" 999source = "registry+https://github.com/rust-lang/crates.io-index" 1000checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" 1001 1002[[package]] 1003name = "hashlink" 1004version = "0.9.1" 1005source = "registry+https://github.com/rust-lang/crates.io-index" 1006checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af" 1007dependencies = [ 1008 "hashbrown 0.14.5", 1009] 1010 1011[[package]] 1012name = "heck" 1013version = "0.5.0" 1014source = "registry+https://github.com/rust-lang/crates.io-index" 1015checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1016 1017[[package]] 1018name = "hex" 1019version = "0.4.3" 1020source = "registry+https://github.com/rust-lang/crates.io-index" 1021checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1022 1023[[package]] 1024name = "hkdf" 1025version = "0.12.4" 1026source = "registry+https://github.com/rust-lang/crates.io-index" 1027checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" 1028dependencies = [ 1029 "hmac", 1030] 1031 1032[[package]] 1033name = "hmac" 1034version = "0.12.1" 1035source = "registry+https://github.com/rust-lang/crates.io-index" 1036checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1037dependencies = [ 1038 "digest", 1039] 1040 1041[[package]] 1042name = "home" 1043version = "0.5.11" 1044source = "registry+https://github.com/rust-lang/crates.io-index" 1045checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" 1046dependencies = [ 1047 "windows-sys 0.59.0", 1048] 1049 1050[[package]] 1051name = "http" 1052version = "0.2.12" 1053source = "registry+https://github.com/rust-lang/crates.io-index" 1054checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 1055dependencies = [ 1056 "bytes", 1057 "fnv", 1058 "itoa", 1059] 1060 1061[[package]] 1062name = "httparse" 1063version = "1.9.5" 1064source = "registry+https://github.com/rust-lang/crates.io-index" 1065checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" 1066 1067[[package]] 1068name = "httpdate" 1069version = "1.0.3" 1070source = "registry+https://github.com/rust-lang/crates.io-index" 1071checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1072 1073[[package]] 1074name = "iana-time-zone" 1075version = "0.1.61" 1076source = "registry+https://github.com/rust-lang/crates.io-index" 1077checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" 1078dependencies = [ 1079 "android_system_properties", 1080 "core-foundation-sys", 1081 "iana-time-zone-haiku", 1082 "js-sys", 1083 "wasm-bindgen", 1084 "windows-core", 1085] 1086 1087[[package]] 1088name = "iana-time-zone-haiku" 1089version = "0.1.2" 1090source = "registry+https://github.com/rust-lang/crates.io-index" 1091checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1092dependencies = [ 1093 "cc", 1094] 1095 1096[[package]] 1097name = "icu_collections" 1098version = "1.5.0" 1099source = "registry+https://github.com/rust-lang/crates.io-index" 1100checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" 1101dependencies = [ 1102 "displaydoc", 1103 "yoke", 1104 "zerofrom", 1105 "zerovec", 1106] 1107 1108[[package]] 1109name = "icu_locid" 1110version = "1.5.0" 1111source = "registry+https://github.com/rust-lang/crates.io-index" 1112checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" 1113dependencies = [ 1114 "displaydoc", 1115 "litemap", 1116 "tinystr", 1117 "writeable", 1118 "zerovec", 1119] 1120 1121[[package]] 1122name = "icu_locid_transform" 1123version = "1.5.0" 1124source = "registry+https://github.com/rust-lang/crates.io-index" 1125checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" 1126dependencies = [ 1127 "displaydoc", 1128 "icu_locid", 1129 "icu_locid_transform_data", 1130 "icu_provider", 1131 "tinystr", 1132 "zerovec", 1133] 1134 1135[[package]] 1136name = "icu_locid_transform_data" 1137version = "1.5.0" 1138source = "registry+https://github.com/rust-lang/crates.io-index" 1139checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" 1140 1141[[package]] 1142name = "icu_normalizer" 1143version = "1.5.0" 1144source = "registry+https://github.com/rust-lang/crates.io-index" 1145checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" 1146dependencies = [ 1147 "displaydoc", 1148 "icu_collections", 1149 "icu_normalizer_data", 1150 "icu_properties", 1151 "icu_provider", 1152 "smallvec", 1153 "utf16_iter", 1154 "utf8_iter", 1155 "write16", 1156 "zerovec", 1157] 1158 1159[[package]] 1160name = "icu_normalizer_data" 1161version = "1.5.0" 1162source = "registry+https://github.com/rust-lang/crates.io-index" 1163checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" 1164 1165[[package]] 1166name = "icu_properties" 1167version = "1.5.1" 1168source = "registry+https://github.com/rust-lang/crates.io-index" 1169checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" 1170dependencies = [ 1171 "displaydoc", 1172 "icu_collections", 1173 "icu_locid_transform", 1174 "icu_properties_data", 1175 "icu_provider", 1176 "tinystr", 1177 "zerovec", 1178] 1179 1180[[package]] 1181name = "icu_properties_data" 1182version = "1.5.0" 1183source = "registry+https://github.com/rust-lang/crates.io-index" 1184checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" 1185 1186[[package]] 1187name = "icu_provider" 1188version = "1.5.0" 1189source = "registry+https://github.com/rust-lang/crates.io-index" 1190checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" 1191dependencies = [ 1192 "displaydoc", 1193 "icu_locid", 1194 "icu_provider_macros", 1195 "stable_deref_trait", 1196 "tinystr", 1197 "writeable", 1198 "yoke", 1199 "zerofrom", 1200 "zerovec", 1201] 1202 1203[[package]] 1204name = "icu_provider_macros" 1205version = "1.5.0" 1206source = "registry+https://github.com/rust-lang/crates.io-index" 1207checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" 1208dependencies = [ 1209 "proc-macro2", 1210 "quote", 1211 "syn", 1212] 1213 1214[[package]] 1215name = "idna" 1216version = "1.0.3" 1217source = "registry+https://github.com/rust-lang/crates.io-index" 1218checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 1219dependencies = [ 1220 "idna_adapter", 1221 "smallvec", 1222 "utf8_iter", 1223] 1224 1225[[package]] 1226name = "idna_adapter" 1227version = "1.2.0" 1228source = "registry+https://github.com/rust-lang/crates.io-index" 1229checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71" 1230dependencies = [ 1231 "icu_normalizer", 1232 "icu_properties", 1233] 1234 1235[[package]] 1236name = "impl-more" 1237version = "0.1.9" 1238source = "registry+https://github.com/rust-lang/crates.io-index" 1239checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" 1240 1241[[package]] 1242name = "indexmap" 1243version = "2.7.1" 1244source = "registry+https://github.com/rust-lang/crates.io-index" 1245checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652" 1246dependencies = [ 1247 "equivalent", 1248 "hashbrown 0.15.2", 1249] 1250 1251[[package]] 1252name = "is_terminal_polyfill" 1253version = "1.70.1" 1254source = "registry+https://github.com/rust-lang/crates.io-index" 1255checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 1256 1257[[package]] 1258name = "itoa" 1259version = "1.0.14" 1260source = "registry+https://github.com/rust-lang/crates.io-index" 1261checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" 1262 1263[[package]] 1264name = "jobserver" 1265version = "0.1.32" 1266source = "registry+https://github.com/rust-lang/crates.io-index" 1267checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" 1268dependencies = [ 1269 "libc", 1270] 1271 1272[[package]] 1273name = "js-sys" 1274version = "0.3.77" 1275source = "registry+https://github.com/rust-lang/crates.io-index" 1276checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 1277dependencies = [ 1278 "once_cell", 1279 "wasm-bindgen", 1280] 1281 1282[[package]] 1283name = "jsonwebtoken" 1284version = "9.3.0" 1285source = "registry+https://github.com/rust-lang/crates.io-index" 1286checksum = "b9ae10193d25051e74945f1ea2d0b42e03cc3b890f7e4cc5faa44997d808193f" 1287dependencies = [ 1288 "base64 0.21.7", 1289 "js-sys", 1290 "pem", 1291 "ring", 1292 "serde", 1293 "serde_json", 1294 "simple_asn1", 1295] 1296 1297[[package]] 1298name = "language-tags" 1299version = "0.3.2" 1300source = "registry+https://github.com/rust-lang/crates.io-index" 1301checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" 1302 1303[[package]] 1304name = "lazy_static" 1305version = "1.5.0" 1306source = "registry+https://github.com/rust-lang/crates.io-index" 1307checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1308dependencies = [ 1309 "spin", 1310] 1311 1312[[package]] 1313name = "libc" 1314version = "0.2.169" 1315source = "registry+https://github.com/rust-lang/crates.io-index" 1316checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" 1317 1318[[package]] 1319name = "libm" 1320version = "0.2.11" 1321source = "registry+https://github.com/rust-lang/crates.io-index" 1322checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" 1323 1324[[package]] 1325name = "libsqlite3-sys" 1326version = "0.30.1" 1327source = "registry+https://github.com/rust-lang/crates.io-index" 1328checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" 1329dependencies = [ 1330 "cc", 1331 "pkg-config", 1332 "vcpkg", 1333] 1334 1335[[package]] 1336name = "linux-raw-sys" 1337version = "0.4.15" 1338source = "registry+https://github.com/rust-lang/crates.io-index" 1339checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" 1340 1341[[package]] 1342name = "litemap" 1343version = "0.7.4" 1344source = "registry+https://github.com/rust-lang/crates.io-index" 1345checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" 1346 1347[[package]] 1348name = "local-channel" 1349version = "0.1.5" 1350source = "registry+https://github.com/rust-lang/crates.io-index" 1351checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" 1352dependencies = [ 1353 "futures-core", 1354 "futures-sink", 1355 "local-waker", 1356] 1357 1358[[package]] 1359name = "local-waker" 1360version = "0.1.4" 1361source = "registry+https://github.com/rust-lang/crates.io-index" 1362checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" 1363 1364[[package]] 1365name = "lock_api" 1366version = "0.4.12" 1367source = "registry+https://github.com/rust-lang/crates.io-index" 1368checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 1369dependencies = [ 1370 "autocfg", 1371 "scopeguard", 1372] 1373 1374[[package]] 1375name = "log" 1376version = "0.4.25" 1377source = "registry+https://github.com/rust-lang/crates.io-index" 1378checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f" 1379 1380[[package]] 1381name = "md-5" 1382version = "0.10.6" 1383source = "registry+https://github.com/rust-lang/crates.io-index" 1384checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 1385dependencies = [ 1386 "cfg-if", 1387 "digest", 1388] 1389 1390[[package]] 1391name = "memchr" 1392version = "2.7.4" 1393source = "registry+https://github.com/rust-lang/crates.io-index" 1394checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 1395 1396[[package]] 1397name = "mime" 1398version = "0.3.17" 1399source = "registry+https://github.com/rust-lang/crates.io-index" 1400checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1401 1402[[package]] 1403name = "minimal-lexical" 1404version = "0.2.1" 1405source = "registry+https://github.com/rust-lang/crates.io-index" 1406checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1407 1408[[package]] 1409name = "miniz_oxide" 1410version = "0.8.3" 1411source = "registry+https://github.com/rust-lang/crates.io-index" 1412checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924" 1413dependencies = [ 1414 "adler2", 1415] 1416 1417[[package]] 1418name = "mio" 1419version = "1.0.3" 1420source = "registry+https://github.com/rust-lang/crates.io-index" 1421checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" 1422dependencies = [ 1423 "libc", 1424 "log", 1425 "wasi", 1426 "windows-sys 0.52.0", 1427] 1428 1429[[package]] 1430name = "native-tls" 1431version = "0.2.12" 1432source = "registry+https://github.com/rust-lang/crates.io-index" 1433checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" 1434dependencies = [ 1435 "libc", 1436 "log", 1437 "openssl", 1438 "openssl-probe", 1439 "openssl-sys", 1440 "schannel", 1441 "security-framework", 1442 "security-framework-sys", 1443 "tempfile", 1444] 1445 1446[[package]] 1447name = "nom" 1448version = "7.1.3" 1449source = "registry+https://github.com/rust-lang/crates.io-index" 1450checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1451dependencies = [ 1452 "memchr", 1453 "minimal-lexical", 1454] 1455 1456[[package]] 1457name = "nu-ansi-term" 1458version = "0.46.0" 1459source = "registry+https://github.com/rust-lang/crates.io-index" 1460checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1461dependencies = [ 1462 "overload", 1463 "winapi", 1464] 1465 1466[[package]] 1467name = "num-bigint" 1468version = "0.4.6" 1469source = "registry+https://github.com/rust-lang/crates.io-index" 1470checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 1471dependencies = [ 1472 "num-integer", 1473 "num-traits", 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", 1489 "smallvec", 1490 "zeroize", 1491] 1492 1493[[package]] 1494name = "num-conv" 1495version = "0.1.0" 1496source = "registry+https://github.com/rust-lang/crates.io-index" 1497checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1498 1499[[package]] 1500name = "num-integer" 1501version = "0.1.46" 1502source = "registry+https://github.com/rust-lang/crates.io-index" 1503checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 1504dependencies = [ 1505 "num-traits", 1506] 1507 1508[[package]] 1509name = "num-iter" 1510version = "0.1.45" 1511source = "registry+https://github.com/rust-lang/crates.io-index" 1512checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 1513dependencies = [ 1514 "autocfg", 1515 "num-integer", 1516 "num-traits", 1517] 1518 1519[[package]] 1520name = "num-traits" 1521version = "0.2.19" 1522source = "registry+https://github.com/rust-lang/crates.io-index" 1523checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1524dependencies = [ 1525 "autocfg", 1526 "libm", 1527] 1528 1529[[package]] 1530name = "object" 1531version = "0.36.7" 1532source = "registry+https://github.com/rust-lang/crates.io-index" 1533checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" 1534dependencies = [ 1535 "memchr", 1536] 1537 1538[[package]] 1539name = "once_cell" 1540version = "1.20.2" 1541source = "registry+https://github.com/rust-lang/crates.io-index" 1542checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" 1543 1544[[package]] 1545name = "openssl" 1546version = "0.10.68" 1547source = "registry+https://github.com/rust-lang/crates.io-index" 1548checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5" 1549dependencies = [ 1550 "bitflags", 1551 "cfg-if", 1552 "foreign-types", 1553 "libc", 1554 "once_cell", 1555 "openssl-macros", 1556 "openssl-sys", 1557] 1558 1559[[package]] 1560name = "openssl-macros" 1561version = "0.1.1" 1562source = "registry+https://github.com/rust-lang/crates.io-index" 1563checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 1564dependencies = [ 1565 "proc-macro2", 1566 "quote", 1567 "syn", 1568] 1569 1570[[package]] 1571name = "openssl-probe" 1572version = "0.1.6" 1573source = "registry+https://github.com/rust-lang/crates.io-index" 1574checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" 1575 1576[[package]] 1577name = "openssl-sys" 1578version = "0.9.104" 1579source = "registry+https://github.com/rust-lang/crates.io-index" 1580checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" 1581dependencies = [ 1582 "cc", 1583 "libc", 1584 "pkg-config", 1585 "vcpkg", 1586] 1587 1588[[package]] 1589name = "overload" 1590version = "0.1.1" 1591source = "registry+https://github.com/rust-lang/crates.io-index" 1592checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1593 1594[[package]] 1595name = "parking" 1596version = "2.2.1" 1597source = "registry+https://github.com/rust-lang/crates.io-index" 1598checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 1599 1600[[package]] 1601name = "parking_lot" 1602version = "0.12.3" 1603source = "registry+https://github.com/rust-lang/crates.io-index" 1604checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 1605dependencies = [ 1606 "lock_api", 1607 "parking_lot_core", 1608] 1609 1610[[package]] 1611name = "parking_lot_core" 1612version = "0.9.10" 1613source = "registry+https://github.com/rust-lang/crates.io-index" 1614checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 1615dependencies = [ 1616 "cfg-if", 1617 "libc", 1618 "redox_syscall", 1619 "smallvec", 1620 "windows-targets 0.52.6", 1621] 1622 1623[[package]] 1624name = "password-hash" 1625version = "0.5.0" 1626source = "registry+https://github.com/rust-lang/crates.io-index" 1627checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" 1628dependencies = [ 1629 "base64ct", 1630 "rand_core", 1631 "subtle", 1632] 1633 1634[[package]] 1635name = "paste" 1636version = "1.0.15" 1637source = "registry+https://github.com/rust-lang/crates.io-index" 1638checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 1639 1640[[package]] 1641name = "pem" 1642version = "3.0.4" 1643source = "registry+https://github.com/rust-lang/crates.io-index" 1644checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" 1645dependencies = [ 1646 "base64 0.22.1", 1647 "serde", 1648] 1649 1650[[package]] 1651name = "pem-rfc7468" 1652version = "0.7.0" 1653source = "registry+https://github.com/rust-lang/crates.io-index" 1654checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 1655dependencies = [ 1656 "base64ct", 1657] 1658 1659[[package]] 1660name = "percent-encoding" 1661version = "2.3.1" 1662source = "registry+https://github.com/rust-lang/crates.io-index" 1663checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 1664 1665[[package]] 1666name = "pin-project-lite" 1667version = "0.2.16" 1668source = "registry+https://github.com/rust-lang/crates.io-index" 1669checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 1670 1671[[package]] 1672name = "pin-utils" 1673version = "0.1.0" 1674source = "registry+https://github.com/rust-lang/crates.io-index" 1675checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1676 1677[[package]] 1678name = "pkcs1" 1679version = "0.7.5" 1680source = "registry+https://github.com/rust-lang/crates.io-index" 1681checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 1682dependencies = [ 1683 "der", 1684 "pkcs8", 1685 "spki", 1686] 1687 1688[[package]] 1689name = "pkcs8" 1690version = "0.10.2" 1691source = "registry+https://github.com/rust-lang/crates.io-index" 1692checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 1693dependencies = [ 1694 "der", 1695 "spki", 1696] 1697 1698[[package]] 1699name = "pkg-config" 1700version = "0.3.31" 1701source = "registry+https://github.com/rust-lang/crates.io-index" 1702checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" 1703 1704[[package]] 1705name = "powerfmt" 1706version = "0.2.0" 1707source = "registry+https://github.com/rust-lang/crates.io-index" 1708checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1709 1710[[package]] 1711name = "ppv-lite86" 1712version = "0.2.20" 1713source = "registry+https://github.com/rust-lang/crates.io-index" 1714checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" 1715dependencies = [ 1716 "zerocopy", 1717] 1718 1719[[package]] 1720name = "proc-macro2" 1721version = "1.0.93" 1722source = "registry+https://github.com/rust-lang/crates.io-index" 1723checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" 1724dependencies = [ 1725 "unicode-ident", 1726] 1727 1728[[package]] 1729name = "quote" 1730version = "1.0.38" 1731source = "registry+https://github.com/rust-lang/crates.io-index" 1732checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc" 1733dependencies = [ 1734 "proc-macro2", 1735] 1736 1737[[package]] 1738name = "rand" 1739version = "0.8.5" 1740source = "registry+https://github.com/rust-lang/crates.io-index" 1741checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1742dependencies = [ 1743 "libc", 1744 "rand_chacha", 1745 "rand_core", 1746] 1747 1748[[package]] 1749name = "rand_chacha" 1750version = "0.3.1" 1751source = "registry+https://github.com/rust-lang/crates.io-index" 1752checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1753dependencies = [ 1754 "ppv-lite86", 1755 "rand_core", 1756] 1757 1758[[package]] 1759name = "rand_core" 1760version = "0.6.4" 1761source = "registry+https://github.com/rust-lang/crates.io-index" 1762checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1763dependencies = [ 1764 "getrandom", 1765] 1766 1767[[package]] 1768name = "redox_syscall" 1769version = "0.5.8" 1770source = "registry+https://github.com/rust-lang/crates.io-index" 1771checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" 1772dependencies = [ 1773 "bitflags", 1774] 1775 1776[[package]] 1777name = "regex" 1778version = "1.11.1" 1779source = "registry+https://github.com/rust-lang/crates.io-index" 1780checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" 1781dependencies = [ 1782 "aho-corasick", 1783 "memchr", 1784 "regex-automata", 1785 "regex-syntax", 1786] 1787 1788[[package]] 1789name = "regex-automata" 1790version = "0.4.9" 1791source = "registry+https://github.com/rust-lang/crates.io-index" 1792checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" 1793dependencies = [ 1794 "aho-corasick", 1795 "memchr", 1796 "regex-syntax", 1797] 1798 1799[[package]] 1800name = "regex-lite" 1801version = "0.1.6" 1802source = "registry+https://github.com/rust-lang/crates.io-index" 1803checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" 1804 1805[[package]] 1806name = "regex-syntax" 1807version = "0.8.5" 1808source = "registry+https://github.com/rust-lang/crates.io-index" 1809checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 1810 1811[[package]] 1812name = "ring" 1813version = "0.17.8" 1814source = "registry+https://github.com/rust-lang/crates.io-index" 1815checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 1816dependencies = [ 1817 "cc", 1818 "cfg-if", 1819 "getrandom", 1820 "libc", 1821 "spin", 1822 "untrusted", 1823 "windows-sys 0.52.0", 1824] 1825 1826[[package]] 1827name = "rsa" 1828version = "0.9.7" 1829source = "registry+https://github.com/rust-lang/crates.io-index" 1830checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519" 1831dependencies = [ 1832 "const-oid", 1833 "digest", 1834 "num-bigint-dig", 1835 "num-integer", 1836 "num-traits", 1837 "pkcs1", 1838 "pkcs8", 1839 "rand_core", 1840 "signature", 1841 "spki", 1842 "subtle", 1843 "zeroize", 1844] 1845 1846[[package]] 1847name = "rustc-demangle" 1848version = "0.1.24" 1849source = "registry+https://github.com/rust-lang/crates.io-index" 1850checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 1851 1852[[package]] 1853name = "rustc_version" 1854version = "0.4.1" 1855source = "registry+https://github.com/rust-lang/crates.io-index" 1856checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 1857dependencies = [ 1858 "semver", 1859] 1860 1861[[package]] 1862name = "rustix" 1863version = "0.38.44" 1864source = "registry+https://github.com/rust-lang/crates.io-index" 1865checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" 1866dependencies = [ 1867 "bitflags", 1868 "errno", 1869 "libc", 1870 "linux-raw-sys", 1871 "windows-sys 0.59.0", 1872] 1873 1874[[package]] 1875name = "rustversion" 1876version = "1.0.19" 1877source = "registry+https://github.com/rust-lang/crates.io-index" 1878checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" 1879 1880[[package]] 1881name = "ryu" 1882version = "1.0.18" 1883source = "registry+https://github.com/rust-lang/crates.io-index" 1884checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 1885 1886[[package]] 1887name = "schannel" 1888version = "0.1.27" 1889source = "registry+https://github.com/rust-lang/crates.io-index" 1890checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" 1891dependencies = [ 1892 "windows-sys 0.59.0", 1893] 1894 1895[[package]] 1896name = "scopeguard" 1897version = "1.2.0" 1898source = "registry+https://github.com/rust-lang/crates.io-index" 1899checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1900 1901[[package]] 1902name = "security-framework" 1903version = "2.11.1" 1904source = "registry+https://github.com/rust-lang/crates.io-index" 1905checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 1906dependencies = [ 1907 "bitflags", 1908 "core-foundation", 1909 "core-foundation-sys", 1910 "libc", 1911 "security-framework-sys", 1912] 1913 1914[[package]] 1915name = "security-framework-sys" 1916version = "2.14.0" 1917source = "registry+https://github.com/rust-lang/crates.io-index" 1918checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" 1919dependencies = [ 1920 "core-foundation-sys", 1921 "libc", 1922] 1923 1924[[package]] 1925name = "semver" 1926version = "1.0.25" 1927source = "registry+https://github.com/rust-lang/crates.io-index" 1928checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03" 1929 1930[[package]] 1931name = "serde" 1932version = "1.0.217" 1933source = "registry+https://github.com/rust-lang/crates.io-index" 1934checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" 1935dependencies = [ 1936 "serde_derive", 1937] 1938 1939[[package]] 1940name = "serde_derive" 1941version = "1.0.217" 1942source = "registry+https://github.com/rust-lang/crates.io-index" 1943checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" 1944dependencies = [ 1945 "proc-macro2", 1946 "quote", 1947 "syn", 1948] 1949 1950[[package]] 1951name = "serde_json" 1952version = "1.0.137" 1953source = "registry+https://github.com/rust-lang/crates.io-index" 1954checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b" 1955dependencies = [ 1956 "itoa", 1957 "memchr", 1958 "ryu", 1959 "serde", 1960] 1961 1962[[package]] 1963name = "serde_urlencoded" 1964version = "0.7.1" 1965source = "registry+https://github.com/rust-lang/crates.io-index" 1966checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1967dependencies = [ 1968 "form_urlencoded", 1969 "itoa", 1970 "ryu", 1971 "serde", 1972] 1973 1974[[package]] 1975name = "sha1" 1976version = "0.10.6" 1977source = "registry+https://github.com/rust-lang/crates.io-index" 1978checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 1979dependencies = [ 1980 "cfg-if", 1981 "cpufeatures", 1982 "digest", 1983] 1984 1985[[package]] 1986name = "sha2" 1987version = "0.10.8" 1988source = "registry+https://github.com/rust-lang/crates.io-index" 1989checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 1990dependencies = [ 1991 "cfg-if", 1992 "cpufeatures", 1993 "digest", 1994] 1995 1996[[package]] 1997name = "sharded-slab" 1998version = "0.1.7" 1999source = "registry+https://github.com/rust-lang/crates.io-index" 2000checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 2001dependencies = [ 2002 "lazy_static", 2003] 2004 2005[[package]] 2006name = "shlex" 2007version = "1.3.0" 2008source = "registry+https://github.com/rust-lang/crates.io-index" 2009checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2010 2011[[package]] 2012name = "signal-hook-registry" 2013version = "1.4.2" 2014source = "registry+https://github.com/rust-lang/crates.io-index" 2015checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 2016dependencies = [ 2017 "libc", 2018] 2019 2020[[package]] 2021name = "signature" 2022version = "2.2.0" 2023source = "registry+https://github.com/rust-lang/crates.io-index" 2024checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 2025dependencies = [ 2026 "digest", 2027 "rand_core", 2028] 2029 2030[[package]] 2031name = "simple_asn1" 2032version = "0.6.3" 2033source = "registry+https://github.com/rust-lang/crates.io-index" 2034checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" 2035dependencies = [ 2036 "num-bigint", 2037 "num-traits", 2038 "thiserror 2.0.11", 2039 "time", 2040] 2041 2042[[package]] 2043name = "slab" 2044version = "0.4.9" 2045source = "registry+https://github.com/rust-lang/crates.io-index" 2046checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2047dependencies = [ 2048 "autocfg", 2049] 2050 2051[[package]] 2052name = "smallvec" 2053version = "1.13.2" 2054source = "registry+https://github.com/rust-lang/crates.io-index" 2055checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 2056dependencies = [ 2057 "serde", 2058] 2059 2060[[package]] 2061name = "socket2" 2062version = "0.5.8" 2063source = "registry+https://github.com/rust-lang/crates.io-index" 2064checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" 2065dependencies = [ 2066 "libc", 2067 "windows-sys 0.52.0", 2068] 2069 2070[[package]] 2071name = "spin" 2072version = "0.9.8" 2073source = "registry+https://github.com/rust-lang/crates.io-index" 2074checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2075dependencies = [ 2076 "lock_api", 2077] 2078 2079[[package]] 2080name = "spki" 2081version = "0.7.3" 2082source = "registry+https://github.com/rust-lang/crates.io-index" 2083checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 2084dependencies = [ 2085 "base64ct", 2086 "der", 2087] 2088 2089[[package]] 2090name = "sqlformat" 2091version = "0.2.6" 2092source = "registry+https://github.com/rust-lang/crates.io-index" 2093checksum = "7bba3a93db0cc4f7bdece8bb09e77e2e785c20bfebf79eb8340ed80708048790" 2094dependencies = [ 2095 "nom", 2096 "unicode_categories", 2097] 2098 2099[[package]] 2100name = "sqlx" 2101version = "0.8.1" 2102source = "registry+https://github.com/rust-lang/crates.io-index" 2103checksum = "fcfa89bea9500db4a0d038513d7a060566bfc51d46d1c014847049a45cce85e8" 2104dependencies = [ 2105 "sqlx-core", 2106 "sqlx-macros", 2107 "sqlx-mysql", 2108 "sqlx-postgres", 2109 "sqlx-sqlite", 2110] 2111 2112[[package]] 2113name = "sqlx-core" 2114version = "0.8.1" 2115source = "registry+https://github.com/rust-lang/crates.io-index" 2116checksum = "d06e2f2bd861719b1f3f0c7dbe1d80c30bf59e76cf019f07d9014ed7eefb8e08" 2117dependencies = [ 2118 "atoi", 2119 "byteorder", 2120 "bytes", 2121 "chrono", 2122 "crc", 2123 "crossbeam-queue", 2124 "either", 2125 "event-listener", 2126 "futures-channel", 2127 "futures-core", 2128 "futures-intrusive", 2129 "futures-io", 2130 "futures-util", 2131 "hashbrown 0.14.5", 2132 "hashlink", 2133 "hex", 2134 "indexmap", 2135 "log", 2136 "memchr", 2137 "native-tls", 2138 "once_cell", 2139 "paste", 2140 "percent-encoding", 2141 "serde", 2142 "serde_json", 2143 "sha2", 2144 "smallvec", 2145 "sqlformat", 2146 "thiserror 1.0.69", 2147 "tokio", 2148 "tokio-stream", 2149 "tracing", 2150 "url", 2151 "uuid", 2152] 2153 2154[[package]] 2155name = "sqlx-macros" 2156version = "0.8.1" 2157source = "registry+https://github.com/rust-lang/crates.io-index" 2158checksum = "2f998a9defdbd48ed005a89362bd40dd2117502f15294f61c8d47034107dbbdc" 2159dependencies = [ 2160 "proc-macro2", 2161 "quote", 2162 "sqlx-core", 2163 "sqlx-macros-core", 2164 "syn", 2165] 2166 2167[[package]] 2168name = "sqlx-macros-core" 2169version = "0.8.1" 2170source = "registry+https://github.com/rust-lang/crates.io-index" 2171checksum = "3d100558134176a2629d46cec0c8891ba0be8910f7896abfdb75ef4ab6f4e7ce" 2172dependencies = [ 2173 "dotenvy", 2174 "either", 2175 "heck", 2176 "hex", 2177 "once_cell", 2178 "proc-macro2", 2179 "quote", 2180 "serde", 2181 "serde_json", 2182 "sha2", 2183 "sqlx-core", 2184 "sqlx-mysql", 2185 "sqlx-postgres", 2186 "sqlx-sqlite", 2187 "syn", 2188 "tempfile", 2189 "tokio", 2190 "url", 2191] 2192 2193[[package]] 2194name = "sqlx-mysql" 2195version = "0.8.1" 2196source = "registry+https://github.com/rust-lang/crates.io-index" 2197checksum = "936cac0ab331b14cb3921c62156d913e4c15b74fb6ec0f3146bd4ef6e4fb3c12" 2198dependencies = [ 2199 "atoi", 2200 "base64 0.22.1", 2201 "bitflags", 2202 "byteorder", 2203 "bytes", 2204 "chrono", 2205 "crc", 2206 "digest", 2207 "dotenvy", 2208 "either", 2209 "futures-channel", 2210 "futures-core", 2211 "futures-io", 2212 "futures-util", 2213 "generic-array", 2214 "hex", 2215 "hkdf", 2216 "hmac", 2217 "itoa", 2218 "log", 2219 "md-5", 2220 "memchr", 2221 "once_cell", 2222 "percent-encoding", 2223 "rand", 2224 "rsa", 2225 "serde", 2226 "sha1", 2227 "sha2", 2228 "smallvec", 2229 "sqlx-core", 2230 "stringprep", 2231 "thiserror 1.0.69", 2232 "tracing", 2233 "uuid", 2234 "whoami", 2235] 2236 2237[[package]] 2238name = "sqlx-postgres" 2239version = "0.8.1" 2240source = "registry+https://github.com/rust-lang/crates.io-index" 2241checksum = "9734dbce698c67ecf67c442f768a5e90a49b2a4d61a9f1d59f73874bd4cf0710" 2242dependencies = [ 2243 "atoi", 2244 "base64 0.22.1", 2245 "bitflags", 2246 "byteorder", 2247 "chrono", 2248 "crc", 2249 "dotenvy", 2250 "etcetera", 2251 "futures-channel", 2252 "futures-core", 2253 "futures-io", 2254 "futures-util", 2255 "hex", 2256 "hkdf", 2257 "hmac", 2258 "home", 2259 "itoa", 2260 "log", 2261 "md-5", 2262 "memchr", 2263 "once_cell", 2264 "rand", 2265 "serde", 2266 "serde_json", 2267 "sha2", 2268 "smallvec", 2269 "sqlx-core", 2270 "stringprep", 2271 "thiserror 1.0.69", 2272 "tracing", 2273 "uuid", 2274 "whoami", 2275] 2276 2277[[package]] 2278name = "sqlx-sqlite" 2279version = "0.8.1" 2280source = "registry+https://github.com/rust-lang/crates.io-index" 2281checksum = "a75b419c3c1b1697833dd927bdc4c6545a620bc1bbafabd44e1efbe9afcd337e" 2282dependencies = [ 2283 "atoi", 2284 "chrono", 2285 "flume", 2286 "futures-channel", 2287 "futures-core", 2288 "futures-executor", 2289 "futures-intrusive", 2290 "futures-util", 2291 "libsqlite3-sys", 2292 "log", 2293 "percent-encoding", 2294 "serde", 2295 "serde_urlencoded", 2296 "sqlx-core", 2297 "tracing", 2298 "url", 2299 "uuid", 2300] 2301 2302[[package]] 2303name = "stable_deref_trait" 2304version = "1.2.0" 2305source = "registry+https://github.com/rust-lang/crates.io-index" 2306checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2307 2308[[package]] 2309name = "stringprep" 2310version = "0.1.5" 2311source = "registry+https://github.com/rust-lang/crates.io-index" 2312checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" 2313dependencies = [ 2314 "unicode-bidi", 2315 "unicode-normalization", 2316 "unicode-properties", 2317] 2318 2319[[package]] 2320name = "strsim" 2321version = "0.11.1" 2322source = "registry+https://github.com/rust-lang/crates.io-index" 2323checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 2324 2325[[package]] 2326name = "subtle" 2327version = "2.6.1" 2328source = "registry+https://github.com/rust-lang/crates.io-index" 2329checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 2330 2331[[package]] 2332name = "syn" 2333version = "2.0.96" 2334source = "registry+https://github.com/rust-lang/crates.io-index" 2335checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" 2336dependencies = [ 2337 "proc-macro2", 2338 "quote", 2339 "unicode-ident", 2340] 2341 2342[[package]] 2343name = "synstructure" 2344version = "0.13.1" 2345source = "registry+https://github.com/rust-lang/crates.io-index" 2346checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 2347dependencies = [ 2348 "proc-macro2", 2349 "quote", 2350 "syn", 2351] 2352 2353[[package]] 2354name = "tempfile" 2355version = "3.15.0" 2356source = "registry+https://github.com/rust-lang/crates.io-index" 2357checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" 2358dependencies = [ 2359 "cfg-if", 2360 "fastrand", 2361 "getrandom", 2362 "once_cell", 2363 "rustix", 2364 "windows-sys 0.59.0", 2365] 2366 2367[[package]] 2368name = "thiserror" 2369version = "1.0.69" 2370source = "registry+https://github.com/rust-lang/crates.io-index" 2371checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 2372dependencies = [ 2373 "thiserror-impl 1.0.69", 2374] 2375 2376[[package]] 2377name = "thiserror" 2378version = "2.0.11" 2379source = "registry+https://github.com/rust-lang/crates.io-index" 2380checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" 2381dependencies = [ 2382 "thiserror-impl 2.0.11", 2383] 2384 2385[[package]] 2386name = "thiserror-impl" 2387version = "1.0.69" 2388source = "registry+https://github.com/rust-lang/crates.io-index" 2389checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 2390dependencies = [ 2391 "proc-macro2", 2392 "quote", 2393 "syn", 2394] 2395 2396[[package]] 2397name = "thiserror-impl" 2398version = "2.0.11" 2399source = "registry+https://github.com/rust-lang/crates.io-index" 2400checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" 2401dependencies = [ 2402 "proc-macro2", 2403 "quote", 2404 "syn", 2405] 2406 2407[[package]] 2408name = "thread_local" 2409version = "1.1.8" 2410source = "registry+https://github.com/rust-lang/crates.io-index" 2411checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 2412dependencies = [ 2413 "cfg-if", 2414 "once_cell", 2415] 2416 2417[[package]] 2418name = "time" 2419version = "0.3.37" 2420source = "registry+https://github.com/rust-lang/crates.io-index" 2421checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" 2422dependencies = [ 2423 "deranged", 2424 "itoa", 2425 "num-conv", 2426 "powerfmt", 2427 "serde", 2428 "time-core", 2429 "time-macros", 2430] 2431 2432[[package]] 2433name = "time-core" 2434version = "0.1.2" 2435source = "registry+https://github.com/rust-lang/crates.io-index" 2436checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 2437 2438[[package]] 2439name = "time-macros" 2440version = "0.2.19" 2441source = "registry+https://github.com/rust-lang/crates.io-index" 2442checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" 2443dependencies = [ 2444 "num-conv", 2445 "time-core", 2446] 2447 2448[[package]] 2449name = "tinystr" 2450version = "0.7.6" 2451source = "registry+https://github.com/rust-lang/crates.io-index" 2452checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 2453dependencies = [ 2454 "displaydoc", 2455 "zerovec", 2456] 2457 2458[[package]] 2459name = "tinyvec" 2460version = "1.8.1" 2461source = "registry+https://github.com/rust-lang/crates.io-index" 2462checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" 2463dependencies = [ 2464 "tinyvec_macros", 2465] 2466 2467[[package]] 2468name = "tinyvec_macros" 2469version = "0.1.1" 2470source = "registry+https://github.com/rust-lang/crates.io-index" 2471checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2472 2473[[package]] 2474name = "tokio" 2475version = "1.43.0" 2476source = "registry+https://github.com/rust-lang/crates.io-index" 2477checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" 2478dependencies = [ 2479 "backtrace", 2480 "bytes", 2481 "libc", 2482 "mio", 2483 "parking_lot", 2484 "pin-project-lite", 2485 "signal-hook-registry", 2486 "socket2", 2487 "tokio-macros", 2488 "windows-sys 0.52.0", 2489] 2490 2491[[package]] 2492name = "tokio-macros" 2493version = "2.5.0" 2494source = "registry+https://github.com/rust-lang/crates.io-index" 2495checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 2496dependencies = [ 2497 "proc-macro2", 2498 "quote", 2499 "syn", 2500] 2501 2502[[package]] 2503name = "tokio-stream" 2504version = "0.1.17" 2505source = "registry+https://github.com/rust-lang/crates.io-index" 2506checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" 2507dependencies = [ 2508 "futures-core", 2509 "pin-project-lite", 2510 "tokio", 2511] 2512 2513[[package]] 2514name = "tokio-util" 2515version = "0.7.13" 2516source = "registry+https://github.com/rust-lang/crates.io-index" 2517checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078" 2518dependencies = [ 2519 "bytes", 2520 "futures-core", 2521 "futures-sink", 2522 "pin-project-lite", 2523 "tokio", 2524] 2525 2526[[package]] 2527name = "tracing" 2528version = "0.1.41" 2529source = "registry+https://github.com/rust-lang/crates.io-index" 2530checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 2531dependencies = [ 2532 "log", 2533 "pin-project-lite", 2534 "tracing-attributes", 2535 "tracing-core", 2536] 2537 2538[[package]] 2539name = "tracing-attributes" 2540version = "0.1.28" 2541source = "registry+https://github.com/rust-lang/crates.io-index" 2542checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" 2543dependencies = [ 2544 "proc-macro2", 2545 "quote", 2546 "syn", 2547] 2548 2549[[package]] 2550name = "tracing-core" 2551version = "0.1.33" 2552source = "registry+https://github.com/rust-lang/crates.io-index" 2553checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" 2554dependencies = [ 2555 "once_cell", 2556 "valuable", 2557] 2558 2559[[package]] 2560name = "tracing-log" 2561version = "0.2.0" 2562source = "registry+https://github.com/rust-lang/crates.io-index" 2563checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 2564dependencies = [ 2565 "log", 2566 "once_cell", 2567 "tracing-core", 2568] 2569 2570[[package]] 2571name = "tracing-subscriber" 2572version = "0.3.19" 2573source = "registry+https://github.com/rust-lang/crates.io-index" 2574checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" 2575dependencies = [ 2576 "nu-ansi-term", 2577 "sharded-slab", 2578 "smallvec", 2579 "thread_local", 2580 "tracing-core", 2581 "tracing-log", 2582] 2583 2584[[package]] 2585name = "typenum" 2586version = "1.17.0" 2587source = "registry+https://github.com/rust-lang/crates.io-index" 2588checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 2589 2590[[package]] 2591name = "unicode-bidi" 2592version = "0.3.18" 2593source = "registry+https://github.com/rust-lang/crates.io-index" 2594checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" 2595 2596[[package]] 2597name = "unicode-ident" 2598version = "1.0.15" 2599source = "registry+https://github.com/rust-lang/crates.io-index" 2600checksum = "11cd88e12b17c6494200a9c1b683a04fcac9573ed74cd1b62aeb2727c5592243" 2601 2602[[package]] 2603name = "unicode-normalization" 2604version = "0.1.24" 2605source = "registry+https://github.com/rust-lang/crates.io-index" 2606checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" 2607dependencies = [ 2608 "tinyvec", 2609] 2610 2611[[package]] 2612name = "unicode-properties" 2613version = "0.1.3" 2614source = "registry+https://github.com/rust-lang/crates.io-index" 2615checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0" 2616 2617[[package]] 2618name = "unicode_categories" 2619version = "0.1.1" 2620source = "registry+https://github.com/rust-lang/crates.io-index" 2621checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 2622 2623[[package]] 2624name = "untrusted" 2625version = "0.9.0" 2626source = "registry+https://github.com/rust-lang/crates.io-index" 2627checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 2628 2629[[package]] 2630name = "url" 2631version = "2.5.4" 2632source = "registry+https://github.com/rust-lang/crates.io-index" 2633checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 2634dependencies = [ 2635 "form_urlencoded", 2636 "idna", 2637 "percent-encoding", 2638] 2639 2640[[package]] 2641name = "utf16_iter" 2642version = "1.0.5" 2643source = "registry+https://github.com/rust-lang/crates.io-index" 2644checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" 2645 2646[[package]] 2647name = "utf8_iter" 2648version = "1.0.4" 2649source = "registry+https://github.com/rust-lang/crates.io-index" 2650checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 2651 2652[[package]] 2653name = "utf8parse" 2654version = "0.2.2" 2655source = "registry+https://github.com/rust-lang/crates.io-index" 2656checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 2657 2658[[package]] 2659name = "uuid" 2660version = "1.12.1" 2661source = "registry+https://github.com/rust-lang/crates.io-index" 2662checksum = "b3758f5e68192bb96cc8f9b7e2c2cfdabb435499a28499a42f8f984092adad4b" 2663dependencies = [ 2664 "getrandom", 2665 "serde", 2666] 2667 2668[[package]] 2669name = "valuable" 2670version = "0.1.1" 2671source = "registry+https://github.com/rust-lang/crates.io-index" 2672checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 2673 2674[[package]] 2675name = "vcpkg" 2676version = "0.2.15" 2677source = "registry+https://github.com/rust-lang/crates.io-index" 2678checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2679 2680[[package]] 2681name = "version_check" 2682version = "0.9.5" 2683source = "registry+https://github.com/rust-lang/crates.io-index" 2684checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 2685 2686[[package]] 2687name = "wasi" 2688version = "0.11.0+wasi-snapshot-preview1" 2689source = "registry+https://github.com/rust-lang/crates.io-index" 2690checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2691 2692[[package]] 2693name = "wasite" 2694version = "0.1.0" 2695source = "registry+https://github.com/rust-lang/crates.io-index" 2696checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 2697 2698[[package]] 2699name = "wasm-bindgen" 2700version = "0.2.100" 2701source = "registry+https://github.com/rust-lang/crates.io-index" 2702checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 2703dependencies = [ 2704 "cfg-if", 2705 "once_cell", 2706 "rustversion", 2707 "wasm-bindgen-macro", 2708] 2709 2710[[package]] 2711name = "wasm-bindgen-backend" 2712version = "0.2.100" 2713source = "registry+https://github.com/rust-lang/crates.io-index" 2714checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 2715dependencies = [ 2716 "bumpalo", 2717 "log", 2718 "proc-macro2", 2719 "quote", 2720 "syn", 2721 "wasm-bindgen-shared", 2722] 2723 2724[[package]] 2725name = "wasm-bindgen-macro" 2726version = "0.2.100" 2727source = "registry+https://github.com/rust-lang/crates.io-index" 2728checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 2729dependencies = [ 2730 "quote", 2731 "wasm-bindgen-macro-support", 2732] 2733 2734[[package]] 2735name = "wasm-bindgen-macro-support" 2736version = "0.2.100" 2737source = "registry+https://github.com/rust-lang/crates.io-index" 2738checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 2739dependencies = [ 2740 "proc-macro2", 2741 "quote", 2742 "syn", 2743 "wasm-bindgen-backend", 2744 "wasm-bindgen-shared", 2745] 2746 2747[[package]] 2748name = "wasm-bindgen-shared" 2749version = "0.2.100" 2750source = "registry+https://github.com/rust-lang/crates.io-index" 2751checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 2752dependencies = [ 2753 "unicode-ident", 2754] 2755 2756[[package]] 2757name = "whoami" 2758version = "1.5.2" 2759source = "registry+https://github.com/rust-lang/crates.io-index" 2760checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d" 2761dependencies = [ 2762 "redox_syscall", 2763 "wasite", 2764] 2765 2766[[package]] 2767name = "winapi" 2768version = "0.3.9" 2769source = "registry+https://github.com/rust-lang/crates.io-index" 2770checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2771dependencies = [ 2772 "winapi-i686-pc-windows-gnu", 2773 "winapi-x86_64-pc-windows-gnu", 2774] 2775 2776[[package]] 2777name = "winapi-i686-pc-windows-gnu" 2778version = "0.4.0" 2779source = "registry+https://github.com/rust-lang/crates.io-index" 2780checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2781 2782[[package]] 2783name = "winapi-x86_64-pc-windows-gnu" 2784version = "0.4.0" 2785source = "registry+https://github.com/rust-lang/crates.io-index" 2786checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2787 2788[[package]] 2789name = "windows-core" 2790version = "0.52.0" 2791source = "registry+https://github.com/rust-lang/crates.io-index" 2792checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 2793dependencies = [ 2794 "windows-targets 0.52.6", 2795] 2796 2797[[package]] 2798name = "windows-sys" 2799version = "0.48.0" 2800source = "registry+https://github.com/rust-lang/crates.io-index" 2801checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2802dependencies = [ 2803 "windows-targets 0.48.5", 2804] 2805 2806[[package]] 2807name = "windows-sys" 2808version = "0.52.0" 2809source = "registry+https://github.com/rust-lang/crates.io-index" 2810checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2811dependencies = [ 2812 "windows-targets 0.52.6", 2813] 2814 2815[[package]] 2816name = "windows-sys" 2817version = "0.59.0" 2818source = "registry+https://github.com/rust-lang/crates.io-index" 2819checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 2820dependencies = [ 2821 "windows-targets 0.52.6", 2822] 2823 2824[[package]] 2825name = "windows-targets" 2826version = "0.48.5" 2827source = "registry+https://github.com/rust-lang/crates.io-index" 2828checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 2829dependencies = [ 2830 "windows_aarch64_gnullvm 0.48.5", 2831 "windows_aarch64_msvc 0.48.5", 2832 "windows_i686_gnu 0.48.5", 2833 "windows_i686_msvc 0.48.5", 2834 "windows_x86_64_gnu 0.48.5", 2835 "windows_x86_64_gnullvm 0.48.5", 2836 "windows_x86_64_msvc 0.48.5", 2837] 2838 2839[[package]] 2840name = "windows-targets" 2841version = "0.52.6" 2842source = "registry+https://github.com/rust-lang/crates.io-index" 2843checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 2844dependencies = [ 2845 "windows_aarch64_gnullvm 0.52.6", 2846 "windows_aarch64_msvc 0.52.6", 2847 "windows_i686_gnu 0.52.6", 2848 "windows_i686_gnullvm", 2849 "windows_i686_msvc 0.52.6", 2850 "windows_x86_64_gnu 0.52.6", 2851 "windows_x86_64_gnullvm 0.52.6", 2852 "windows_x86_64_msvc 0.52.6", 2853] 2854 2855[[package]] 2856name = "windows_aarch64_gnullvm" 2857version = "0.48.5" 2858source = "registry+https://github.com/rust-lang/crates.io-index" 2859checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 2860 2861[[package]] 2862name = "windows_aarch64_gnullvm" 2863version = "0.52.6" 2864source = "registry+https://github.com/rust-lang/crates.io-index" 2865checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 2866 2867[[package]] 2868name = "windows_aarch64_msvc" 2869version = "0.48.5" 2870source = "registry+https://github.com/rust-lang/crates.io-index" 2871checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 2872 2873[[package]] 2874name = "windows_aarch64_msvc" 2875version = "0.52.6" 2876source = "registry+https://github.com/rust-lang/crates.io-index" 2877checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 2878 2879[[package]] 2880name = "windows_i686_gnu" 2881version = "0.48.5" 2882source = "registry+https://github.com/rust-lang/crates.io-index" 2883checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 2884 2885[[package]] 2886name = "windows_i686_gnu" 2887version = "0.52.6" 2888source = "registry+https://github.com/rust-lang/crates.io-index" 2889checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 2890 2891[[package]] 2892name = "windows_i686_gnullvm" 2893version = "0.52.6" 2894source = "registry+https://github.com/rust-lang/crates.io-index" 2895checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 2896 2897[[package]] 2898name = "windows_i686_msvc" 2899version = "0.48.5" 2900source = "registry+https://github.com/rust-lang/crates.io-index" 2901checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 2902 2903[[package]] 2904name = "windows_i686_msvc" 2905version = "0.52.6" 2906source = "registry+https://github.com/rust-lang/crates.io-index" 2907checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 2908 2909[[package]] 2910name = "windows_x86_64_gnu" 2911version = "0.48.5" 2912source = "registry+https://github.com/rust-lang/crates.io-index" 2913checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 2914 2915[[package]] 2916name = "windows_x86_64_gnu" 2917version = "0.52.6" 2918source = "registry+https://github.com/rust-lang/crates.io-index" 2919checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 2920 2921[[package]] 2922name = "windows_x86_64_gnullvm" 2923version = "0.48.5" 2924source = "registry+https://github.com/rust-lang/crates.io-index" 2925checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 2926 2927[[package]] 2928name = "windows_x86_64_gnullvm" 2929version = "0.52.6" 2930source = "registry+https://github.com/rust-lang/crates.io-index" 2931checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 2932 2933[[package]] 2934name = "windows_x86_64_msvc" 2935version = "0.48.5" 2936source = "registry+https://github.com/rust-lang/crates.io-index" 2937checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 2938 2939[[package]] 2940name = "windows_x86_64_msvc" 2941version = "0.52.6" 2942source = "registry+https://github.com/rust-lang/crates.io-index" 2943checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 2944 2945[[package]] 2946name = "write16" 2947version = "1.0.0" 2948source = "registry+https://github.com/rust-lang/crates.io-index" 2949checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" 2950 2951[[package]] 2952name = "writeable" 2953version = "0.5.5" 2954source = "registry+https://github.com/rust-lang/crates.io-index" 2955checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" 2956 2957[[package]] 2958name = "yoke" 2959version = "0.7.5" 2960source = "registry+https://github.com/rust-lang/crates.io-index" 2961checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" 2962dependencies = [ 2963 "serde", 2964 "stable_deref_trait", 2965 "yoke-derive", 2966 "zerofrom", 2967] 2968 2969[[package]] 2970name = "yoke-derive" 2971version = "0.7.5" 2972source = "registry+https://github.com/rust-lang/crates.io-index" 2973checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" 2974dependencies = [ 2975 "proc-macro2", 2976 "quote", 2977 "syn", 2978 "synstructure", 2979] 2980 2981[[package]] 2982name = "zerocopy" 2983version = "0.7.35" 2984source = "registry+https://github.com/rust-lang/crates.io-index" 2985checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 2986dependencies = [ 2987 "byteorder", 2988 "zerocopy-derive", 2989] 2990 2991[[package]] 2992name = "zerocopy-derive" 2993version = "0.7.35" 2994source = "registry+https://github.com/rust-lang/crates.io-index" 2995checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 2996dependencies = [ 2997 "proc-macro2", 2998 "quote", 2999 "syn", 3000] 3001 3002[[package]] 3003name = "zerofrom" 3004version = "0.1.5" 3005source = "registry+https://github.com/rust-lang/crates.io-index" 3006checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" 3007dependencies = [ 3008 "zerofrom-derive", 3009] 3010 3011[[package]] 3012name = "zerofrom-derive" 3013version = "0.1.5" 3014source = "registry+https://github.com/rust-lang/crates.io-index" 3015checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" 3016dependencies = [ 3017 "proc-macro2", 3018 "quote", 3019 "syn", 3020 "synstructure", 3021] 3022 3023[[package]] 3024name = "zeroize" 3025version = "1.8.1" 3026source = "registry+https://github.com/rust-lang/crates.io-index" 3027checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 3028 3029[[package]] 3030name = "zerovec" 3031version = "0.10.4" 3032source = "registry+https://github.com/rust-lang/crates.io-index" 3033checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" 3034dependencies = [ 3035 "yoke", 3036 "zerofrom", 3037 "zerovec-derive", 3038] 3039 3040[[package]] 3041name = "zerovec-derive" 3042version = "0.10.3" 3043source = "registry+https://github.com/rust-lang/crates.io-index" 3044checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" 3045dependencies = [ 3046 "proc-macro2", 3047 "quote", 3048 "syn", 3049] 3050 3051[[package]] 3052name = "zstd" 3053version = "0.13.2" 3054source = "registry+https://github.com/rust-lang/crates.io-index" 3055checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9" 3056dependencies = [ 3057 "zstd-safe", 3058] 3059 3060[[package]] 3061name = "zstd-safe" 3062version = "7.2.1" 3063source = "registry+https://github.com/rust-lang/crates.io-index" 3064checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" 3065dependencies = [ 3066 "zstd-sys", 3067] 3068 3069[[package]] 3070name = "zstd-sys" 3071version = "2.0.13+zstd.1.5.6" 3072source = "registry+https://github.com/rust-lang/crates.io-index" 3073checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" 3074dependencies = [ 3075 "cc", 3076 "pkg-config", 3077]