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 = "rust-embed" 1862version = "6.8.1" 1863source = "registry+https://github.com/rust-lang/crates.io-index" 1864checksum = "a36224c3276f8c4ebc8c20f158eca7ca4359c8db89991c4925132aaaf6702661" 1865dependencies = [ 1866 "rust-embed-impl", 1867 "rust-embed-utils", 1868 "walkdir", 1869] 1870 1871[[package]] 1872name = "rust-embed-impl" 1873version = "6.8.1" 1874source = "registry+https://github.com/rust-lang/crates.io-index" 1875checksum = "49b94b81e5b2c284684141a2fb9e2a31be90638caf040bf9afbc5a0416afe1ac" 1876dependencies = [ 1877 "proc-macro2", 1878 "quote", 1879 "rust-embed-utils", 1880 "syn", 1881 "walkdir", 1882] 1883 1884[[package]] 1885name = "rust-embed-utils" 1886version = "7.8.1" 1887source = "registry+https://github.com/rust-lang/crates.io-index" 1888checksum = "9d38ff6bf570dc3bb7100fce9f7b60c33fa71d80e88da3f2580df4ff2bdded74" 1889dependencies = [ 1890 "sha2", 1891 "walkdir", 1892] 1893 1894[[package]] 1895name = "rustc-demangle" 1896version = "0.1.24" 1897source = "registry+https://github.com/rust-lang/crates.io-index" 1898checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 1899 1900[[package]] 1901name = "rustc_version" 1902version = "0.4.1" 1903source = "registry+https://github.com/rust-lang/crates.io-index" 1904checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 1905dependencies = [ 1906 "semver", 1907] 1908 1909[[package]] 1910name = "rustix" 1911version = "0.38.44" 1912source = "registry+https://github.com/rust-lang/crates.io-index" 1913checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" 1914dependencies = [ 1915 "bitflags", 1916 "errno", 1917 "libc", 1918 "linux-raw-sys", 1919 "windows-sys 0.59.0", 1920] 1921 1922[[package]] 1923name = "rustversion" 1924version = "1.0.19" 1925source = "registry+https://github.com/rust-lang/crates.io-index" 1926checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4" 1927 1928[[package]] 1929name = "ryu" 1930version = "1.0.18" 1931source = "registry+https://github.com/rust-lang/crates.io-index" 1932checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 1933 1934[[package]] 1935name = "same-file" 1936version = "1.0.6" 1937source = "registry+https://github.com/rust-lang/crates.io-index" 1938checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1939dependencies = [ 1940 "winapi-util", 1941] 1942 1943[[package]] 1944name = "schannel" 1945version = "0.1.27" 1946source = "registry+https://github.com/rust-lang/crates.io-index" 1947checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" 1948dependencies = [ 1949 "windows-sys 0.59.0", 1950] 1951 1952[[package]] 1953name = "scopeguard" 1954version = "1.2.0" 1955source = "registry+https://github.com/rust-lang/crates.io-index" 1956checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1957 1958[[package]] 1959name = "security-framework" 1960version = "2.11.1" 1961source = "registry+https://github.com/rust-lang/crates.io-index" 1962checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 1963dependencies = [ 1964 "bitflags", 1965 "core-foundation", 1966 "core-foundation-sys", 1967 "libc", 1968 "security-framework-sys", 1969] 1970 1971[[package]] 1972name = "security-framework-sys" 1973version = "2.14.0" 1974source = "registry+https://github.com/rust-lang/crates.io-index" 1975checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" 1976dependencies = [ 1977 "core-foundation-sys", 1978 "libc", 1979] 1980 1981[[package]] 1982name = "semver" 1983version = "1.0.25" 1984source = "registry+https://github.com/rust-lang/crates.io-index" 1985checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03" 1986 1987[[package]] 1988name = "serde" 1989version = "1.0.217" 1990source = "registry+https://github.com/rust-lang/crates.io-index" 1991checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" 1992dependencies = [ 1993 "serde_derive", 1994] 1995 1996[[package]] 1997name = "serde_derive" 1998version = "1.0.217" 1999source = "registry+https://github.com/rust-lang/crates.io-index" 2000checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" 2001dependencies = [ 2002 "proc-macro2", 2003 "quote", 2004 "syn", 2005] 2006 2007[[package]] 2008name = "serde_json" 2009version = "1.0.137" 2010source = "registry+https://github.com/rust-lang/crates.io-index" 2011checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b" 2012dependencies = [ 2013 "itoa", 2014 "memchr", 2015 "ryu", 2016 "serde", 2017] 2018 2019[[package]] 2020name = "serde_urlencoded" 2021version = "0.7.1" 2022source = "registry+https://github.com/rust-lang/crates.io-index" 2023checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2024dependencies = [ 2025 "form_urlencoded", 2026 "itoa", 2027 "ryu", 2028 "serde", 2029] 2030 2031[[package]] 2032name = "sha1" 2033version = "0.10.6" 2034source = "registry+https://github.com/rust-lang/crates.io-index" 2035checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 2036dependencies = [ 2037 "cfg-if", 2038 "cpufeatures", 2039 "digest", 2040] 2041 2042[[package]] 2043name = "sha2" 2044version = "0.10.8" 2045source = "registry+https://github.com/rust-lang/crates.io-index" 2046checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 2047dependencies = [ 2048 "cfg-if", 2049 "cpufeatures", 2050 "digest", 2051] 2052 2053[[package]] 2054name = "sharded-slab" 2055version = "0.1.7" 2056source = "registry+https://github.com/rust-lang/crates.io-index" 2057checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 2058dependencies = [ 2059 "lazy_static", 2060] 2061 2062[[package]] 2063name = "shlex" 2064version = "1.3.0" 2065source = "registry+https://github.com/rust-lang/crates.io-index" 2066checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2067 2068[[package]] 2069name = "signal-hook-registry" 2070version = "1.4.2" 2071source = "registry+https://github.com/rust-lang/crates.io-index" 2072checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 2073dependencies = [ 2074 "libc", 2075] 2076 2077[[package]] 2078name = "signature" 2079version = "2.2.0" 2080source = "registry+https://github.com/rust-lang/crates.io-index" 2081checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 2082dependencies = [ 2083 "digest", 2084 "rand_core", 2085] 2086 2087[[package]] 2088name = "simple_asn1" 2089version = "0.6.3" 2090source = "registry+https://github.com/rust-lang/crates.io-index" 2091checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" 2092dependencies = [ 2093 "num-bigint", 2094 "num-traits", 2095 "thiserror 2.0.11", 2096 "time", 2097] 2098 2099[[package]] 2100name = "simplelink" 2101version = "0.1.0" 2102dependencies = [ 2103 "actix-cors", 2104 "actix-files", 2105 "actix-web", 2106 "anyhow", 2107 "argon2", 2108 "base62", 2109 "chrono", 2110 "clap", 2111 "dotenv", 2112 "jsonwebtoken", 2113 "lazy_static", 2114 "mime_guess", 2115 "rand", 2116 "regex", 2117 "rust-embed", 2118 "serde", 2119 "serde_json", 2120 "sqlx", 2121 "thiserror 1.0.69", 2122 "tokio", 2123 "tracing", 2124 "tracing-subscriber", 2125 "uuid", 2126] 2127 2128[[package]] 2129name = "slab" 2130version = "0.4.9" 2131source = "registry+https://github.com/rust-lang/crates.io-index" 2132checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 2133dependencies = [ 2134 "autocfg", 2135] 2136 2137[[package]] 2138name = "smallvec" 2139version = "1.13.2" 2140source = "registry+https://github.com/rust-lang/crates.io-index" 2141checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 2142dependencies = [ 2143 "serde", 2144] 2145 2146[[package]] 2147name = "socket2" 2148version = "0.5.8" 2149source = "registry+https://github.com/rust-lang/crates.io-index" 2150checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" 2151dependencies = [ 2152 "libc", 2153 "windows-sys 0.52.0", 2154] 2155 2156[[package]] 2157name = "spin" 2158version = "0.9.8" 2159source = "registry+https://github.com/rust-lang/crates.io-index" 2160checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 2161dependencies = [ 2162 "lock_api", 2163] 2164 2165[[package]] 2166name = "spki" 2167version = "0.7.3" 2168source = "registry+https://github.com/rust-lang/crates.io-index" 2169checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 2170dependencies = [ 2171 "base64ct", 2172 "der", 2173] 2174 2175[[package]] 2176name = "sqlformat" 2177version = "0.2.6" 2178source = "registry+https://github.com/rust-lang/crates.io-index" 2179checksum = "7bba3a93db0cc4f7bdece8bb09e77e2e785c20bfebf79eb8340ed80708048790" 2180dependencies = [ 2181 "nom", 2182 "unicode_categories", 2183] 2184 2185[[package]] 2186name = "sqlx" 2187version = "0.8.1" 2188source = "registry+https://github.com/rust-lang/crates.io-index" 2189checksum = "fcfa89bea9500db4a0d038513d7a060566bfc51d46d1c014847049a45cce85e8" 2190dependencies = [ 2191 "sqlx-core", 2192 "sqlx-macros", 2193 "sqlx-mysql", 2194 "sqlx-postgres", 2195 "sqlx-sqlite", 2196] 2197 2198[[package]] 2199name = "sqlx-core" 2200version = "0.8.1" 2201source = "registry+https://github.com/rust-lang/crates.io-index" 2202checksum = "d06e2f2bd861719b1f3f0c7dbe1d80c30bf59e76cf019f07d9014ed7eefb8e08" 2203dependencies = [ 2204 "atoi", 2205 "byteorder", 2206 "bytes", 2207 "chrono", 2208 "crc", 2209 "crossbeam-queue", 2210 "either", 2211 "event-listener", 2212 "futures-channel", 2213 "futures-core", 2214 "futures-intrusive", 2215 "futures-io", 2216 "futures-util", 2217 "hashbrown 0.14.5", 2218 "hashlink", 2219 "hex", 2220 "indexmap", 2221 "log", 2222 "memchr", 2223 "native-tls", 2224 "once_cell", 2225 "paste", 2226 "percent-encoding", 2227 "serde", 2228 "serde_json", 2229 "sha2", 2230 "smallvec", 2231 "sqlformat", 2232 "thiserror 1.0.69", 2233 "tokio", 2234 "tokio-stream", 2235 "tracing", 2236 "url", 2237 "uuid", 2238] 2239 2240[[package]] 2241name = "sqlx-macros" 2242version = "0.8.1" 2243source = "registry+https://github.com/rust-lang/crates.io-index" 2244checksum = "2f998a9defdbd48ed005a89362bd40dd2117502f15294f61c8d47034107dbbdc" 2245dependencies = [ 2246 "proc-macro2", 2247 "quote", 2248 "sqlx-core", 2249 "sqlx-macros-core", 2250 "syn", 2251] 2252 2253[[package]] 2254name = "sqlx-macros-core" 2255version = "0.8.1" 2256source = "registry+https://github.com/rust-lang/crates.io-index" 2257checksum = "3d100558134176a2629d46cec0c8891ba0be8910f7896abfdb75ef4ab6f4e7ce" 2258dependencies = [ 2259 "dotenvy", 2260 "either", 2261 "heck", 2262 "hex", 2263 "once_cell", 2264 "proc-macro2", 2265 "quote", 2266 "serde", 2267 "serde_json", 2268 "sha2", 2269 "sqlx-core", 2270 "sqlx-mysql", 2271 "sqlx-postgres", 2272 "sqlx-sqlite", 2273 "syn", 2274 "tempfile", 2275 "tokio", 2276 "url", 2277] 2278 2279[[package]] 2280name = "sqlx-mysql" 2281version = "0.8.1" 2282source = "registry+https://github.com/rust-lang/crates.io-index" 2283checksum = "936cac0ab331b14cb3921c62156d913e4c15b74fb6ec0f3146bd4ef6e4fb3c12" 2284dependencies = [ 2285 "atoi", 2286 "base64 0.22.1", 2287 "bitflags", 2288 "byteorder", 2289 "bytes", 2290 "chrono", 2291 "crc", 2292 "digest", 2293 "dotenvy", 2294 "either", 2295 "futures-channel", 2296 "futures-core", 2297 "futures-io", 2298 "futures-util", 2299 "generic-array", 2300 "hex", 2301 "hkdf", 2302 "hmac", 2303 "itoa", 2304 "log", 2305 "md-5", 2306 "memchr", 2307 "once_cell", 2308 "percent-encoding", 2309 "rand", 2310 "rsa", 2311 "serde", 2312 "sha1", 2313 "sha2", 2314 "smallvec", 2315 "sqlx-core", 2316 "stringprep", 2317 "thiserror 1.0.69", 2318 "tracing", 2319 "uuid", 2320 "whoami", 2321] 2322 2323[[package]] 2324name = "sqlx-postgres" 2325version = "0.8.1" 2326source = "registry+https://github.com/rust-lang/crates.io-index" 2327checksum = "9734dbce698c67ecf67c442f768a5e90a49b2a4d61a9f1d59f73874bd4cf0710" 2328dependencies = [ 2329 "atoi", 2330 "base64 0.22.1", 2331 "bitflags", 2332 "byteorder", 2333 "chrono", 2334 "crc", 2335 "dotenvy", 2336 "etcetera", 2337 "futures-channel", 2338 "futures-core", 2339 "futures-io", 2340 "futures-util", 2341 "hex", 2342 "hkdf", 2343 "hmac", 2344 "home", 2345 "itoa", 2346 "log", 2347 "md-5", 2348 "memchr", 2349 "once_cell", 2350 "rand", 2351 "serde", 2352 "serde_json", 2353 "sha2", 2354 "smallvec", 2355 "sqlx-core", 2356 "stringprep", 2357 "thiserror 1.0.69", 2358 "tracing", 2359 "uuid", 2360 "whoami", 2361] 2362 2363[[package]] 2364name = "sqlx-sqlite" 2365version = "0.8.1" 2366source = "registry+https://github.com/rust-lang/crates.io-index" 2367checksum = "a75b419c3c1b1697833dd927bdc4c6545a620bc1bbafabd44e1efbe9afcd337e" 2368dependencies = [ 2369 "atoi", 2370 "chrono", 2371 "flume", 2372 "futures-channel", 2373 "futures-core", 2374 "futures-executor", 2375 "futures-intrusive", 2376 "futures-util", 2377 "libsqlite3-sys", 2378 "log", 2379 "percent-encoding", 2380 "serde", 2381 "serde_urlencoded", 2382 "sqlx-core", 2383 "tracing", 2384 "url", 2385 "uuid", 2386] 2387 2388[[package]] 2389name = "stable_deref_trait" 2390version = "1.2.0" 2391source = "registry+https://github.com/rust-lang/crates.io-index" 2392checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2393 2394[[package]] 2395name = "stringprep" 2396version = "0.1.5" 2397source = "registry+https://github.com/rust-lang/crates.io-index" 2398checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" 2399dependencies = [ 2400 "unicode-bidi", 2401 "unicode-normalization", 2402 "unicode-properties", 2403] 2404 2405[[package]] 2406name = "strsim" 2407version = "0.11.1" 2408source = "registry+https://github.com/rust-lang/crates.io-index" 2409checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 2410 2411[[package]] 2412name = "subtle" 2413version = "2.6.1" 2414source = "registry+https://github.com/rust-lang/crates.io-index" 2415checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 2416 2417[[package]] 2418name = "syn" 2419version = "2.0.96" 2420source = "registry+https://github.com/rust-lang/crates.io-index" 2421checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" 2422dependencies = [ 2423 "proc-macro2", 2424 "quote", 2425 "unicode-ident", 2426] 2427 2428[[package]] 2429name = "synstructure" 2430version = "0.13.1" 2431source = "registry+https://github.com/rust-lang/crates.io-index" 2432checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 2433dependencies = [ 2434 "proc-macro2", 2435 "quote", 2436 "syn", 2437] 2438 2439[[package]] 2440name = "tempfile" 2441version = "3.15.0" 2442source = "registry+https://github.com/rust-lang/crates.io-index" 2443checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" 2444dependencies = [ 2445 "cfg-if", 2446 "fastrand", 2447 "getrandom", 2448 "once_cell", 2449 "rustix", 2450 "windows-sys 0.59.0", 2451] 2452 2453[[package]] 2454name = "thiserror" 2455version = "1.0.69" 2456source = "registry+https://github.com/rust-lang/crates.io-index" 2457checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 2458dependencies = [ 2459 "thiserror-impl 1.0.69", 2460] 2461 2462[[package]] 2463name = "thiserror" 2464version = "2.0.11" 2465source = "registry+https://github.com/rust-lang/crates.io-index" 2466checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc" 2467dependencies = [ 2468 "thiserror-impl 2.0.11", 2469] 2470 2471[[package]] 2472name = "thiserror-impl" 2473version = "1.0.69" 2474source = "registry+https://github.com/rust-lang/crates.io-index" 2475checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 2476dependencies = [ 2477 "proc-macro2", 2478 "quote", 2479 "syn", 2480] 2481 2482[[package]] 2483name = "thiserror-impl" 2484version = "2.0.11" 2485source = "registry+https://github.com/rust-lang/crates.io-index" 2486checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2" 2487dependencies = [ 2488 "proc-macro2", 2489 "quote", 2490 "syn", 2491] 2492 2493[[package]] 2494name = "thread_local" 2495version = "1.1.8" 2496source = "registry+https://github.com/rust-lang/crates.io-index" 2497checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 2498dependencies = [ 2499 "cfg-if", 2500 "once_cell", 2501] 2502 2503[[package]] 2504name = "time" 2505version = "0.3.37" 2506source = "registry+https://github.com/rust-lang/crates.io-index" 2507checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" 2508dependencies = [ 2509 "deranged", 2510 "itoa", 2511 "num-conv", 2512 "powerfmt", 2513 "serde", 2514 "time-core", 2515 "time-macros", 2516] 2517 2518[[package]] 2519name = "time-core" 2520version = "0.1.2" 2521source = "registry+https://github.com/rust-lang/crates.io-index" 2522checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 2523 2524[[package]] 2525name = "time-macros" 2526version = "0.2.19" 2527source = "registry+https://github.com/rust-lang/crates.io-index" 2528checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" 2529dependencies = [ 2530 "num-conv", 2531 "time-core", 2532] 2533 2534[[package]] 2535name = "tinystr" 2536version = "0.7.6" 2537source = "registry+https://github.com/rust-lang/crates.io-index" 2538checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 2539dependencies = [ 2540 "displaydoc", 2541 "zerovec", 2542] 2543 2544[[package]] 2545name = "tinyvec" 2546version = "1.8.1" 2547source = "registry+https://github.com/rust-lang/crates.io-index" 2548checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8" 2549dependencies = [ 2550 "tinyvec_macros", 2551] 2552 2553[[package]] 2554name = "tinyvec_macros" 2555version = "0.1.1" 2556source = "registry+https://github.com/rust-lang/crates.io-index" 2557checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2558 2559[[package]] 2560name = "tokio" 2561version = "1.43.0" 2562source = "registry+https://github.com/rust-lang/crates.io-index" 2563checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" 2564dependencies = [ 2565 "backtrace", 2566 "bytes", 2567 "libc", 2568 "mio", 2569 "parking_lot", 2570 "pin-project-lite", 2571 "signal-hook-registry", 2572 "socket2", 2573 "tokio-macros", 2574 "windows-sys 0.52.0", 2575] 2576 2577[[package]] 2578name = "tokio-macros" 2579version = "2.5.0" 2580source = "registry+https://github.com/rust-lang/crates.io-index" 2581checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 2582dependencies = [ 2583 "proc-macro2", 2584 "quote", 2585 "syn", 2586] 2587 2588[[package]] 2589name = "tokio-stream" 2590version = "0.1.17" 2591source = "registry+https://github.com/rust-lang/crates.io-index" 2592checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" 2593dependencies = [ 2594 "futures-core", 2595 "pin-project-lite", 2596 "tokio", 2597] 2598 2599[[package]] 2600name = "tokio-util" 2601version = "0.7.13" 2602source = "registry+https://github.com/rust-lang/crates.io-index" 2603checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078" 2604dependencies = [ 2605 "bytes", 2606 "futures-core", 2607 "futures-sink", 2608 "pin-project-lite", 2609 "tokio", 2610] 2611 2612[[package]] 2613name = "tracing" 2614version = "0.1.41" 2615source = "registry+https://github.com/rust-lang/crates.io-index" 2616checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 2617dependencies = [ 2618 "log", 2619 "pin-project-lite", 2620 "tracing-attributes", 2621 "tracing-core", 2622] 2623 2624[[package]] 2625name = "tracing-attributes" 2626version = "0.1.28" 2627source = "registry+https://github.com/rust-lang/crates.io-index" 2628checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" 2629dependencies = [ 2630 "proc-macro2", 2631 "quote", 2632 "syn", 2633] 2634 2635[[package]] 2636name = "tracing-core" 2637version = "0.1.33" 2638source = "registry+https://github.com/rust-lang/crates.io-index" 2639checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" 2640dependencies = [ 2641 "once_cell", 2642 "valuable", 2643] 2644 2645[[package]] 2646name = "tracing-log" 2647version = "0.2.0" 2648source = "registry+https://github.com/rust-lang/crates.io-index" 2649checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 2650dependencies = [ 2651 "log", 2652 "once_cell", 2653 "tracing-core", 2654] 2655 2656[[package]] 2657name = "tracing-subscriber" 2658version = "0.3.19" 2659source = "registry+https://github.com/rust-lang/crates.io-index" 2660checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" 2661dependencies = [ 2662 "nu-ansi-term", 2663 "sharded-slab", 2664 "smallvec", 2665 "thread_local", 2666 "tracing-core", 2667 "tracing-log", 2668] 2669 2670[[package]] 2671name = "typenum" 2672version = "1.17.0" 2673source = "registry+https://github.com/rust-lang/crates.io-index" 2674checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 2675 2676[[package]] 2677name = "unicase" 2678version = "2.8.1" 2679source = "registry+https://github.com/rust-lang/crates.io-index" 2680checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" 2681 2682[[package]] 2683name = "unicode-bidi" 2684version = "0.3.18" 2685source = "registry+https://github.com/rust-lang/crates.io-index" 2686checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" 2687 2688[[package]] 2689name = "unicode-ident" 2690version = "1.0.15" 2691source = "registry+https://github.com/rust-lang/crates.io-index" 2692checksum = "11cd88e12b17c6494200a9c1b683a04fcac9573ed74cd1b62aeb2727c5592243" 2693 2694[[package]] 2695name = "unicode-normalization" 2696version = "0.1.24" 2697source = "registry+https://github.com/rust-lang/crates.io-index" 2698checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" 2699dependencies = [ 2700 "tinyvec", 2701] 2702 2703[[package]] 2704name = "unicode-properties" 2705version = "0.1.3" 2706source = "registry+https://github.com/rust-lang/crates.io-index" 2707checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0" 2708 2709[[package]] 2710name = "unicode_categories" 2711version = "0.1.1" 2712source = "registry+https://github.com/rust-lang/crates.io-index" 2713checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 2714 2715[[package]] 2716name = "untrusted" 2717version = "0.9.0" 2718source = "registry+https://github.com/rust-lang/crates.io-index" 2719checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 2720 2721[[package]] 2722name = "url" 2723version = "2.5.4" 2724source = "registry+https://github.com/rust-lang/crates.io-index" 2725checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 2726dependencies = [ 2727 "form_urlencoded", 2728 "idna", 2729 "percent-encoding", 2730] 2731 2732[[package]] 2733name = "utf16_iter" 2734version = "1.0.5" 2735source = "registry+https://github.com/rust-lang/crates.io-index" 2736checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" 2737 2738[[package]] 2739name = "utf8_iter" 2740version = "1.0.4" 2741source = "registry+https://github.com/rust-lang/crates.io-index" 2742checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 2743 2744[[package]] 2745name = "utf8parse" 2746version = "0.2.2" 2747source = "registry+https://github.com/rust-lang/crates.io-index" 2748checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 2749 2750[[package]] 2751name = "uuid" 2752version = "1.12.1" 2753source = "registry+https://github.com/rust-lang/crates.io-index" 2754checksum = "b3758f5e68192bb96cc8f9b7e2c2cfdabb435499a28499a42f8f984092adad4b" 2755dependencies = [ 2756 "getrandom", 2757 "serde", 2758] 2759 2760[[package]] 2761name = "v_htmlescape" 2762version = "0.15.8" 2763source = "registry+https://github.com/rust-lang/crates.io-index" 2764checksum = "4e8257fbc510f0a46eb602c10215901938b5c2a7d5e70fc11483b1d3c9b5b18c" 2765 2766[[package]] 2767name = "valuable" 2768version = "0.1.1" 2769source = "registry+https://github.com/rust-lang/crates.io-index" 2770checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 2771 2772[[package]] 2773name = "vcpkg" 2774version = "0.2.15" 2775source = "registry+https://github.com/rust-lang/crates.io-index" 2776checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2777 2778[[package]] 2779name = "version_check" 2780version = "0.9.5" 2781source = "registry+https://github.com/rust-lang/crates.io-index" 2782checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 2783 2784[[package]] 2785name = "walkdir" 2786version = "2.5.0" 2787source = "registry+https://github.com/rust-lang/crates.io-index" 2788checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 2789dependencies = [ 2790 "same-file", 2791 "winapi-util", 2792] 2793 2794[[package]] 2795name = "wasi" 2796version = "0.11.0+wasi-snapshot-preview1" 2797source = "registry+https://github.com/rust-lang/crates.io-index" 2798checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2799 2800[[package]] 2801name = "wasite" 2802version = "0.1.0" 2803source = "registry+https://github.com/rust-lang/crates.io-index" 2804checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" 2805 2806[[package]] 2807name = "wasm-bindgen" 2808version = "0.2.100" 2809source = "registry+https://github.com/rust-lang/crates.io-index" 2810checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 2811dependencies = [ 2812 "cfg-if", 2813 "once_cell", 2814 "rustversion", 2815 "wasm-bindgen-macro", 2816] 2817 2818[[package]] 2819name = "wasm-bindgen-backend" 2820version = "0.2.100" 2821source = "registry+https://github.com/rust-lang/crates.io-index" 2822checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 2823dependencies = [ 2824 "bumpalo", 2825 "log", 2826 "proc-macro2", 2827 "quote", 2828 "syn", 2829 "wasm-bindgen-shared", 2830] 2831 2832[[package]] 2833name = "wasm-bindgen-macro" 2834version = "0.2.100" 2835source = "registry+https://github.com/rust-lang/crates.io-index" 2836checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 2837dependencies = [ 2838 "quote", 2839 "wasm-bindgen-macro-support", 2840] 2841 2842[[package]] 2843name = "wasm-bindgen-macro-support" 2844version = "0.2.100" 2845source = "registry+https://github.com/rust-lang/crates.io-index" 2846checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 2847dependencies = [ 2848 "proc-macro2", 2849 "quote", 2850 "syn", 2851 "wasm-bindgen-backend", 2852 "wasm-bindgen-shared", 2853] 2854 2855[[package]] 2856name = "wasm-bindgen-shared" 2857version = "0.2.100" 2858source = "registry+https://github.com/rust-lang/crates.io-index" 2859checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 2860dependencies = [ 2861 "unicode-ident", 2862] 2863 2864[[package]] 2865name = "whoami" 2866version = "1.5.2" 2867source = "registry+https://github.com/rust-lang/crates.io-index" 2868checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d" 2869dependencies = [ 2870 "redox_syscall", 2871 "wasite", 2872] 2873 2874[[package]] 2875name = "winapi" 2876version = "0.3.9" 2877source = "registry+https://github.com/rust-lang/crates.io-index" 2878checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2879dependencies = [ 2880 "winapi-i686-pc-windows-gnu", 2881 "winapi-x86_64-pc-windows-gnu", 2882] 2883 2884[[package]] 2885name = "winapi-i686-pc-windows-gnu" 2886version = "0.4.0" 2887source = "registry+https://github.com/rust-lang/crates.io-index" 2888checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2889 2890[[package]] 2891name = "winapi-util" 2892version = "0.1.9" 2893source = "registry+https://github.com/rust-lang/crates.io-index" 2894checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 2895dependencies = [ 2896 "windows-sys 0.59.0", 2897] 2898 2899[[package]] 2900name = "winapi-x86_64-pc-windows-gnu" 2901version = "0.4.0" 2902source = "registry+https://github.com/rust-lang/crates.io-index" 2903checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2904 2905[[package]] 2906name = "windows-core" 2907version = "0.52.0" 2908source = "registry+https://github.com/rust-lang/crates.io-index" 2909checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 2910dependencies = [ 2911 "windows-targets 0.52.6", 2912] 2913 2914[[package]] 2915name = "windows-sys" 2916version = "0.48.0" 2917source = "registry+https://github.com/rust-lang/crates.io-index" 2918checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2919dependencies = [ 2920 "windows-targets 0.48.5", 2921] 2922 2923[[package]] 2924name = "windows-sys" 2925version = "0.52.0" 2926source = "registry+https://github.com/rust-lang/crates.io-index" 2927checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2928dependencies = [ 2929 "windows-targets 0.52.6", 2930] 2931 2932[[package]] 2933name = "windows-sys" 2934version = "0.59.0" 2935source = "registry+https://github.com/rust-lang/crates.io-index" 2936checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 2937dependencies = [ 2938 "windows-targets 0.52.6", 2939] 2940 2941[[package]] 2942name = "windows-targets" 2943version = "0.48.5" 2944source = "registry+https://github.com/rust-lang/crates.io-index" 2945checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 2946dependencies = [ 2947 "windows_aarch64_gnullvm 0.48.5", 2948 "windows_aarch64_msvc 0.48.5", 2949 "windows_i686_gnu 0.48.5", 2950 "windows_i686_msvc 0.48.5", 2951 "windows_x86_64_gnu 0.48.5", 2952 "windows_x86_64_gnullvm 0.48.5", 2953 "windows_x86_64_msvc 0.48.5", 2954] 2955 2956[[package]] 2957name = "windows-targets" 2958version = "0.52.6" 2959source = "registry+https://github.com/rust-lang/crates.io-index" 2960checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 2961dependencies = [ 2962 "windows_aarch64_gnullvm 0.52.6", 2963 "windows_aarch64_msvc 0.52.6", 2964 "windows_i686_gnu 0.52.6", 2965 "windows_i686_gnullvm", 2966 "windows_i686_msvc 0.52.6", 2967 "windows_x86_64_gnu 0.52.6", 2968 "windows_x86_64_gnullvm 0.52.6", 2969 "windows_x86_64_msvc 0.52.6", 2970] 2971 2972[[package]] 2973name = "windows_aarch64_gnullvm" 2974version = "0.48.5" 2975source = "registry+https://github.com/rust-lang/crates.io-index" 2976checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 2977 2978[[package]] 2979name = "windows_aarch64_gnullvm" 2980version = "0.52.6" 2981source = "registry+https://github.com/rust-lang/crates.io-index" 2982checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 2983 2984[[package]] 2985name = "windows_aarch64_msvc" 2986version = "0.48.5" 2987source = "registry+https://github.com/rust-lang/crates.io-index" 2988checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 2989 2990[[package]] 2991name = "windows_aarch64_msvc" 2992version = "0.52.6" 2993source = "registry+https://github.com/rust-lang/crates.io-index" 2994checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 2995 2996[[package]] 2997name = "windows_i686_gnu" 2998version = "0.48.5" 2999source = "registry+https://github.com/rust-lang/crates.io-index" 3000checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 3001 3002[[package]] 3003name = "windows_i686_gnu" 3004version = "0.52.6" 3005source = "registry+https://github.com/rust-lang/crates.io-index" 3006checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 3007 3008[[package]] 3009name = "windows_i686_gnullvm" 3010version = "0.52.6" 3011source = "registry+https://github.com/rust-lang/crates.io-index" 3012checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 3013 3014[[package]] 3015name = "windows_i686_msvc" 3016version = "0.48.5" 3017source = "registry+https://github.com/rust-lang/crates.io-index" 3018checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 3019 3020[[package]] 3021name = "windows_i686_msvc" 3022version = "0.52.6" 3023source = "registry+https://github.com/rust-lang/crates.io-index" 3024checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 3025 3026[[package]] 3027name = "windows_x86_64_gnu" 3028version = "0.48.5" 3029source = "registry+https://github.com/rust-lang/crates.io-index" 3030checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 3031 3032[[package]] 3033name = "windows_x86_64_gnu" 3034version = "0.52.6" 3035source = "registry+https://github.com/rust-lang/crates.io-index" 3036checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 3037 3038[[package]] 3039name = "windows_x86_64_gnullvm" 3040version = "0.48.5" 3041source = "registry+https://github.com/rust-lang/crates.io-index" 3042checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 3043 3044[[package]] 3045name = "windows_x86_64_gnullvm" 3046version = "0.52.6" 3047source = "registry+https://github.com/rust-lang/crates.io-index" 3048checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 3049 3050[[package]] 3051name = "windows_x86_64_msvc" 3052version = "0.48.5" 3053source = "registry+https://github.com/rust-lang/crates.io-index" 3054checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 3055 3056[[package]] 3057name = "windows_x86_64_msvc" 3058version = "0.52.6" 3059source = "registry+https://github.com/rust-lang/crates.io-index" 3060checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 3061 3062[[package]] 3063name = "write16" 3064version = "1.0.0" 3065source = "registry+https://github.com/rust-lang/crates.io-index" 3066checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" 3067 3068[[package]] 3069name = "writeable" 3070version = "0.5.5" 3071source = "registry+https://github.com/rust-lang/crates.io-index" 3072checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" 3073 3074[[package]] 3075name = "yoke" 3076version = "0.7.5" 3077source = "registry+https://github.com/rust-lang/crates.io-index" 3078checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" 3079dependencies = [ 3080 "serde", 3081 "stable_deref_trait", 3082 "yoke-derive", 3083 "zerofrom", 3084] 3085 3086[[package]] 3087name = "yoke-derive" 3088version = "0.7.5" 3089source = "registry+https://github.com/rust-lang/crates.io-index" 3090checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" 3091dependencies = [ 3092 "proc-macro2", 3093 "quote", 3094 "syn", 3095 "synstructure", 3096] 3097 3098[[package]] 3099name = "zerocopy" 3100version = "0.7.35" 3101source = "registry+https://github.com/rust-lang/crates.io-index" 3102checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 3103dependencies = [ 3104 "byteorder", 3105 "zerocopy-derive", 3106] 3107 3108[[package]] 3109name = "zerocopy-derive" 3110version = "0.7.35" 3111source = "registry+https://github.com/rust-lang/crates.io-index" 3112checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 3113dependencies = [ 3114 "proc-macro2", 3115 "quote", 3116 "syn", 3117] 3118 3119[[package]] 3120name = "zerofrom" 3121version = "0.1.5" 3122source = "registry+https://github.com/rust-lang/crates.io-index" 3123checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" 3124dependencies = [ 3125 "zerofrom-derive", 3126] 3127 3128[[package]] 3129name = "zerofrom-derive" 3130version = "0.1.5" 3131source = "registry+https://github.com/rust-lang/crates.io-index" 3132checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" 3133dependencies = [ 3134 "proc-macro2", 3135 "quote", 3136 "syn", 3137 "synstructure", 3138] 3139 3140[[package]] 3141name = "zeroize" 3142version = "1.8.1" 3143source = "registry+https://github.com/rust-lang/crates.io-index" 3144checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 3145 3146[[package]] 3147name = "zerovec" 3148version = "0.10.4" 3149source = "registry+https://github.com/rust-lang/crates.io-index" 3150checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" 3151dependencies = [ 3152 "yoke", 3153 "zerofrom", 3154 "zerovec-derive", 3155] 3156 3157[[package]] 3158name = "zerovec-derive" 3159version = "0.10.3" 3160source = "registry+https://github.com/rust-lang/crates.io-index" 3161checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" 3162dependencies = [ 3163 "proc-macro2", 3164 "quote", 3165 "syn", 3166] 3167 3168[[package]] 3169name = "zstd" 3170version = "0.13.2" 3171source = "registry+https://github.com/rust-lang/crates.io-index" 3172checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9" 3173dependencies = [ 3174 "zstd-safe", 3175] 3176 3177[[package]] 3178name = "zstd-safe" 3179version = "7.2.1" 3180source = "registry+https://github.com/rust-lang/crates.io-index" 3181checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" 3182dependencies = [ 3183 "zstd-sys", 3184] 3185 3186[[package]] 3187name = "zstd-sys" 3188version = "2.0.13+zstd.1.5.6" 3189source = "registry+https://github.com/rust-lang/crates.io-index" 3190checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" 3191dependencies = [ 3192 "cc", 3193 "pkg-config", 3194]