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