Static site generator + my presonnal website written in rust for some reason.
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "addr2line" 7version = "0.22.0" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" 10dependencies = [ 11 "gimli", 12] 13 14[[package]] 15name = "adler" 16version = "1.0.2" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 20[[package]] 21name = "adler2" 22version = "2.0.0" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 25 26[[package]] 27name = "aho-corasick" 28version = "1.1.3" 29source = "registry+https://github.com/rust-lang/crates.io-index" 30checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 31dependencies = [ 32 "memchr", 33] 34 35[[package]] 36name = "anstream" 37version = "0.6.15" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" 40dependencies = [ 41 "anstyle", 42 "anstyle-parse", 43 "anstyle-query", 44 "anstyle-wincon", 45 "colorchoice", 46 "is_terminal_polyfill", 47 "utf8parse", 48] 49 50[[package]] 51name = "anstyle" 52version = "1.0.8" 53source = "registry+https://github.com/rust-lang/crates.io-index" 54checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" 55 56[[package]] 57name = "anstyle-parse" 58version = "0.2.5" 59source = "registry+https://github.com/rust-lang/crates.io-index" 60checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" 61dependencies = [ 62 "utf8parse", 63] 64 65[[package]] 66name = "anstyle-query" 67version = "1.1.1" 68source = "registry+https://github.com/rust-lang/crates.io-index" 69checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" 70dependencies = [ 71 "windows-sys 0.52.0", 72] 73 74[[package]] 75name = "anstyle-wincon" 76version = "3.0.4" 77source = "registry+https://github.com/rust-lang/crates.io-index" 78checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" 79dependencies = [ 80 "anstyle", 81 "windows-sys 0.52.0", 82] 83 84[[package]] 85name = "askama" 86version = "0.12.1" 87source = "registry+https://github.com/rust-lang/crates.io-index" 88checksum = "b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28" 89dependencies = [ 90 "askama_derive", 91 "askama_escape", 92 "humansize", 93 "num-traits", 94 "percent-encoding", 95] 96 97[[package]] 98name = "askama_axum" 99version = "0.4.0" 100source = "registry+https://github.com/rust-lang/crates.io-index" 101checksum = "a41603f7cdbf5ac4af60760f17253eb6adf6ec5b6f14a7ed830cf687d375f163" 102dependencies = [ 103 "askama", 104 "axum-core", 105 "http", 106] 107 108[[package]] 109name = "askama_derive" 110version = "0.12.5" 111source = "registry+https://github.com/rust-lang/crates.io-index" 112checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83" 113dependencies = [ 114 "askama_parser", 115 "basic-toml", 116 "mime", 117 "mime_guess", 118 "proc-macro2", 119 "quote", 120 "serde", 121 "syn 2.0.76", 122] 123 124[[package]] 125name = "askama_escape" 126version = "0.10.3" 127source = "registry+https://github.com/rust-lang/crates.io-index" 128checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" 129 130[[package]] 131name = "askama_parser" 132version = "0.2.1" 133source = "registry+https://github.com/rust-lang/crates.io-index" 134checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0" 135dependencies = [ 136 "nom", 137] 138 139[[package]] 140name = "async-trait" 141version = "0.1.81" 142source = "registry+https://github.com/rust-lang/crates.io-index" 143checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" 144dependencies = [ 145 "proc-macro2", 146 "quote", 147 "syn 2.0.76", 148] 149 150[[package]] 151name = "autocfg" 152version = "1.3.0" 153source = "registry+https://github.com/rust-lang/crates.io-index" 154checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 155 156[[package]] 157name = "axum" 158version = "0.7.5" 159source = "registry+https://github.com/rust-lang/crates.io-index" 160checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf" 161dependencies = [ 162 "async-trait", 163 "axum-core", 164 "bytes", 165 "futures-util", 166 "http", 167 "http-body", 168 "http-body-util", 169 "hyper", 170 "hyper-util", 171 "itoa", 172 "matchit", 173 "memchr", 174 "mime", 175 "percent-encoding", 176 "pin-project-lite", 177 "rustversion", 178 "serde", 179 "serde_json", 180 "serde_path_to_error", 181 "serde_urlencoded", 182 "sync_wrapper 1.0.1", 183 "tokio", 184 "tower", 185 "tower-layer", 186 "tower-service", 187 "tracing", 188] 189 190[[package]] 191name = "axum-core" 192version = "0.4.3" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3" 195dependencies = [ 196 "async-trait", 197 "bytes", 198 "futures-util", 199 "http", 200 "http-body", 201 "http-body-util", 202 "mime", 203 "pin-project-lite", 204 "rustversion", 205 "sync_wrapper 0.1.2", 206 "tower-layer", 207 "tower-service", 208 "tracing", 209] 210 211[[package]] 212name = "backtrace" 213version = "0.3.73" 214source = "registry+https://github.com/rust-lang/crates.io-index" 215checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" 216dependencies = [ 217 "addr2line", 218 "cc", 219 "cfg-if", 220 "libc", 221 "miniz_oxide 0.7.4", 222 "object", 223 "rustc-demangle", 224] 225 226[[package]] 227name = "base64" 228version = "0.22.1" 229source = "registry+https://github.com/rust-lang/crates.io-index" 230checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 231 232[[package]] 233name = "basic-toml" 234version = "0.1.9" 235source = "registry+https://github.com/rust-lang/crates.io-index" 236checksum = "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8" 237dependencies = [ 238 "serde", 239] 240 241[[package]] 242name = "bincode" 243version = "1.3.3" 244source = "registry+https://github.com/rust-lang/crates.io-index" 245checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 246dependencies = [ 247 "serde", 248] 249 250[[package]] 251name = "bit-set" 252version = "0.5.3" 253source = "registry+https://github.com/rust-lang/crates.io-index" 254checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 255dependencies = [ 256 "bit-vec", 257] 258 259[[package]] 260name = "bit-vec" 261version = "0.6.3" 262source = "registry+https://github.com/rust-lang/crates.io-index" 263checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 264 265[[package]] 266name = "bitflags" 267version = "1.3.2" 268source = "registry+https://github.com/rust-lang/crates.io-index" 269checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 270 271[[package]] 272name = "bitflags" 273version = "2.6.0" 274source = "registry+https://github.com/rust-lang/crates.io-index" 275checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 276 277[[package]] 278name = "bumpalo" 279version = "3.16.0" 280source = "registry+https://github.com/rust-lang/crates.io-index" 281checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 282 283[[package]] 284name = "byteorder" 285version = "1.5.0" 286source = "registry+https://github.com/rust-lang/crates.io-index" 287checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 288 289[[package]] 290name = "bytes" 291version = "1.7.1" 292source = "registry+https://github.com/rust-lang/crates.io-index" 293checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" 294 295[[package]] 296name = "caseless" 297version = "0.2.1" 298source = "registry+https://github.com/rust-lang/crates.io-index" 299checksum = "808dab3318747be122cb31d36de18d4d1c81277a76f8332a02b81a3d73463d7f" 300dependencies = [ 301 "regex", 302 "unicode-normalization", 303] 304 305[[package]] 306name = "cc" 307version = "1.1.15" 308source = "registry+https://github.com/rust-lang/crates.io-index" 309checksum = "57b6a275aa2903740dc87da01c62040406b8812552e97129a63ea8850a17c6e6" 310dependencies = [ 311 "shlex", 312] 313 314[[package]] 315name = "cfg-if" 316version = "1.0.0" 317source = "registry+https://github.com/rust-lang/crates.io-index" 318checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 319 320[[package]] 321name = "clap" 322version = "4.5.16" 323source = "registry+https://github.com/rust-lang/crates.io-index" 324checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019" 325dependencies = [ 326 "clap_builder", 327 "clap_derive", 328] 329 330[[package]] 331name = "clap_builder" 332version = "4.5.15" 333source = "registry+https://github.com/rust-lang/crates.io-index" 334checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6" 335dependencies = [ 336 "anstream", 337 "anstyle", 338 "clap_lex", 339 "strsim", 340 "terminal_size", 341] 342 343[[package]] 344name = "clap_derive" 345version = "4.5.13" 346source = "registry+https://github.com/rust-lang/crates.io-index" 347checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0" 348dependencies = [ 349 "heck", 350 "proc-macro2", 351 "quote", 352 "syn 2.0.76", 353] 354 355[[package]] 356name = "clap_lex" 357version = "0.7.2" 358source = "registry+https://github.com/rust-lang/crates.io-index" 359checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" 360 361[[package]] 362name = "colorchoice" 363version = "1.0.2" 364source = "registry+https://github.com/rust-lang/crates.io-index" 365checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" 366 367[[package]] 368name = "comrak" 369version = "0.27.0" 370source = "registry+https://github.com/rust-lang/crates.io-index" 371checksum = "2d061c6d53fe98c25efda0d91b7f6b4b4020a51dad78a3eac5028710aa26f8e7" 372dependencies = [ 373 "caseless", 374 "clap", 375 "derive_builder", 376 "entities", 377 "memchr", 378 "once_cell", 379 "regex", 380 "shell-words", 381 "slug", 382 "syntect", 383 "typed-arena", 384 "unicode_categories", 385 "xdg", 386] 387 388[[package]] 389name = "crc32fast" 390version = "1.4.2" 391source = "registry+https://github.com/rust-lang/crates.io-index" 392checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" 393dependencies = [ 394 "cfg-if", 395] 396 397[[package]] 398name = "darling" 399version = "0.20.10" 400source = "registry+https://github.com/rust-lang/crates.io-index" 401checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" 402dependencies = [ 403 "darling_core", 404 "darling_macro", 405] 406 407[[package]] 408name = "darling_core" 409version = "0.20.10" 410source = "registry+https://github.com/rust-lang/crates.io-index" 411checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" 412dependencies = [ 413 "fnv", 414 "ident_case", 415 "proc-macro2", 416 "quote", 417 "strsim", 418 "syn 2.0.76", 419] 420 421[[package]] 422name = "darling_macro" 423version = "0.20.10" 424source = "registry+https://github.com/rust-lang/crates.io-index" 425checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" 426dependencies = [ 427 "darling_core", 428 "quote", 429 "syn 2.0.76", 430] 431 432[[package]] 433name = "deranged" 434version = "0.3.11" 435source = "registry+https://github.com/rust-lang/crates.io-index" 436checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 437dependencies = [ 438 "powerfmt", 439] 440 441[[package]] 442name = "derive_builder" 443version = "0.20.0" 444source = "registry+https://github.com/rust-lang/crates.io-index" 445checksum = "0350b5cb0331628a5916d6c5c0b72e97393b8b6b03b47a9284f4e7f5a405ffd7" 446dependencies = [ 447 "derive_builder_macro", 448] 449 450[[package]] 451name = "derive_builder_core" 452version = "0.20.0" 453source = "registry+https://github.com/rust-lang/crates.io-index" 454checksum = "d48cda787f839151732d396ac69e3473923d54312c070ee21e9effcaa8ca0b1d" 455dependencies = [ 456 "darling", 457 "proc-macro2", 458 "quote", 459 "syn 2.0.76", 460] 461 462[[package]] 463name = "derive_builder_macro" 464version = "0.20.0" 465source = "registry+https://github.com/rust-lang/crates.io-index" 466checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b" 467dependencies = [ 468 "derive_builder_core", 469 "syn 2.0.76", 470] 471 472[[package]] 473name = "deunicode" 474version = "1.6.0" 475source = "registry+https://github.com/rust-lang/crates.io-index" 476checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00" 477 478[[package]] 479name = "entities" 480version = "1.0.1" 481source = "registry+https://github.com/rust-lang/crates.io-index" 482checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca" 483 484[[package]] 485name = "enum-iterator" 486version = "0.6.0" 487source = "registry+https://github.com/rust-lang/crates.io-index" 488checksum = "c79a6321a1197d7730510c7e3f6cb80432dfefecb32426de8cea0aa19b4bb8d7" 489dependencies = [ 490 "enum-iterator-derive", 491] 492 493[[package]] 494name = "enum-iterator-derive" 495version = "0.6.0" 496source = "registry+https://github.com/rust-lang/crates.io-index" 497checksum = "1e94aa31f7c0dc764f57896dc615ddd76fc13b0d5dca7eb6cc5e018a5a09ec06" 498dependencies = [ 499 "proc-macro2", 500 "quote", 501 "syn 1.0.109", 502] 503 504[[package]] 505name = "equivalent" 506version = "1.0.1" 507source = "registry+https://github.com/rust-lang/crates.io-index" 508checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 509 510[[package]] 511name = "errno" 512version = "0.3.9" 513source = "registry+https://github.com/rust-lang/crates.io-index" 514checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 515dependencies = [ 516 "libc", 517 "windows-sys 0.52.0", 518] 519 520[[package]] 521name = "fancy-regex" 522version = "0.11.0" 523source = "registry+https://github.com/rust-lang/crates.io-index" 524checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2" 525dependencies = [ 526 "bit-set", 527 "regex", 528] 529 530[[package]] 531name = "flate2" 532version = "1.0.33" 533source = "registry+https://github.com/rust-lang/crates.io-index" 534checksum = "324a1be68054ef05ad64b861cc9eaf1d623d2d8cb25b4bf2cb9cdd902b4bf253" 535dependencies = [ 536 "crc32fast", 537 "miniz_oxide 0.8.0", 538] 539 540[[package]] 541name = "fnv" 542version = "1.0.7" 543source = "registry+https://github.com/rust-lang/crates.io-index" 544checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 545 546[[package]] 547name = "form_urlencoded" 548version = "1.2.1" 549source = "registry+https://github.com/rust-lang/crates.io-index" 550checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 551dependencies = [ 552 "percent-encoding", 553] 554 555[[package]] 556name = "futures-channel" 557version = "0.3.30" 558source = "registry+https://github.com/rust-lang/crates.io-index" 559checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 560dependencies = [ 561 "futures-core", 562] 563 564[[package]] 565name = "futures-core" 566version = "0.3.30" 567source = "registry+https://github.com/rust-lang/crates.io-index" 568checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 569 570[[package]] 571name = "futures-sink" 572version = "0.3.30" 573source = "registry+https://github.com/rust-lang/crates.io-index" 574checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 575 576[[package]] 577name = "futures-task" 578version = "0.3.30" 579source = "registry+https://github.com/rust-lang/crates.io-index" 580checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 581 582[[package]] 583name = "futures-util" 584version = "0.3.30" 585source = "registry+https://github.com/rust-lang/crates.io-index" 586checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 587dependencies = [ 588 "futures-core", 589 "futures-task", 590 "pin-project-lite", 591 "pin-utils", 592] 593 594[[package]] 595name = "getrandom" 596version = "0.2.15" 597source = "registry+https://github.com/rust-lang/crates.io-index" 598checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 599dependencies = [ 600 "cfg-if", 601 "libc", 602 "wasi", 603] 604 605[[package]] 606name = "getset" 607version = "0.1.2" 608source = "registry+https://github.com/rust-lang/crates.io-index" 609checksum = "e45727250e75cc04ff2846a66397da8ef2b3db8e40e0cef4df67950a07621eb9" 610dependencies = [ 611 "proc-macro-error", 612 "proc-macro2", 613 "quote", 614 "syn 1.0.109", 615] 616 617[[package]] 618name = "gimli" 619version = "0.29.0" 620source = "registry+https://github.com/rust-lang/crates.io-index" 621checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" 622 623[[package]] 624name = "hashbrown" 625version = "0.12.3" 626source = "registry+https://github.com/rust-lang/crates.io-index" 627checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 628 629[[package]] 630name = "hashbrown" 631version = "0.14.5" 632source = "registry+https://github.com/rust-lang/crates.io-index" 633checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 634 635[[package]] 636name = "heck" 637version = "0.5.0" 638source = "registry+https://github.com/rust-lang/crates.io-index" 639checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 640 641[[package]] 642name = "hermit-abi" 643version = "0.3.9" 644source = "registry+https://github.com/rust-lang/crates.io-index" 645checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 646 647[[package]] 648name = "http" 649version = "1.1.0" 650source = "registry+https://github.com/rust-lang/crates.io-index" 651checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 652dependencies = [ 653 "bytes", 654 "fnv", 655 "itoa", 656] 657 658[[package]] 659name = "http-body" 660version = "1.0.1" 661source = "registry+https://github.com/rust-lang/crates.io-index" 662checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 663dependencies = [ 664 "bytes", 665 "http", 666] 667 668[[package]] 669name = "http-body-util" 670version = "0.1.2" 671source = "registry+https://github.com/rust-lang/crates.io-index" 672checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" 673dependencies = [ 674 "bytes", 675 "futures-util", 676 "http", 677 "http-body", 678 "pin-project-lite", 679] 680 681[[package]] 682name = "http-range-header" 683version = "0.4.1" 684source = "registry+https://github.com/rust-lang/crates.io-index" 685checksum = "08a397c49fec283e3d6211adbe480be95aae5f304cfb923e9970e08956d5168a" 686 687[[package]] 688name = "httparse" 689version = "1.9.4" 690source = "registry+https://github.com/rust-lang/crates.io-index" 691checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" 692 693[[package]] 694name = "httpdate" 695version = "1.0.3" 696source = "registry+https://github.com/rust-lang/crates.io-index" 697checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 698 699[[package]] 700name = "humansize" 701version = "2.1.3" 702source = "registry+https://github.com/rust-lang/crates.io-index" 703checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7" 704dependencies = [ 705 "libm", 706] 707 708[[package]] 709name = "hyper" 710version = "1.4.1" 711source = "registry+https://github.com/rust-lang/crates.io-index" 712checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" 713dependencies = [ 714 "bytes", 715 "futures-channel", 716 "futures-util", 717 "http", 718 "http-body", 719 "httparse", 720 "httpdate", 721 "itoa", 722 "pin-project-lite", 723 "smallvec", 724 "tokio", 725] 726 727[[package]] 728name = "hyper-util" 729version = "0.1.7" 730source = "registry+https://github.com/rust-lang/crates.io-index" 731checksum = "cde7055719c54e36e95e8719f95883f22072a48ede39db7fc17a4e1d5281e9b9" 732dependencies = [ 733 "bytes", 734 "futures-util", 735 "http", 736 "http-body", 737 "hyper", 738 "pin-project-lite", 739 "tokio", 740] 741 742[[package]] 743name = "ident_case" 744version = "1.0.1" 745source = "registry+https://github.com/rust-lang/crates.io-index" 746checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 747 748[[package]] 749name = "indexmap" 750version = "1.9.3" 751source = "registry+https://github.com/rust-lang/crates.io-index" 752checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 753dependencies = [ 754 "autocfg", 755 "hashbrown 0.12.3", 756] 757 758[[package]] 759name = "indexmap" 760version = "2.4.0" 761source = "registry+https://github.com/rust-lang/crates.io-index" 762checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c" 763dependencies = [ 764 "equivalent", 765 "hashbrown 0.14.5", 766] 767 768[[package]] 769name = "is_terminal_polyfill" 770version = "1.70.1" 771source = "registry+https://github.com/rust-lang/crates.io-index" 772checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 773 774[[package]] 775name = "itoa" 776version = "1.0.11" 777source = "registry+https://github.com/rust-lang/crates.io-index" 778checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 779 780[[package]] 781name = "lazy_static" 782version = "1.5.0" 783source = "registry+https://github.com/rust-lang/crates.io-index" 784checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 785 786[[package]] 787name = "libc" 788version = "0.2.158" 789source = "registry+https://github.com/rust-lang/crates.io-index" 790checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" 791 792[[package]] 793name = "libm" 794version = "0.2.8" 795source = "registry+https://github.com/rust-lang/crates.io-index" 796checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" 797 798[[package]] 799name = "linked-hash-map" 800version = "0.5.6" 801source = "registry+https://github.com/rust-lang/crates.io-index" 802checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 803 804[[package]] 805name = "linux-raw-sys" 806version = "0.4.14" 807source = "registry+https://github.com/rust-lang/crates.io-index" 808checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 809 810[[package]] 811name = "log" 812version = "0.4.22" 813source = "registry+https://github.com/rust-lang/crates.io-index" 814checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 815 816[[package]] 817name = "markdown-parser" 818version = "0.1.2" 819source = "registry+https://github.com/rust-lang/crates.io-index" 820checksum = "cf523952b36c9ad1a650d608d38187f12f4ad1b9e402a8c9df79743989289def" 821dependencies = [ 822 "enum-iterator", 823 "enum-iterator-derive", 824 "getset", 825 "lazy_static", 826 "quick-error", 827 "regex", 828 "serde", 829 "serde_json", 830 "serde_yaml 0.8.26", 831 "toml", 832] 833 834[[package]] 835name = "matchit" 836version = "0.7.3" 837source = "registry+https://github.com/rust-lang/crates.io-index" 838checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" 839 840[[package]] 841name = "memchr" 842version = "2.7.4" 843source = "registry+https://github.com/rust-lang/crates.io-index" 844checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 845 846[[package]] 847name = "mime" 848version = "0.3.17" 849source = "registry+https://github.com/rust-lang/crates.io-index" 850checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 851 852[[package]] 853name = "mime_guess" 854version = "2.0.5" 855source = "registry+https://github.com/rust-lang/crates.io-index" 856checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" 857dependencies = [ 858 "mime", 859 "unicase", 860] 861 862[[package]] 863name = "minimal-lexical" 864version = "0.2.1" 865source = "registry+https://github.com/rust-lang/crates.io-index" 866checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 867 868[[package]] 869name = "miniz_oxide" 870version = "0.7.4" 871source = "registry+https://github.com/rust-lang/crates.io-index" 872checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" 873dependencies = [ 874 "adler", 875] 876 877[[package]] 878name = "miniz_oxide" 879version = "0.8.0" 880source = "registry+https://github.com/rust-lang/crates.io-index" 881checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" 882dependencies = [ 883 "adler2", 884] 885 886[[package]] 887name = "mio" 888version = "1.0.2" 889source = "registry+https://github.com/rust-lang/crates.io-index" 890checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" 891dependencies = [ 892 "hermit-abi", 893 "libc", 894 "wasi", 895 "windows-sys 0.52.0", 896] 897 898[[package]] 899name = "nom" 900version = "7.1.3" 901source = "registry+https://github.com/rust-lang/crates.io-index" 902checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 903dependencies = [ 904 "memchr", 905 "minimal-lexical", 906] 907 908[[package]] 909name = "num-conv" 910version = "0.1.0" 911source = "registry+https://github.com/rust-lang/crates.io-index" 912checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 913 914[[package]] 915name = "num-traits" 916version = "0.2.19" 917source = "registry+https://github.com/rust-lang/crates.io-index" 918checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 919dependencies = [ 920 "autocfg", 921] 922 923[[package]] 924name = "object" 925version = "0.36.3" 926source = "registry+https://github.com/rust-lang/crates.io-index" 927checksum = "27b64972346851a39438c60b341ebc01bba47464ae329e55cf343eb93964efd9" 928dependencies = [ 929 "memchr", 930] 931 932[[package]] 933name = "once_cell" 934version = "1.19.0" 935source = "registry+https://github.com/rust-lang/crates.io-index" 936checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 937 938[[package]] 939name = "onig" 940version = "6.4.0" 941source = "registry+https://github.com/rust-lang/crates.io-index" 942checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f" 943dependencies = [ 944 "bitflags 1.3.2", 945 "libc", 946 "once_cell", 947 "onig_sys", 948] 949 950[[package]] 951name = "onig_sys" 952version = "69.8.1" 953source = "registry+https://github.com/rust-lang/crates.io-index" 954checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7" 955dependencies = [ 956 "cc", 957 "pkg-config", 958] 959 960[[package]] 961name = "percent-encoding" 962version = "2.3.1" 963source = "registry+https://github.com/rust-lang/crates.io-index" 964checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 965 966[[package]] 967name = "pin-project" 968version = "1.1.5" 969source = "registry+https://github.com/rust-lang/crates.io-index" 970checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 971dependencies = [ 972 "pin-project-internal", 973] 974 975[[package]] 976name = "pin-project-internal" 977version = "1.1.5" 978source = "registry+https://github.com/rust-lang/crates.io-index" 979checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 980dependencies = [ 981 "proc-macro2", 982 "quote", 983 "syn 2.0.76", 984] 985 986[[package]] 987name = "pin-project-lite" 988version = "0.2.14" 989source = "registry+https://github.com/rust-lang/crates.io-index" 990checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 991 992[[package]] 993name = "pin-utils" 994version = "0.1.0" 995source = "registry+https://github.com/rust-lang/crates.io-index" 996checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 997 998[[package]] 999name = "pkg-config" 1000version = "0.3.30" 1001source = "registry+https://github.com/rust-lang/crates.io-index" 1002checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 1003 1004[[package]] 1005name = "plist" 1006version = "1.7.0" 1007source = "registry+https://github.com/rust-lang/crates.io-index" 1008checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016" 1009dependencies = [ 1010 "base64", 1011 "indexmap 2.4.0", 1012 "quick-xml", 1013 "serde", 1014 "time", 1015] 1016 1017[[package]] 1018name = "powerfmt" 1019version = "0.2.0" 1020source = "registry+https://github.com/rust-lang/crates.io-index" 1021checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1022 1023[[package]] 1024name = "ppv-lite86" 1025version = "0.2.20" 1026source = "registry+https://github.com/rust-lang/crates.io-index" 1027checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" 1028dependencies = [ 1029 "zerocopy", 1030] 1031 1032[[package]] 1033name = "proc-macro-error" 1034version = "1.0.4" 1035source = "registry+https://github.com/rust-lang/crates.io-index" 1036checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1037dependencies = [ 1038 "proc-macro-error-attr", 1039 "proc-macro2", 1040 "quote", 1041 "syn 1.0.109", 1042 "version_check", 1043] 1044 1045[[package]] 1046name = "proc-macro-error-attr" 1047version = "1.0.4" 1048source = "registry+https://github.com/rust-lang/crates.io-index" 1049checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1050dependencies = [ 1051 "proc-macro2", 1052 "quote", 1053 "version_check", 1054] 1055 1056[[package]] 1057name = "proc-macro2" 1058version = "1.0.86" 1059source = "registry+https://github.com/rust-lang/crates.io-index" 1060checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 1061dependencies = [ 1062 "unicode-ident", 1063] 1064 1065[[package]] 1066name = "quick-error" 1067version = "2.0.1" 1068source = "registry+https://github.com/rust-lang/crates.io-index" 1069checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 1070 1071[[package]] 1072name = "quick-xml" 1073version = "0.32.0" 1074source = "registry+https://github.com/rust-lang/crates.io-index" 1075checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2" 1076dependencies = [ 1077 "memchr", 1078] 1079 1080[[package]] 1081name = "quote" 1082version = "1.0.37" 1083source = "registry+https://github.com/rust-lang/crates.io-index" 1084checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 1085dependencies = [ 1086 "proc-macro2", 1087] 1088 1089[[package]] 1090name = "rand" 1091version = "0.8.5" 1092source = "registry+https://github.com/rust-lang/crates.io-index" 1093checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1094dependencies = [ 1095 "libc", 1096 "rand_chacha", 1097 "rand_core", 1098] 1099 1100[[package]] 1101name = "rand_chacha" 1102version = "0.3.1" 1103source = "registry+https://github.com/rust-lang/crates.io-index" 1104checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1105dependencies = [ 1106 "ppv-lite86", 1107 "rand_core", 1108] 1109 1110[[package]] 1111name = "rand_core" 1112version = "0.6.4" 1113source = "registry+https://github.com/rust-lang/crates.io-index" 1114checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1115dependencies = [ 1116 "getrandom", 1117] 1118 1119[[package]] 1120name = "regex" 1121version = "1.10.6" 1122source = "registry+https://github.com/rust-lang/crates.io-index" 1123checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" 1124dependencies = [ 1125 "aho-corasick", 1126 "memchr", 1127 "regex-automata", 1128 "regex-syntax", 1129] 1130 1131[[package]] 1132name = "regex-automata" 1133version = "0.4.7" 1134source = "registry+https://github.com/rust-lang/crates.io-index" 1135checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" 1136dependencies = [ 1137 "aho-corasick", 1138 "memchr", 1139 "regex-syntax", 1140] 1141 1142[[package]] 1143name = "regex-syntax" 1144version = "0.8.4" 1145source = "registry+https://github.com/rust-lang/crates.io-index" 1146checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" 1147 1148[[package]] 1149name = "rustc-demangle" 1150version = "0.1.24" 1151source = "registry+https://github.com/rust-lang/crates.io-index" 1152checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 1153 1154[[package]] 1155name = "rustix" 1156version = "0.38.35" 1157source = "registry+https://github.com/rust-lang/crates.io-index" 1158checksum = "a85d50532239da68e9addb745ba38ff4612a242c1c7ceea689c4bc7c2f43c36f" 1159dependencies = [ 1160 "bitflags 2.6.0", 1161 "errno", 1162 "libc", 1163 "linux-raw-sys", 1164 "windows-sys 0.52.0", 1165] 1166 1167[[package]] 1168name = "rustversion" 1169version = "1.0.17" 1170source = "registry+https://github.com/rust-lang/crates.io-index" 1171checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 1172 1173[[package]] 1174name = "rusty_duck" 1175version = "0.1.0" 1176dependencies = [ 1177 "askama", 1178 "askama_axum", 1179 "axum", 1180 "comrak", 1181 "markdown-parser", 1182 "rand", 1183 "serde", 1184 "serde_yaml 0.9.34+deprecated", 1185 "tokio", 1186 "tower-http", 1187] 1188 1189[[package]] 1190name = "ryu" 1191version = "1.0.18" 1192source = "registry+https://github.com/rust-lang/crates.io-index" 1193checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 1194 1195[[package]] 1196name = "same-file" 1197version = "1.0.6" 1198source = "registry+https://github.com/rust-lang/crates.io-index" 1199checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1200dependencies = [ 1201 "winapi-util", 1202] 1203 1204[[package]] 1205name = "serde" 1206version = "1.0.209" 1207source = "registry+https://github.com/rust-lang/crates.io-index" 1208checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" 1209dependencies = [ 1210 "serde_derive", 1211] 1212 1213[[package]] 1214name = "serde_derive" 1215version = "1.0.209" 1216source = "registry+https://github.com/rust-lang/crates.io-index" 1217checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" 1218dependencies = [ 1219 "proc-macro2", 1220 "quote", 1221 "syn 2.0.76", 1222] 1223 1224[[package]] 1225name = "serde_json" 1226version = "1.0.127" 1227source = "registry+https://github.com/rust-lang/crates.io-index" 1228checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad" 1229dependencies = [ 1230 "itoa", 1231 "memchr", 1232 "ryu", 1233 "serde", 1234] 1235 1236[[package]] 1237name = "serde_path_to_error" 1238version = "0.1.16" 1239source = "registry+https://github.com/rust-lang/crates.io-index" 1240checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" 1241dependencies = [ 1242 "itoa", 1243 "serde", 1244] 1245 1246[[package]] 1247name = "serde_urlencoded" 1248version = "0.7.1" 1249source = "registry+https://github.com/rust-lang/crates.io-index" 1250checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1251dependencies = [ 1252 "form_urlencoded", 1253 "itoa", 1254 "ryu", 1255 "serde", 1256] 1257 1258[[package]] 1259name = "serde_yaml" 1260version = "0.8.26" 1261source = "registry+https://github.com/rust-lang/crates.io-index" 1262checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b" 1263dependencies = [ 1264 "indexmap 1.9.3", 1265 "ryu", 1266 "serde", 1267 "yaml-rust", 1268] 1269 1270[[package]] 1271name = "serde_yaml" 1272version = "0.9.34+deprecated" 1273source = "registry+https://github.com/rust-lang/crates.io-index" 1274checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" 1275dependencies = [ 1276 "indexmap 2.4.0", 1277 "itoa", 1278 "ryu", 1279 "serde", 1280 "unsafe-libyaml", 1281] 1282 1283[[package]] 1284name = "shell-words" 1285version = "1.1.0" 1286source = "registry+https://github.com/rust-lang/crates.io-index" 1287checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" 1288 1289[[package]] 1290name = "shlex" 1291version = "1.3.0" 1292source = "registry+https://github.com/rust-lang/crates.io-index" 1293checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1294 1295[[package]] 1296name = "slug" 1297version = "0.1.6" 1298source = "registry+https://github.com/rust-lang/crates.io-index" 1299checksum = "882a80f72ee45de3cc9a5afeb2da0331d58df69e4e7d8eeb5d3c7784ae67e724" 1300dependencies = [ 1301 "deunicode", 1302 "wasm-bindgen", 1303] 1304 1305[[package]] 1306name = "smallvec" 1307version = "1.13.2" 1308source = "registry+https://github.com/rust-lang/crates.io-index" 1309checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 1310 1311[[package]] 1312name = "socket2" 1313version = "0.5.7" 1314source = "registry+https://github.com/rust-lang/crates.io-index" 1315checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 1316dependencies = [ 1317 "libc", 1318 "windows-sys 0.52.0", 1319] 1320 1321[[package]] 1322name = "strsim" 1323version = "0.11.1" 1324source = "registry+https://github.com/rust-lang/crates.io-index" 1325checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 1326 1327[[package]] 1328name = "syn" 1329version = "1.0.109" 1330source = "registry+https://github.com/rust-lang/crates.io-index" 1331checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1332dependencies = [ 1333 "proc-macro2", 1334 "quote", 1335 "unicode-ident", 1336] 1337 1338[[package]] 1339name = "syn" 1340version = "2.0.76" 1341source = "registry+https://github.com/rust-lang/crates.io-index" 1342checksum = "578e081a14e0cefc3279b0472138c513f37b41a08d5a3cca9b6e4e8ceb6cd525" 1343dependencies = [ 1344 "proc-macro2", 1345 "quote", 1346 "unicode-ident", 1347] 1348 1349[[package]] 1350name = "sync_wrapper" 1351version = "0.1.2" 1352source = "registry+https://github.com/rust-lang/crates.io-index" 1353checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 1354 1355[[package]] 1356name = "sync_wrapper" 1357version = "1.0.1" 1358source = "registry+https://github.com/rust-lang/crates.io-index" 1359checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 1360 1361[[package]] 1362name = "syntect" 1363version = "5.2.0" 1364source = "registry+https://github.com/rust-lang/crates.io-index" 1365checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1" 1366dependencies = [ 1367 "bincode", 1368 "bitflags 1.3.2", 1369 "fancy-regex", 1370 "flate2", 1371 "fnv", 1372 "once_cell", 1373 "onig", 1374 "plist", 1375 "regex-syntax", 1376 "serde", 1377 "serde_derive", 1378 "serde_json", 1379 "thiserror", 1380 "walkdir", 1381 "yaml-rust", 1382] 1383 1384[[package]] 1385name = "terminal_size" 1386version = "0.3.0" 1387source = "registry+https://github.com/rust-lang/crates.io-index" 1388checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" 1389dependencies = [ 1390 "rustix", 1391 "windows-sys 0.48.0", 1392] 1393 1394[[package]] 1395name = "thiserror" 1396version = "1.0.63" 1397source = "registry+https://github.com/rust-lang/crates.io-index" 1398checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" 1399dependencies = [ 1400 "thiserror-impl", 1401] 1402 1403[[package]] 1404name = "thiserror-impl" 1405version = "1.0.63" 1406source = "registry+https://github.com/rust-lang/crates.io-index" 1407checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" 1408dependencies = [ 1409 "proc-macro2", 1410 "quote", 1411 "syn 2.0.76", 1412] 1413 1414[[package]] 1415name = "time" 1416version = "0.3.36" 1417source = "registry+https://github.com/rust-lang/crates.io-index" 1418checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 1419dependencies = [ 1420 "deranged", 1421 "itoa", 1422 "num-conv", 1423 "powerfmt", 1424 "serde", 1425 "time-core", 1426 "time-macros", 1427] 1428 1429[[package]] 1430name = "time-core" 1431version = "0.1.2" 1432source = "registry+https://github.com/rust-lang/crates.io-index" 1433checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 1434 1435[[package]] 1436name = "time-macros" 1437version = "0.2.18" 1438source = "registry+https://github.com/rust-lang/crates.io-index" 1439checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 1440dependencies = [ 1441 "num-conv", 1442 "time-core", 1443] 1444 1445[[package]] 1446name = "tinyvec" 1447version = "1.8.0" 1448source = "registry+https://github.com/rust-lang/crates.io-index" 1449checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 1450dependencies = [ 1451 "tinyvec_macros", 1452] 1453 1454[[package]] 1455name = "tinyvec_macros" 1456version = "0.1.1" 1457source = "registry+https://github.com/rust-lang/crates.io-index" 1458checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1459 1460[[package]] 1461name = "tokio" 1462version = "1.39.3" 1463source = "registry+https://github.com/rust-lang/crates.io-index" 1464checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5" 1465dependencies = [ 1466 "backtrace", 1467 "bytes", 1468 "libc", 1469 "mio", 1470 "pin-project-lite", 1471 "socket2", 1472 "tokio-macros", 1473 "windows-sys 0.52.0", 1474] 1475 1476[[package]] 1477name = "tokio-macros" 1478version = "2.4.0" 1479source = "registry+https://github.com/rust-lang/crates.io-index" 1480checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" 1481dependencies = [ 1482 "proc-macro2", 1483 "quote", 1484 "syn 2.0.76", 1485] 1486 1487[[package]] 1488name = "tokio-util" 1489version = "0.7.11" 1490source = "registry+https://github.com/rust-lang/crates.io-index" 1491checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" 1492dependencies = [ 1493 "bytes", 1494 "futures-core", 1495 "futures-sink", 1496 "pin-project-lite", 1497 "tokio", 1498] 1499 1500[[package]] 1501name = "toml" 1502version = "0.5.11" 1503source = "registry+https://github.com/rust-lang/crates.io-index" 1504checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 1505dependencies = [ 1506 "serde", 1507] 1508 1509[[package]] 1510name = "tower" 1511version = "0.4.13" 1512source = "registry+https://github.com/rust-lang/crates.io-index" 1513checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 1514dependencies = [ 1515 "futures-core", 1516 "futures-util", 1517 "pin-project", 1518 "pin-project-lite", 1519 "tokio", 1520 "tower-layer", 1521 "tower-service", 1522 "tracing", 1523] 1524 1525[[package]] 1526name = "tower-http" 1527version = "0.5.2" 1528source = "registry+https://github.com/rust-lang/crates.io-index" 1529checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" 1530dependencies = [ 1531 "bitflags 2.6.0", 1532 "bytes", 1533 "futures-util", 1534 "http", 1535 "http-body", 1536 "http-body-util", 1537 "http-range-header", 1538 "httpdate", 1539 "mime", 1540 "mime_guess", 1541 "percent-encoding", 1542 "pin-project-lite", 1543 "tokio", 1544 "tokio-util", 1545 "tower-layer", 1546 "tower-service", 1547 "tracing", 1548] 1549 1550[[package]] 1551name = "tower-layer" 1552version = "0.3.3" 1553source = "registry+https://github.com/rust-lang/crates.io-index" 1554checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 1555 1556[[package]] 1557name = "tower-service" 1558version = "0.3.3" 1559source = "registry+https://github.com/rust-lang/crates.io-index" 1560checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 1561 1562[[package]] 1563name = "tracing" 1564version = "0.1.40" 1565source = "registry+https://github.com/rust-lang/crates.io-index" 1566checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 1567dependencies = [ 1568 "log", 1569 "pin-project-lite", 1570 "tracing-core", 1571] 1572 1573[[package]] 1574name = "tracing-core" 1575version = "0.1.32" 1576source = "registry+https://github.com/rust-lang/crates.io-index" 1577checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 1578dependencies = [ 1579 "once_cell", 1580] 1581 1582[[package]] 1583name = "typed-arena" 1584version = "2.0.2" 1585source = "registry+https://github.com/rust-lang/crates.io-index" 1586checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" 1587 1588[[package]] 1589name = "unicase" 1590version = "2.7.0" 1591source = "registry+https://github.com/rust-lang/crates.io-index" 1592checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 1593dependencies = [ 1594 "version_check", 1595] 1596 1597[[package]] 1598name = "unicode-ident" 1599version = "1.0.12" 1600source = "registry+https://github.com/rust-lang/crates.io-index" 1601checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 1602 1603[[package]] 1604name = "unicode-normalization" 1605version = "0.1.23" 1606source = "registry+https://github.com/rust-lang/crates.io-index" 1607checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 1608dependencies = [ 1609 "tinyvec", 1610] 1611 1612[[package]] 1613name = "unicode_categories" 1614version = "0.1.1" 1615source = "registry+https://github.com/rust-lang/crates.io-index" 1616checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" 1617 1618[[package]] 1619name = "unsafe-libyaml" 1620version = "0.2.11" 1621source = "registry+https://github.com/rust-lang/crates.io-index" 1622checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" 1623 1624[[package]] 1625name = "utf8parse" 1626version = "0.2.2" 1627source = "registry+https://github.com/rust-lang/crates.io-index" 1628checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 1629 1630[[package]] 1631name = "version_check" 1632version = "0.9.5" 1633source = "registry+https://github.com/rust-lang/crates.io-index" 1634checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 1635 1636[[package]] 1637name = "walkdir" 1638version = "2.5.0" 1639source = "registry+https://github.com/rust-lang/crates.io-index" 1640checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 1641dependencies = [ 1642 "same-file", 1643 "winapi-util", 1644] 1645 1646[[package]] 1647name = "wasi" 1648version = "0.11.0+wasi-snapshot-preview1" 1649source = "registry+https://github.com/rust-lang/crates.io-index" 1650checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1651 1652[[package]] 1653name = "wasm-bindgen" 1654version = "0.2.93" 1655source = "registry+https://github.com/rust-lang/crates.io-index" 1656checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5" 1657dependencies = [ 1658 "cfg-if", 1659 "once_cell", 1660 "wasm-bindgen-macro", 1661] 1662 1663[[package]] 1664name = "wasm-bindgen-backend" 1665version = "0.2.93" 1666source = "registry+https://github.com/rust-lang/crates.io-index" 1667checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b" 1668dependencies = [ 1669 "bumpalo", 1670 "log", 1671 "once_cell", 1672 "proc-macro2", 1673 "quote", 1674 "syn 2.0.76", 1675 "wasm-bindgen-shared", 1676] 1677 1678[[package]] 1679name = "wasm-bindgen-macro" 1680version = "0.2.93" 1681source = "registry+https://github.com/rust-lang/crates.io-index" 1682checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf" 1683dependencies = [ 1684 "quote", 1685 "wasm-bindgen-macro-support", 1686] 1687 1688[[package]] 1689name = "wasm-bindgen-macro-support" 1690version = "0.2.93" 1691source = "registry+https://github.com/rust-lang/crates.io-index" 1692checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836" 1693dependencies = [ 1694 "proc-macro2", 1695 "quote", 1696 "syn 2.0.76", 1697 "wasm-bindgen-backend", 1698 "wasm-bindgen-shared", 1699] 1700 1701[[package]] 1702name = "wasm-bindgen-shared" 1703version = "0.2.93" 1704source = "registry+https://github.com/rust-lang/crates.io-index" 1705checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484" 1706 1707[[package]] 1708name = "winapi-util" 1709version = "0.1.9" 1710source = "registry+https://github.com/rust-lang/crates.io-index" 1711checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" 1712dependencies = [ 1713 "windows-sys 0.59.0", 1714] 1715 1716[[package]] 1717name = "windows-sys" 1718version = "0.48.0" 1719source = "registry+https://github.com/rust-lang/crates.io-index" 1720checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1721dependencies = [ 1722 "windows-targets 0.48.5", 1723] 1724 1725[[package]] 1726name = "windows-sys" 1727version = "0.52.0" 1728source = "registry+https://github.com/rust-lang/crates.io-index" 1729checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1730dependencies = [ 1731 "windows-targets 0.52.6", 1732] 1733 1734[[package]] 1735name = "windows-sys" 1736version = "0.59.0" 1737source = "registry+https://github.com/rust-lang/crates.io-index" 1738checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 1739dependencies = [ 1740 "windows-targets 0.52.6", 1741] 1742 1743[[package]] 1744name = "windows-targets" 1745version = "0.48.5" 1746source = "registry+https://github.com/rust-lang/crates.io-index" 1747checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1748dependencies = [ 1749 "windows_aarch64_gnullvm 0.48.5", 1750 "windows_aarch64_msvc 0.48.5", 1751 "windows_i686_gnu 0.48.5", 1752 "windows_i686_msvc 0.48.5", 1753 "windows_x86_64_gnu 0.48.5", 1754 "windows_x86_64_gnullvm 0.48.5", 1755 "windows_x86_64_msvc 0.48.5", 1756] 1757 1758[[package]] 1759name = "windows-targets" 1760version = "0.52.6" 1761source = "registry+https://github.com/rust-lang/crates.io-index" 1762checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1763dependencies = [ 1764 "windows_aarch64_gnullvm 0.52.6", 1765 "windows_aarch64_msvc 0.52.6", 1766 "windows_i686_gnu 0.52.6", 1767 "windows_i686_gnullvm", 1768 "windows_i686_msvc 0.52.6", 1769 "windows_x86_64_gnu 0.52.6", 1770 "windows_x86_64_gnullvm 0.52.6", 1771 "windows_x86_64_msvc 0.52.6", 1772] 1773 1774[[package]] 1775name = "windows_aarch64_gnullvm" 1776version = "0.48.5" 1777source = "registry+https://github.com/rust-lang/crates.io-index" 1778checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1779 1780[[package]] 1781name = "windows_aarch64_gnullvm" 1782version = "0.52.6" 1783source = "registry+https://github.com/rust-lang/crates.io-index" 1784checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 1785 1786[[package]] 1787name = "windows_aarch64_msvc" 1788version = "0.48.5" 1789source = "registry+https://github.com/rust-lang/crates.io-index" 1790checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 1791 1792[[package]] 1793name = "windows_aarch64_msvc" 1794version = "0.52.6" 1795source = "registry+https://github.com/rust-lang/crates.io-index" 1796checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 1797 1798[[package]] 1799name = "windows_i686_gnu" 1800version = "0.48.5" 1801source = "registry+https://github.com/rust-lang/crates.io-index" 1802checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1803 1804[[package]] 1805name = "windows_i686_gnu" 1806version = "0.52.6" 1807source = "registry+https://github.com/rust-lang/crates.io-index" 1808checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 1809 1810[[package]] 1811name = "windows_i686_gnullvm" 1812version = "0.52.6" 1813source = "registry+https://github.com/rust-lang/crates.io-index" 1814checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 1815 1816[[package]] 1817name = "windows_i686_msvc" 1818version = "0.48.5" 1819source = "registry+https://github.com/rust-lang/crates.io-index" 1820checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1821 1822[[package]] 1823name = "windows_i686_msvc" 1824version = "0.52.6" 1825source = "registry+https://github.com/rust-lang/crates.io-index" 1826checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1827 1828[[package]] 1829name = "windows_x86_64_gnu" 1830version = "0.48.5" 1831source = "registry+https://github.com/rust-lang/crates.io-index" 1832checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1833 1834[[package]] 1835name = "windows_x86_64_gnu" 1836version = "0.52.6" 1837source = "registry+https://github.com/rust-lang/crates.io-index" 1838checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1839 1840[[package]] 1841name = "windows_x86_64_gnullvm" 1842version = "0.48.5" 1843source = "registry+https://github.com/rust-lang/crates.io-index" 1844checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1845 1846[[package]] 1847name = "windows_x86_64_gnullvm" 1848version = "0.52.6" 1849source = "registry+https://github.com/rust-lang/crates.io-index" 1850checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1851 1852[[package]] 1853name = "windows_x86_64_msvc" 1854version = "0.48.5" 1855source = "registry+https://github.com/rust-lang/crates.io-index" 1856checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1857 1858[[package]] 1859name = "windows_x86_64_msvc" 1860version = "0.52.6" 1861source = "registry+https://github.com/rust-lang/crates.io-index" 1862checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1863 1864[[package]] 1865name = "xdg" 1866version = "2.5.2" 1867source = "registry+https://github.com/rust-lang/crates.io-index" 1868checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546" 1869 1870[[package]] 1871name = "yaml-rust" 1872version = "0.4.5" 1873source = "registry+https://github.com/rust-lang/crates.io-index" 1874checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 1875dependencies = [ 1876 "linked-hash-map", 1877] 1878 1879[[package]] 1880name = "zerocopy" 1881version = "0.7.35" 1882source = "registry+https://github.com/rust-lang/crates.io-index" 1883checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 1884dependencies = [ 1885 "byteorder", 1886 "zerocopy-derive", 1887] 1888 1889[[package]] 1890name = "zerocopy-derive" 1891version = "0.7.35" 1892source = "registry+https://github.com/rust-lang/crates.io-index" 1893checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 1894dependencies = [ 1895 "proc-macro2", 1896 "quote", 1897 "syn 2.0.76", 1898]