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