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 "rand", 2072 "regex", 2073 "serde", 2074 "serde_json", 2075 "sqlx", 2076 "thiserror 1.0.69", 2077 "tokio", 2078 "tracing", 2079 "tracing-subscriber", 2080 "uuid", 2081] 2082 2083[[package]] 2084name = "slab" 2085version = "0.4.9" 2086source = "registry+https://github.com/rust-lang/crates.io-index" 2087checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2088dependencies = [ 2089 "autocfg", 2090] 2091 2092[[package]] 2093name = "smallvec" 2094version = "1.13.2" 2095source = "registry+https://github.com/rust-lang/crates.io-index" 2096checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 2097dependencies = [ 2098 "serde", 2099] 2100 2101[[package]] 2102name = "socket2" 2103version = "0.5.8" 2104source = "registry+https://github.com/rust-lang/crates.io-index" 2105checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" 2106dependencies = [ 2107 "libc", 2108 "windows-sys 0.52.0", 2109] 2110 2111[[package]] 2112name = "spin" 2113version = "0.9.8" 2114source = "registry+https://github.com/rust-lang/crates.io-index" 2115checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2116dependencies = [ 2117 "lock_api", 2118] 2119 2120[[package]] 2121name = "spki" 2122version = "0.7.3" 2123source = "registry+https://github.com/rust-lang/crates.io-index" 2124checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 2125dependencies = [ 2126 "base64ct", 2127 "der", 2128] 2129 2130[[package]] 2131name = "sqlformat" 2132version = "0.2.6" 2133source = "registry+https://github.com/rust-lang/crates.io-index" 2134checksum = "7bba3a93db0cc4f7bdece8bb09e77e2e785c20bfebf79eb8340ed80708048790" 2135dependencies = [ 2136 "nom", 2137 "unicode_categories", 2138] 2139 2140[[package]] 2141name = "sqlx" 2142version = "0.8.1" 2143source = "registry+https://github.com/rust-lang/crates.io-index" 2144checksum = "fcfa89bea9500db4a0d038513d7a060566bfc51d46d1c014847049a45cce85e8" 2145dependencies = [ 2146 "sqlx-core", 2147 "sqlx-macros", 2148 "sqlx-mysql", 2149 "sqlx-postgres", 2150 "sqlx-sqlite", 2151] 2152 2153[[package]] 2154name = "sqlx-core" 2155version = "0.8.1" 2156source = "registry+https://github.com/rust-lang/crates.io-index" 2157checksum = "d06e2f2bd861719b1f3f0c7dbe1d80c30bf59e76cf019f07d9014ed7eefb8e08" 2158dependencies = [ 2159 "atoi", 2160 "byteorder", 2161 "bytes", 2162 "chrono", 2163 "crc", 2164 "crossbeam-queue", 2165 "either", 2166 "event-listener", 2167 "futures-channel", 2168 "futures-core", 2169 "futures-intrusive", 2170 "futures-io", 2171 "futures-util", 2172 "hashbrown 0.14.5", 2173 "hashlink", 2174 "hex", 2175 "indexmap", 2176 "log", 2177 "memchr", 2178 "native-tls", 2179 "once_cell", 2180 "paste", 2181 "percent-encoding", 2182 "serde", 2183 "serde_json", 2184 "sha2", 2185 "smallvec", 2186 "sqlformat", 2187 "thiserror 1.0.69", 2188 "tokio", 2189 "tokio-stream", 2190 "tracing", 2191 "url", 2192 "uuid", 2193] 2194 2195[[package]] 2196name = "sqlx-macros" 2197version = "0.8.1" 2198source = "registry+https://github.com/rust-lang/crates.io-index" 2199checksum = "2f998a9defdbd48ed005a89362bd40dd2117502f15294f61c8d47034107dbbdc" 2200dependencies = [ 2201 "proc-macro2", 2202 "quote", 2203 "sqlx-core", 2204 "sqlx-macros-core", 2205 "syn", 2206] 2207 2208[[package]] 2209name = "sqlx-macros-core" 2210version = "0.8.1" 2211source = "registry+https://github.com/rust-lang/crates.io-index" 2212checksum = "3d100558134176a2629d46cec0c8891ba0be8910f7896abfdb75ef4ab6f4e7ce" 2213dependencies = [ 2214 "dotenvy", 2215 "either", 2216 "heck", 2217 "hex", 2218 "once_cell", 2219 "proc-macro2", 2220 "quote", 2221 "serde", 2222 "serde_json", 2223 "sha2", 2224 "sqlx-core", 2225 "sqlx-mysql", 2226 "sqlx-postgres", 2227 "sqlx-sqlite", 2228 "syn", 2229 "tempfile", 2230 "tokio", 2231 "url", 2232] 2233 2234[[package]] 2235name = "sqlx-mysql" 2236version = "0.8.1" 2237source = "registry+https://github.com/rust-lang/crates.io-index" 2238checksum = "936cac0ab331b14cb3921c62156d913e4c15b74fb6ec0f3146bd4ef6e4fb3c12" 2239dependencies = [ 2240 "atoi", 2241 "base64 0.22.1", 2242 "bitflags", 2243 "byteorder", 2244 "bytes", 2245 "chrono", 2246 "crc", 2247 "digest", 2248 "dotenvy", 2249 "either", 2250 "futures-channel", 2251 "futures-core", 2252 "futures-io", 2253 "futures-util", 2254 "generic-array", 2255 "hex", 2256 "hkdf", 2257 "hmac", 2258 "itoa", 2259 "log", 2260 "md-5", 2261 "memchr", 2262 "once_cell", 2263 "percent-encoding", 2264 "rand", 2265 "rsa", 2266 "serde", 2267 "sha1", 2268 "sha2", 2269 "smallvec", 2270 "sqlx-core", 2271 "stringprep", 2272 "thiserror 1.0.69", 2273 "tracing", 2274 "uuid", 2275 "whoami", 2276] 2277 2278[[package]] 2279name = "sqlx-postgres" 2280version = "0.8.1" 2281source = "registry+https://github.com/rust-lang/crates.io-index" 2282checksum = "9734dbce698c67ecf67c442f768a5e90a49b2a4d61a9f1d59f73874bd4cf0710" 2283dependencies = [ 2284 "atoi", 2285 "base64 0.22.1", 2286 "bitflags", 2287 "byteorder", 2288 "chrono", 2289 "crc", 2290 "dotenvy", 2291 "etcetera", 2292 "futures-channel", 2293 "futures-core", 2294 "futures-io", 2295 "futures-util", 2296 "hex", 2297 "hkdf", 2298 "hmac", 2299 "home", 2300 "itoa", 2301 "log", 2302 "md-5", 2303 "memchr", 2304 "once_cell", 2305 "rand", 2306 "serde", 2307 "serde_json", 2308 "sha2", 2309 "smallvec", 2310 "sqlx-core", 2311 "stringprep", 2312 "thiserror 1.0.69", 2313 "tracing", 2314 "uuid", 2315 "whoami", 2316] 2317 2318[[package]] 2319name = "sqlx-sqlite" 2320version = "0.8.1" 2321source = "registry+https://github.com/rust-lang/crates.io-index" 2322checksum = "a75b419c3c1b1697833dd927bdc4c6545a620bc1bbafabd44e1efbe9afcd337e" 2323dependencies = [ 2324 "atoi", 2325 "chrono", 2326 "flume", 2327 "futures-channel", 2328 "futures-core", 2329 "futures-executor", 2330 "futures-intrusive", 2331 "futures-util", 2332 "libsqlite3-sys", 2333 "log", 2334 "percent-encoding", 2335 "serde", 2336 "serde_urlencoded", 2337 "sqlx-core", 2338 "tracing", 2339 "url", 2340 "uuid", 2341] 2342 2343[[package]] 2344name = "stable_deref_trait" 2345version = "1.2.0" 2346source = "registry+https://github.com/rust-lang/crates.io-index" 2347checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2348 2349[[package]] 2350name = "stringprep" 2351version = "0.1.5" 2352source = "registry+https://github.com/rust-lang/crates.io-index" 2353checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" 2354dependencies = [ 2355 "unicode-bidi", 2356 "unicode-normalization", 2357 "unicode-properties", 2358] 2359 2360[[package]] 2361name = "strsim" 2362version = "0.11.1" 2363source = "registry+https://github.com/rust-lang/crates.io-index" 2364checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 2365 2366[[package]] 2367name = "subtle" 2368version = "2.6.1" 2369source = "registry+https://github.com/rust-lang/crates.io-index" 2370checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 2371 2372[[package]] 2373name = "syn" 2374version = "2.0.96" 2375source = "registry+https://github.com/rust-lang/crates.io-index" 2376checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" 2377dependencies = [ 2378 "proc-macro2", 2379 "quote", 2380 "unicode-ident", 2381] 2382 2383[[package]] 2384name = "synstructure" 2385version = "0.13.1" 2386source = "registry+https://github.com/rust-lang/crates.io-index" 2387checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 2388dependencies = [ 2389 "proc-macro2", 2390 "quote", 2391 "syn", 2392] 2393 2394[[package]] 2395name = "tempfile" 2396version = "3.15.0" 2397source = "registry+https://github.com/rust-lang/crates.io-index" 2398checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" 2399dependencies = [ 2400 "cfg-if", 2401 "fastrand", 2402 "getrandom", 2403 "once_cell", 2404 "rustix", 2405 "windows-sys 0.59.0", 2406] 2407 2408[[package]] 2409name = "thiserror" 2410version = "1.0.69" 2411source = "registry+https://github.com/rust-lang/crates.io-index" 2412checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 2413dependencies = [ 2414 "thiserror-impl 1.0.69", 2415] 2416 2417[[package]] 2418name = "thiserror" 2419version = "2.0.11" 2420source = "registry+https://github.com/rust-lang/crates.io-index" 2421checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" 2422dependencies = [ 2423 "thiserror-impl 2.0.11", 2424] 2425 2426[[package]] 2427name = "thiserror-impl" 2428version = "1.0.69" 2429source = "registry+https://github.com/rust-lang/crates.io-index" 2430checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 2431dependencies = [ 2432 "proc-macro2", 2433 "quote", 2434 "syn", 2435] 2436 2437[[package]] 2438name = "thiserror-impl" 2439version = "2.0.11" 2440source = "registry+https://github.com/rust-lang/crates.io-index" 2441checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" 2442dependencies = [ 2443 "proc-macro2", 2444 "quote", 2445 "syn", 2446] 2447 2448[[package]] 2449name = "thread_local" 2450version = "1.1.8" 2451source = "registry+https://github.com/rust-lang/crates.io-index" 2452checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 2453dependencies = [ 2454 "cfg-if", 2455 "once_cell", 2456] 2457 2458[[package]] 2459name = "time" 2460version = "0.3.37" 2461source = "registry+https://github.com/rust-lang/crates.io-index" 2462checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" 2463dependencies = [ 2464 "deranged", 2465 "itoa", 2466 "num-conv", 2467 "powerfmt", 2468 "serde", 2469 "time-core", 2470 "time-macros", 2471] 2472 2473[[package]] 2474name = "time-core" 2475version = "0.1.2" 2476source = "registry+https://github.com/rust-lang/crates.io-index" 2477checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 2478 2479[[package]] 2480name = "time-macros" 2481version = "0.2.19" 2482source = "registry+https://github.com/rust-lang/crates.io-index" 2483checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" 2484dependencies = [ 2485 "num-conv", 2486 "time-core", 2487] 2488 2489[[package]] 2490name = "tinystr" 2491version = "0.7.6" 2492source = "registry+https://github.com/rust-lang/crates.io-index" 2493checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 2494dependencies = [ 2495 "displaydoc", 2496 "zerovec", 2497] 2498 2499[[package]] 2500name = "tinyvec" 2501version = "1.8.1" 2502source = "registry+https://github.com/rust-lang/crates.io-index" 2503checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" 2504dependencies = [ 2505 "tinyvec_macros", 2506] 2507 2508[[package]] 2509name = "tinyvec_macros" 2510version = "0.1.1" 2511source = "registry+https://github.com/rust-lang/crates.io-index" 2512checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2513 2514[[package]] 2515name = "tokio" 2516version = "1.43.0" 2517source = "registry+https://github.com/rust-lang/crates.io-index" 2518checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" 2519dependencies = [ 2520 "backtrace", 2521 "bytes", 2522 "libc", 2523 "mio", 2524 "parking_lot", 2525 "pin-project-lite", 2526 "signal-hook-registry", 2527 "socket2", 2528 "tokio-macros", 2529 "windows-sys 0.52.0", 2530] 2531 2532[[package]] 2533name = "tokio-macros" 2534version = "2.5.0" 2535source = "registry+https://github.com/rust-lang/crates.io-index" 2536checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 2537dependencies = [ 2538 "proc-macro2", 2539 "quote", 2540 "syn", 2541] 2542 2543[[package]] 2544name = "tokio-stream" 2545version = "0.1.17" 2546source = "registry+https://github.com/rust-lang/crates.io-index" 2547checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" 2548dependencies = [ 2549 "futures-core", 2550 "pin-project-lite", 2551 "tokio", 2552] 2553 2554[[package]] 2555name = "tokio-util" 2556version = "0.7.13" 2557source = "registry+https://github.com/rust-lang/crates.io-index" 2558checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078" 2559dependencies = [ 2560 "bytes", 2561 "futures-core", 2562 "futures-sink", 2563 "pin-project-lite", 2564 "tokio", 2565] 2566 2567[[package]] 2568name = "tracing" 2569version = "0.1.41" 2570source = "registry+https://github.com/rust-lang/crates.io-index" 2571checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 2572dependencies = [ 2573 "log", 2574 "pin-project-lite", 2575 "tracing-attributes", 2576 "tracing-core", 2577] 2578 2579[[package]] 2580name = "tracing-attributes" 2581version = "0.1.28" 2582source = "registry+https://github.com/rust-lang/crates.io-index" 2583checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" 2584dependencies = [ 2585 "proc-macro2", 2586 "quote", 2587 "syn", 2588] 2589 2590[[package]] 2591name = "tracing-core" 2592version = "0.1.33" 2593source = "registry+https://github.com/rust-lang/crates.io-index" 2594checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" 2595dependencies = [ 2596 "once_cell", 2597 "valuable", 2598] 2599 2600[[package]] 2601name = "tracing-log" 2602version = "0.2.0" 2603source = "registry+https://github.com/rust-lang/crates.io-index" 2604checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 2605dependencies = [ 2606 "log", 2607 "once_cell", 2608 "tracing-core", 2609] 2610 2611[[package]] 2612name = "tracing-subscriber" 2613version = "0.3.19" 2614source = "registry+https://github.com/rust-lang/crates.io-index" 2615checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" 2616dependencies = [ 2617 "nu-ansi-term", 2618 "sharded-slab", 2619 "smallvec", 2620 "thread_local", 2621 "tracing-core", 2622 "tracing-log", 2623] 2624 2625[[package]] 2626name = "typenum" 2627version = "1.17.0" 2628source = "registry+https://github.com/rust-lang/crates.io-index" 2629checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 2630 2631[[package]] 2632name = "unicase" 2633version = "2.8.1" 2634source = "registry+https://github.com/rust-lang/crates.io-index" 2635checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" 2636 2637[[package]] 2638name = "unicode-bidi" 2639version = "0.3.18" 2640source = "registry+https://github.com/rust-lang/crates.io-index" 2641checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" 2642 2643[[package]] 2644name = "unicode-ident" 2645version = "1.0.15" 2646source = "registry+https://github.com/rust-lang/crates.io-index" 2647checksum = "11cd88e12b17c6494200a9c1b683a04fcac9573ed74cd1b62aeb2727c5592243" 2648 2649[[package]] 2650name = "unicode-normalization" 2651version = "0.1.24" 2652source = "registry+https://github.com/rust-lang/crates.io-index" 2653checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" 2654dependencies = [ 2655 "tinyvec", 2656] 2657 2658[[package]] 2659name = "unicode-properties" 2660version = "0.1.3" 2661source = "registry+https://github.com/rust-lang/crates.io-index" 2662checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0" 2663 2664[[package]] 2665name = "unicode_categories" 2666version = "0.1.1" 2667source = "registry+https://github.com/rust-lang/crates.io-index" 2668checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 2669 2670[[package]] 2671name = "untrusted" 2672version = "0.9.0" 2673source = "registry+https://github.com/rust-lang/crates.io-index" 2674checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 2675 2676[[package]] 2677name = "url" 2678version = "2.5.4" 2679source = "registry+https://github.com/rust-lang/crates.io-index" 2680checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 2681dependencies = [ 2682 "form_urlencoded", 2683 "idna", 2684 "percent-encoding", 2685] 2686 2687[[package]] 2688name = "utf16_iter" 2689version = "1.0.5" 2690source = "registry+https://github.com/rust-lang/crates.io-index" 2691checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" 2692 2693[[package]] 2694name = "utf8_iter" 2695version = "1.0.4" 2696source = "registry+https://github.com/rust-lang/crates.io-index" 2697checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 2698 2699[[package]] 2700name = "utf8parse" 2701version = "0.2.2" 2702source = "registry+https://github.com/rust-lang/crates.io-index" 2703checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 2704 2705[[package]] 2706name = "uuid" 2707version = "1.12.1" 2708source = "registry+https://github.com/rust-lang/crates.io-index" 2709checksum = "b3758f5e68192bb96cc8f9b7e2c2cfdabb435499a28499a42f8f984092adad4b" 2710dependencies = [ 2711 "getrandom", 2712 "serde", 2713] 2714 2715[[package]] 2716name = "v_htmlescape" 2717version = "0.15.8" 2718source = "registry+https://github.com/rust-lang/crates.io-index" 2719checksum = "4e8257fbc510f0a46eb602c10215901938b5c2a7d5e70fc11483b1d3c9b5b18c" 2720 2721[[package]] 2722name = "valuable" 2723version = "0.1.1" 2724source = "registry+https://github.com/rust-lang/crates.io-index" 2725checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 2726 2727[[package]] 2728name = "vcpkg" 2729version = "0.2.15" 2730source = "registry+https://github.com/rust-lang/crates.io-index" 2731checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2732 2733[[package]] 2734name = "version_check" 2735version = "0.9.5" 2736source = "registry+https://github.com/rust-lang/crates.io-index" 2737checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 2738 2739[[package]] 2740name = "wasi" 2741version = "0.11.0+wasi-snapshot-preview1" 2742source = "registry+https://github.com/rust-lang/crates.io-index" 2743checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2744 2745[[package]] 2746name = "wasite" 2747version = "0.1.0" 2748source = "registry+https://github.com/rust-lang/crates.io-index" 2749checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 2750 2751[[package]] 2752name = "wasm-bindgen" 2753version = "0.2.100" 2754source = "registry+https://github.com/rust-lang/crates.io-index" 2755checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 2756dependencies = [ 2757 "cfg-if", 2758 "once_cell", 2759 "rustversion", 2760 "wasm-bindgen-macro", 2761] 2762 2763[[package]] 2764name = "wasm-bindgen-backend" 2765version = "0.2.100" 2766source = "registry+https://github.com/rust-lang/crates.io-index" 2767checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 2768dependencies = [ 2769 "bumpalo", 2770 "log", 2771 "proc-macro2", 2772 "quote", 2773 "syn", 2774 "wasm-bindgen-shared", 2775] 2776 2777[[package]] 2778name = "wasm-bindgen-macro" 2779version = "0.2.100" 2780source = "registry+https://github.com/rust-lang/crates.io-index" 2781checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 2782dependencies = [ 2783 "quote", 2784 "wasm-bindgen-macro-support", 2785] 2786 2787[[package]] 2788name = "wasm-bindgen-macro-support" 2789version = "0.2.100" 2790source = "registry+https://github.com/rust-lang/crates.io-index" 2791checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 2792dependencies = [ 2793 "proc-macro2", 2794 "quote", 2795 "syn", 2796 "wasm-bindgen-backend", 2797 "wasm-bindgen-shared", 2798] 2799 2800[[package]] 2801name = "wasm-bindgen-shared" 2802version = "0.2.100" 2803source = "registry+https://github.com/rust-lang/crates.io-index" 2804checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 2805dependencies = [ 2806 "unicode-ident", 2807] 2808 2809[[package]] 2810name = "whoami" 2811version = "1.5.2" 2812source = "registry+https://github.com/rust-lang/crates.io-index" 2813checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d" 2814dependencies = [ 2815 "redox_syscall", 2816 "wasite", 2817] 2818 2819[[package]] 2820name = "winapi" 2821version = "0.3.9" 2822source = "registry+https://github.com/rust-lang/crates.io-index" 2823checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2824dependencies = [ 2825 "winapi-i686-pc-windows-gnu", 2826 "winapi-x86_64-pc-windows-gnu", 2827] 2828 2829[[package]] 2830name = "winapi-i686-pc-windows-gnu" 2831version = "0.4.0" 2832source = "registry+https://github.com/rust-lang/crates.io-index" 2833checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2834 2835[[package]] 2836name = "winapi-x86_64-pc-windows-gnu" 2837version = "0.4.0" 2838source = "registry+https://github.com/rust-lang/crates.io-index" 2839checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2840 2841[[package]] 2842name = "windows-core" 2843version = "0.52.0" 2844source = "registry+https://github.com/rust-lang/crates.io-index" 2845checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 2846dependencies = [ 2847 "windows-targets 0.52.6", 2848] 2849 2850[[package]] 2851name = "windows-sys" 2852version = "0.48.0" 2853source = "registry+https://github.com/rust-lang/crates.io-index" 2854checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2855dependencies = [ 2856 "windows-targets 0.48.5", 2857] 2858 2859[[package]] 2860name = "windows-sys" 2861version = "0.52.0" 2862source = "registry+https://github.com/rust-lang/crates.io-index" 2863checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2864dependencies = [ 2865 "windows-targets 0.52.6", 2866] 2867 2868[[package]] 2869name = "windows-sys" 2870version = "0.59.0" 2871source = "registry+https://github.com/rust-lang/crates.io-index" 2872checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 2873dependencies = [ 2874 "windows-targets 0.52.6", 2875] 2876 2877[[package]] 2878name = "windows-targets" 2879version = "0.48.5" 2880source = "registry+https://github.com/rust-lang/crates.io-index" 2881checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 2882dependencies = [ 2883 "windows_aarch64_gnullvm 0.48.5", 2884 "windows_aarch64_msvc 0.48.5", 2885 "windows_i686_gnu 0.48.5", 2886 "windows_i686_msvc 0.48.5", 2887 "windows_x86_64_gnu 0.48.5", 2888 "windows_x86_64_gnullvm 0.48.5", 2889 "windows_x86_64_msvc 0.48.5", 2890] 2891 2892[[package]] 2893name = "windows-targets" 2894version = "0.52.6" 2895source = "registry+https://github.com/rust-lang/crates.io-index" 2896checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 2897dependencies = [ 2898 "windows_aarch64_gnullvm 0.52.6", 2899 "windows_aarch64_msvc 0.52.6", 2900 "windows_i686_gnu 0.52.6", 2901 "windows_i686_gnullvm", 2902 "windows_i686_msvc 0.52.6", 2903 "windows_x86_64_gnu 0.52.6", 2904 "windows_x86_64_gnullvm 0.52.6", 2905 "windows_x86_64_msvc 0.52.6", 2906] 2907 2908[[package]] 2909name = "windows_aarch64_gnullvm" 2910version = "0.48.5" 2911source = "registry+https://github.com/rust-lang/crates.io-index" 2912checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 2913 2914[[package]] 2915name = "windows_aarch64_gnullvm" 2916version = "0.52.6" 2917source = "registry+https://github.com/rust-lang/crates.io-index" 2918checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 2919 2920[[package]] 2921name = "windows_aarch64_msvc" 2922version = "0.48.5" 2923source = "registry+https://github.com/rust-lang/crates.io-index" 2924checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 2925 2926[[package]] 2927name = "windows_aarch64_msvc" 2928version = "0.52.6" 2929source = "registry+https://github.com/rust-lang/crates.io-index" 2930checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 2931 2932[[package]] 2933name = "windows_i686_gnu" 2934version = "0.48.5" 2935source = "registry+https://github.com/rust-lang/crates.io-index" 2936checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 2937 2938[[package]] 2939name = "windows_i686_gnu" 2940version = "0.52.6" 2941source = "registry+https://github.com/rust-lang/crates.io-index" 2942checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 2943 2944[[package]] 2945name = "windows_i686_gnullvm" 2946version = "0.52.6" 2947source = "registry+https://github.com/rust-lang/crates.io-index" 2948checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 2949 2950[[package]] 2951name = "windows_i686_msvc" 2952version = "0.48.5" 2953source = "registry+https://github.com/rust-lang/crates.io-index" 2954checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 2955 2956[[package]] 2957name = "windows_i686_msvc" 2958version = "0.52.6" 2959source = "registry+https://github.com/rust-lang/crates.io-index" 2960checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 2961 2962[[package]] 2963name = "windows_x86_64_gnu" 2964version = "0.48.5" 2965source = "registry+https://github.com/rust-lang/crates.io-index" 2966checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 2967 2968[[package]] 2969name = "windows_x86_64_gnu" 2970version = "0.52.6" 2971source = "registry+https://github.com/rust-lang/crates.io-index" 2972checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 2973 2974[[package]] 2975name = "windows_x86_64_gnullvm" 2976version = "0.48.5" 2977source = "registry+https://github.com/rust-lang/crates.io-index" 2978checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 2979 2980[[package]] 2981name = "windows_x86_64_gnullvm" 2982version = "0.52.6" 2983source = "registry+https://github.com/rust-lang/crates.io-index" 2984checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 2985 2986[[package]] 2987name = "windows_x86_64_msvc" 2988version = "0.48.5" 2989source = "registry+https://github.com/rust-lang/crates.io-index" 2990checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 2991 2992[[package]] 2993name = "windows_x86_64_msvc" 2994version = "0.52.6" 2995source = "registry+https://github.com/rust-lang/crates.io-index" 2996checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 2997 2998[[package]] 2999name = "write16" 3000version = "1.0.0" 3001source = "registry+https://github.com/rust-lang/crates.io-index" 3002checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" 3003 3004[[package]] 3005name = "writeable" 3006version = "0.5.5" 3007source = "registry+https://github.com/rust-lang/crates.io-index" 3008checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" 3009 3010[[package]] 3011name = "yoke" 3012version = "0.7.5" 3013source = "registry+https://github.com/rust-lang/crates.io-index" 3014checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" 3015dependencies = [ 3016 "serde", 3017 "stable_deref_trait", 3018 "yoke-derive", 3019 "zerofrom", 3020] 3021 3022[[package]] 3023name = "yoke-derive" 3024version = "0.7.5" 3025source = "registry+https://github.com/rust-lang/crates.io-index" 3026checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" 3027dependencies = [ 3028 "proc-macro2", 3029 "quote", 3030 "syn", 3031 "synstructure", 3032] 3033 3034[[package]] 3035name = "zerocopy" 3036version = "0.7.35" 3037source = "registry+https://github.com/rust-lang/crates.io-index" 3038checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 3039dependencies = [ 3040 "byteorder", 3041 "zerocopy-derive", 3042] 3043 3044[[package]] 3045name = "zerocopy-derive" 3046version = "0.7.35" 3047source = "registry+https://github.com/rust-lang/crates.io-index" 3048checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 3049dependencies = [ 3050 "proc-macro2", 3051 "quote", 3052 "syn", 3053] 3054 3055[[package]] 3056name = "zerofrom" 3057version = "0.1.5" 3058source = "registry+https://github.com/rust-lang/crates.io-index" 3059checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" 3060dependencies = [ 3061 "zerofrom-derive", 3062] 3063 3064[[package]] 3065name = "zerofrom-derive" 3066version = "0.1.5" 3067source = "registry+https://github.com/rust-lang/crates.io-index" 3068checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" 3069dependencies = [ 3070 "proc-macro2", 3071 "quote", 3072 "syn", 3073 "synstructure", 3074] 3075 3076[[package]] 3077name = "zeroize" 3078version = "1.8.1" 3079source = "registry+https://github.com/rust-lang/crates.io-index" 3080checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 3081 3082[[package]] 3083name = "zerovec" 3084version = "0.10.4" 3085source = "registry+https://github.com/rust-lang/crates.io-index" 3086checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" 3087dependencies = [ 3088 "yoke", 3089 "zerofrom", 3090 "zerovec-derive", 3091] 3092 3093[[package]] 3094name = "zerovec-derive" 3095version = "0.10.3" 3096source = "registry+https://github.com/rust-lang/crates.io-index" 3097checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" 3098dependencies = [ 3099 "proc-macro2", 3100 "quote", 3101 "syn", 3102] 3103 3104[[package]] 3105name = "zstd" 3106version = "0.13.2" 3107source = "registry+https://github.com/rust-lang/crates.io-index" 3108checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9" 3109dependencies = [ 3110 "zstd-safe", 3111] 3112 3113[[package]] 3114name = "zstd-safe" 3115version = "7.2.1" 3116source = "registry+https://github.com/rust-lang/crates.io-index" 3117checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" 3118dependencies = [ 3119 "zstd-sys", 3120] 3121 3122[[package]] 3123name = "zstd-sys" 3124version = "2.0.13+zstd.1.5.6" 3125source = "registry+https://github.com/rust-lang/crates.io-index" 3126checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" 3127dependencies = [ 3128 "cc", 3129 "pkg-config", 3130]