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