repos

darkfurrow.com-rust

mirror archived upstream

A living almanac of seasons, soil, and the quiet knowledge that used to be common. Rust axum with minijinja and Vite.

agriculturealmanacaxumfolk-knowledgegardeningminijinjarustseasonalvite

41.6 KB · 1686 lines Raw History
   1# This file is automatically @generated by Cargo.
   2# It is not intended for manual editing.
   3version = 4
   4
   5[[package]]
   6name = "adler2"
   7version = "2.0.1"
   8source = "registry+https://github.com/rust-lang/crates.io-index"
   9checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
  10
  11[[package]]
  12name = "aho-corasick"
  13version = "1.1.4"
  14source = "registry+https://github.com/rust-lang/crates.io-index"
  15checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
  16dependencies = [
  17 "memchr",
  18]
  19
  20[[package]]
  21name = "android_system_properties"
  22version = "0.1.5"
  23source = "registry+https://github.com/rust-lang/crates.io-index"
  24checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  25dependencies = [
  26 "libc",
  27]
  28
  29[[package]]
  30name = "anstream"
  31version = "1.0.0"
  32source = "registry+https://github.com/rust-lang/crates.io-index"
  33checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
  34dependencies = [
  35 "anstyle",
  36 "anstyle-parse",
  37 "anstyle-query",
  38 "anstyle-wincon",
  39 "colorchoice",
  40 "is_terminal_polyfill",
  41 "utf8parse",
  42]
  43
  44[[package]]
  45name = "anstyle"
  46version = "1.0.14"
  47source = "registry+https://github.com/rust-lang/crates.io-index"
  48checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
  49
  50[[package]]
  51name = "anstyle-parse"
  52version = "1.0.0"
  53source = "registry+https://github.com/rust-lang/crates.io-index"
  54checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
  55dependencies = [
  56 "utf8parse",
  57]
  58
  59[[package]]
  60name = "anstyle-query"
  61version = "1.1.5"
  62source = "registry+https://github.com/rust-lang/crates.io-index"
  63checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
  64dependencies = [
  65 "windows-sys",
  66]
  67
  68[[package]]
  69name = "anstyle-wincon"
  70version = "3.0.11"
  71source = "registry+https://github.com/rust-lang/crates.io-index"
  72checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
  73dependencies = [
  74 "anstyle",
  75 "once_cell_polyfill",
  76 "windows-sys",
  77]
  78
  79[[package]]
  80name = "anyhow"
  81version = "1.0.102"
  82source = "registry+https://github.com/rust-lang/crates.io-index"
  83checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
  84
  85[[package]]
  86name = "atomic-waker"
  87version = "1.1.2"
  88source = "registry+https://github.com/rust-lang/crates.io-index"
  89checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
  90
  91[[package]]
  92name = "autocfg"
  93version = "1.5.0"
  94source = "registry+https://github.com/rust-lang/crates.io-index"
  95checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
  96
  97[[package]]
  98name = "axum"
  99version = "0.8.9"
 100source = "registry+https://github.com/rust-lang/crates.io-index"
 101checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
 102dependencies = [
 103 "axum-core",
 104 "bytes",
 105 "form_urlencoded",
 106 "futures-util",
 107 "http",
 108 "http-body",
 109 "http-body-util",
 110 "hyper",
 111 "hyper-util",
 112 "itoa",
 113 "matchit",
 114 "memchr",
 115 "mime",
 116 "percent-encoding",
 117 "pin-project-lite",
 118 "serde_core",
 119 "serde_json",
 120 "serde_path_to_error",
 121 "serde_urlencoded",
 122 "sync_wrapper",
 123 "tokio",
 124 "tower",
 125 "tower-layer",
 126 "tower-service",
 127 "tracing",
 128]
 129
 130[[package]]
 131name = "axum-core"
 132version = "0.5.6"
 133source = "registry+https://github.com/rust-lang/crates.io-index"
 134checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
 135dependencies = [
 136 "bytes",
 137 "futures-core",
 138 "http",
 139 "http-body",
 140 "http-body-util",
 141 "mime",
 142 "pin-project-lite",
 143 "sync_wrapper",
 144 "tower-layer",
 145 "tower-service",
 146 "tracing",
 147]
 148
 149[[package]]
 150name = "base64"
 151version = "0.22.1"
 152source = "registry+https://github.com/rust-lang/crates.io-index"
 153checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
 154
 155[[package]]
 156name = "bincode"
 157version = "1.3.3"
 158source = "registry+https://github.com/rust-lang/crates.io-index"
 159checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
 160dependencies = [
 161 "serde",
 162]
 163
 164[[package]]
 165name = "bit-set"
 166version = "0.8.0"
 167source = "registry+https://github.com/rust-lang/crates.io-index"
 168checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
 169dependencies = [
 170 "bit-vec",
 171]
 172
 173[[package]]
 174name = "bit-vec"
 175version = "0.8.0"
 176source = "registry+https://github.com/rust-lang/crates.io-index"
 177checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
 178
 179[[package]]
 180name = "bitflags"
 181version = "2.11.1"
 182source = "registry+https://github.com/rust-lang/crates.io-index"
 183checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
 184
 185[[package]]
 186name = "bon"
 187version = "3.9.1"
 188source = "registry+https://github.com/rust-lang/crates.io-index"
 189checksum = "f47dbe92550676ee653353c310dfb9cf6ba17ee70396e1f7cf0a2020ad49b2fe"
 190dependencies = [
 191 "bon-macros",
 192 "rustversion",
 193]
 194
 195[[package]]
 196name = "bon-macros"
 197version = "3.9.1"
 198source = "registry+https://github.com/rust-lang/crates.io-index"
 199checksum = "519bd3116aeeb42d5372c29d982d16d0170d3d4a5ed85fc7dd91642ffff3c67c"
 200dependencies = [
 201 "darling",
 202 "ident_case",
 203 "prettyplease",
 204 "proc-macro2",
 205 "quote",
 206 "rustversion",
 207 "syn",
 208]
 209
 210[[package]]
 211name = "bumpalo"
 212version = "3.20.2"
 213source = "registry+https://github.com/rust-lang/crates.io-index"
 214checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
 215
 216[[package]]
 217name = "bytes"
 218version = "1.11.1"
 219source = "registry+https://github.com/rust-lang/crates.io-index"
 220checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
 221
 222[[package]]
 223name = "caseless"
 224version = "0.2.2"
 225source = "registry+https://github.com/rust-lang/crates.io-index"
 226checksum = "8b6fd507454086c8edfd769ca6ada439193cdb209c7681712ef6275cccbfe5d8"
 227dependencies = [
 228 "unicode-normalization",
 229]
 230
 231[[package]]
 232name = "cc"
 233version = "1.2.61"
 234source = "registry+https://github.com/rust-lang/crates.io-index"
 235checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
 236dependencies = [
 237 "find-msvc-tools",
 238 "shlex",
 239]
 240
 241[[package]]
 242name = "cfg-if"
 243version = "1.0.4"
 244source = "registry+https://github.com/rust-lang/crates.io-index"
 245checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
 246
 247[[package]]
 248name = "chrono"
 249version = "0.4.44"
 250source = "registry+https://github.com/rust-lang/crates.io-index"
 251checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
 252dependencies = [
 253 "iana-time-zone",
 254 "num-traits",
 255 "serde",
 256 "windows-link",
 257]
 258
 259[[package]]
 260name = "chrono-tz"
 261version = "0.10.4"
 262source = "registry+https://github.com/rust-lang/crates.io-index"
 263checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
 264dependencies = [
 265 "chrono",
 266 "phf",
 267]
 268
 269[[package]]
 270name = "clap"
 271version = "4.6.1"
 272source = "registry+https://github.com/rust-lang/crates.io-index"
 273checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
 274dependencies = [
 275 "clap_builder",
 276 "clap_derive",
 277]
 278
 279[[package]]
 280name = "clap_builder"
 281version = "4.6.0"
 282source = "registry+https://github.com/rust-lang/crates.io-index"
 283checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
 284dependencies = [
 285 "anstream",
 286 "anstyle",
 287 "clap_lex",
 288 "strsim",
 289 "terminal_size",
 290]
 291
 292[[package]]
 293name = "clap_derive"
 294version = "4.6.1"
 295source = "registry+https://github.com/rust-lang/crates.io-index"
 296checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
 297dependencies = [
 298 "heck",
 299 "proc-macro2",
 300 "quote",
 301 "syn",
 302]
 303
 304[[package]]
 305name = "clap_lex"
 306version = "1.1.0"
 307source = "registry+https://github.com/rust-lang/crates.io-index"
 308checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
 309
 310[[package]]
 311name = "colorchoice"
 312version = "1.0.5"
 313source = "registry+https://github.com/rust-lang/crates.io-index"
 314checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
 315
 316[[package]]
 317name = "comrak"
 318version = "0.30.0"
 319source = "registry+https://github.com/rust-lang/crates.io-index"
 320checksum = "949f8e6b02ebac005a8be2df9ec0876cafc83fdb9c510796c37f0fadf92dcd0e"
 321dependencies = [
 322 "bon",
 323 "caseless",
 324 "clap",
 325 "entities",
 326 "memchr",
 327 "once_cell",
 328 "regex",
 329 "shell-words",
 330 "slug",
 331 "syntect",
 332 "typed-arena",
 333 "unicode_categories",
 334 "xdg",
 335]
 336
 337[[package]]
 338name = "core-foundation-sys"
 339version = "0.8.7"
 340source = "registry+https://github.com/rust-lang/crates.io-index"
 341checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
 342
 343[[package]]
 344name = "crc32fast"
 345version = "1.5.0"
 346source = "registry+https://github.com/rust-lang/crates.io-index"
 347checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
 348dependencies = [
 349 "cfg-if",
 350]
 351
 352[[package]]
 353name = "darkfurrow"
 354version = "0.1.0"
 355dependencies = [
 356 "anyhow",
 357 "axum",
 358 "chrono",
 359 "chrono-tz",
 360 "comrak",
 361 "dotenvy",
 362 "minijinja",
 363 "serde",
 364 "serde_json",
 365 "tokio",
 366 "tower",
 367 "tower-http",
 368 "tracing",
 369 "tracing-subscriber",
 370]
 371
 372[[package]]
 373name = "darling"
 374version = "0.23.0"
 375source = "registry+https://github.com/rust-lang/crates.io-index"
 376checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
 377dependencies = [
 378 "darling_core",
 379 "darling_macro",
 380]
 381
 382[[package]]
 383name = "darling_core"
 384version = "0.23.0"
 385source = "registry+https://github.com/rust-lang/crates.io-index"
 386checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
 387dependencies = [
 388 "ident_case",
 389 "proc-macro2",
 390 "quote",
 391 "strsim",
 392 "syn",
 393]
 394
 395[[package]]
 396name = "darling_macro"
 397version = "0.23.0"
 398source = "registry+https://github.com/rust-lang/crates.io-index"
 399checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
 400dependencies = [
 401 "darling_core",
 402 "quote",
 403 "syn",
 404]
 405
 406[[package]]
 407name = "deranged"
 408version = "0.5.8"
 409source = "registry+https://github.com/rust-lang/crates.io-index"
 410checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
 411dependencies = [
 412 "powerfmt",
 413]
 414
 415[[package]]
 416name = "deunicode"
 417version = "1.6.2"
 418source = "registry+https://github.com/rust-lang/crates.io-index"
 419checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04"
 420
 421[[package]]
 422name = "dotenvy"
 423version = "0.15.7"
 424source = "registry+https://github.com/rust-lang/crates.io-index"
 425checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
 426
 427[[package]]
 428name = "entities"
 429version = "1.0.1"
 430source = "registry+https://github.com/rust-lang/crates.io-index"
 431checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
 432
 433[[package]]
 434name = "equivalent"
 435version = "1.0.2"
 436source = "registry+https://github.com/rust-lang/crates.io-index"
 437checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
 438
 439[[package]]
 440name = "errno"
 441version = "0.3.14"
 442source = "registry+https://github.com/rust-lang/crates.io-index"
 443checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
 444dependencies = [
 445 "libc",
 446 "windows-sys",
 447]
 448
 449[[package]]
 450name = "fancy-regex"
 451version = "0.16.2"
 452source = "registry+https://github.com/rust-lang/crates.io-index"
 453checksum = "998b056554fbe42e03ae0e152895cd1a7e1002aec800fdc6635d20270260c46f"
 454dependencies = [
 455 "bit-set",
 456 "regex-automata",
 457 "regex-syntax",
 458]
 459
 460[[package]]
 461name = "find-msvc-tools"
 462version = "0.1.9"
 463source = "registry+https://github.com/rust-lang/crates.io-index"
 464checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
 465
 466[[package]]
 467name = "flate2"
 468version = "1.1.9"
 469source = "registry+https://github.com/rust-lang/crates.io-index"
 470checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
 471dependencies = [
 472 "crc32fast",
 473 "miniz_oxide",
 474]
 475
 476[[package]]
 477name = "fnv"
 478version = "1.0.7"
 479source = "registry+https://github.com/rust-lang/crates.io-index"
 480checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
 481
 482[[package]]
 483name = "form_urlencoded"
 484version = "1.2.2"
 485source = "registry+https://github.com/rust-lang/crates.io-index"
 486checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
 487dependencies = [
 488 "percent-encoding",
 489]
 490
 491[[package]]
 492name = "futures-channel"
 493version = "0.3.32"
 494source = "registry+https://github.com/rust-lang/crates.io-index"
 495checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
 496dependencies = [
 497 "futures-core",
 498]
 499
 500[[package]]
 501name = "futures-core"
 502version = "0.3.32"
 503source = "registry+https://github.com/rust-lang/crates.io-index"
 504checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
 505
 506[[package]]
 507name = "futures-sink"
 508version = "0.3.32"
 509source = "registry+https://github.com/rust-lang/crates.io-index"
 510checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
 511
 512[[package]]
 513name = "futures-task"
 514version = "0.3.32"
 515source = "registry+https://github.com/rust-lang/crates.io-index"
 516checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
 517
 518[[package]]
 519name = "futures-util"
 520version = "0.3.32"
 521source = "registry+https://github.com/rust-lang/crates.io-index"
 522checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
 523dependencies = [
 524 "futures-core",
 525 "futures-task",
 526 "pin-project-lite",
 527 "slab",
 528]
 529
 530[[package]]
 531name = "hashbrown"
 532version = "0.17.0"
 533source = "registry+https://github.com/rust-lang/crates.io-index"
 534checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
 535
 536[[package]]
 537name = "heck"
 538version = "0.5.0"
 539source = "registry+https://github.com/rust-lang/crates.io-index"
 540checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
 541
 542[[package]]
 543name = "http"
 544version = "1.4.0"
 545source = "registry+https://github.com/rust-lang/crates.io-index"
 546checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
 547dependencies = [
 548 "bytes",
 549 "itoa",
 550]
 551
 552[[package]]
 553name = "http-body"
 554version = "1.0.1"
 555source = "registry+https://github.com/rust-lang/crates.io-index"
 556checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
 557dependencies = [
 558 "bytes",
 559 "http",
 560]
 561
 562[[package]]
 563name = "http-body-util"
 564version = "0.1.3"
 565source = "registry+https://github.com/rust-lang/crates.io-index"
 566checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
 567dependencies = [
 568 "bytes",
 569 "futures-core",
 570 "http",
 571 "http-body",
 572 "pin-project-lite",
 573]
 574
 575[[package]]
 576name = "http-range-header"
 577version = "0.4.2"
 578source = "registry+https://github.com/rust-lang/crates.io-index"
 579checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c"
 580
 581[[package]]
 582name = "httparse"
 583version = "1.10.1"
 584source = "registry+https://github.com/rust-lang/crates.io-index"
 585checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
 586
 587[[package]]
 588name = "httpdate"
 589version = "1.0.3"
 590source = "registry+https://github.com/rust-lang/crates.io-index"
 591checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
 592
 593[[package]]
 594name = "hyper"
 595version = "1.9.0"
 596source = "registry+https://github.com/rust-lang/crates.io-index"
 597checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
 598dependencies = [
 599 "atomic-waker",
 600 "bytes",
 601 "futures-channel",
 602 "futures-core",
 603 "http",
 604 "http-body",
 605 "httparse",
 606 "httpdate",
 607 "itoa",
 608 "pin-project-lite",
 609 "smallvec",
 610 "tokio",
 611]
 612
 613[[package]]
 614name = "hyper-util"
 615version = "0.1.20"
 616source = "registry+https://github.com/rust-lang/crates.io-index"
 617checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
 618dependencies = [
 619 "bytes",
 620 "http",
 621 "http-body",
 622 "hyper",
 623 "pin-project-lite",
 624 "tokio",
 625 "tower-service",
 626]
 627
 628[[package]]
 629name = "iana-time-zone"
 630version = "0.1.65"
 631source = "registry+https://github.com/rust-lang/crates.io-index"
 632checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
 633dependencies = [
 634 "android_system_properties",
 635 "core-foundation-sys",
 636 "iana-time-zone-haiku",
 637 "js-sys",
 638 "log",
 639 "wasm-bindgen",
 640 "windows-core",
 641]
 642
 643[[package]]
 644name = "iana-time-zone-haiku"
 645version = "0.1.2"
 646source = "registry+https://github.com/rust-lang/crates.io-index"
 647checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
 648dependencies = [
 649 "cc",
 650]
 651
 652[[package]]
 653name = "ident_case"
 654version = "1.0.1"
 655source = "registry+https://github.com/rust-lang/crates.io-index"
 656checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
 657
 658[[package]]
 659name = "indexmap"
 660version = "2.14.0"
 661source = "registry+https://github.com/rust-lang/crates.io-index"
 662checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
 663dependencies = [
 664 "equivalent",
 665 "hashbrown",
 666]
 667
 668[[package]]
 669name = "is_terminal_polyfill"
 670version = "1.70.2"
 671source = "registry+https://github.com/rust-lang/crates.io-index"
 672checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
 673
 674[[package]]
 675name = "itoa"
 676version = "1.0.18"
 677source = "registry+https://github.com/rust-lang/crates.io-index"
 678checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
 679
 680[[package]]
 681name = "js-sys"
 682version = "0.3.97"
 683source = "registry+https://github.com/rust-lang/crates.io-index"
 684checksum = "a1840c94c045fbcf8ba2812c95db44499f7c64910a912551aaaa541decebcacf"
 685dependencies = [
 686 "cfg-if",
 687 "futures-util",
 688 "once_cell",
 689 "wasm-bindgen",
 690]
 691
 692[[package]]
 693name = "lazy_static"
 694version = "1.5.0"
 695source = "registry+https://github.com/rust-lang/crates.io-index"
 696checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
 697
 698[[package]]
 699name = "libc"
 700version = "0.2.186"
 701source = "registry+https://github.com/rust-lang/crates.io-index"
 702checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
 703
 704[[package]]
 705name = "linked-hash-map"
 706version = "0.5.6"
 707source = "registry+https://github.com/rust-lang/crates.io-index"
 708checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
 709
 710[[package]]
 711name = "linux-raw-sys"
 712version = "0.12.1"
 713source = "registry+https://github.com/rust-lang/crates.io-index"
 714checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
 715
 716[[package]]
 717name = "lock_api"
 718version = "0.4.14"
 719source = "registry+https://github.com/rust-lang/crates.io-index"
 720checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
 721dependencies = [
 722 "scopeguard",
 723]
 724
 725[[package]]
 726name = "log"
 727version = "0.4.29"
 728source = "registry+https://github.com/rust-lang/crates.io-index"
 729checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
 730
 731[[package]]
 732name = "matchers"
 733version = "0.2.0"
 734source = "registry+https://github.com/rust-lang/crates.io-index"
 735checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
 736dependencies = [
 737 "regex-automata",
 738]
 739
 740[[package]]
 741name = "matchit"
 742version = "0.8.4"
 743source = "registry+https://github.com/rust-lang/crates.io-index"
 744checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
 745
 746[[package]]
 747name = "memchr"
 748version = "2.8.0"
 749source = "registry+https://github.com/rust-lang/crates.io-index"
 750checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
 751
 752[[package]]
 753name = "memo-map"
 754version = "0.3.3"
 755source = "registry+https://github.com/rust-lang/crates.io-index"
 756checksum = "38d1115007560874e373613744c6fba374c17688327a71c1476d1a5954cc857b"
 757
 758[[package]]
 759name = "mime"
 760version = "0.3.17"
 761source = "registry+https://github.com/rust-lang/crates.io-index"
 762checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
 763
 764[[package]]
 765name = "mime_guess"
 766version = "2.0.5"
 767source = "registry+https://github.com/rust-lang/crates.io-index"
 768checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
 769dependencies = [
 770 "mime",
 771 "unicase",
 772]
 773
 774[[package]]
 775name = "minijinja"
 776version = "2.19.0"
 777source = "registry+https://github.com/rust-lang/crates.io-index"
 778checksum = "805bfd7352166bae857ee569628b52bcd85a1cecf7810861ebceb1686b72b75d"
 779dependencies = [
 780 "memo-map",
 781 "serde",
 782]
 783
 784[[package]]
 785name = "miniz_oxide"
 786version = "0.8.9"
 787source = "registry+https://github.com/rust-lang/crates.io-index"
 788checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
 789dependencies = [
 790 "adler2",
 791 "simd-adler32",
 792]
 793
 794[[package]]
 795name = "mio"
 796version = "1.2.0"
 797source = "registry+https://github.com/rust-lang/crates.io-index"
 798checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
 799dependencies = [
 800 "libc",
 801 "wasi",
 802 "windows-sys",
 803]
 804
 805[[package]]
 806name = "nu-ansi-term"
 807version = "0.50.3"
 808source = "registry+https://github.com/rust-lang/crates.io-index"
 809checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
 810dependencies = [
 811 "windows-sys",
 812]
 813
 814[[package]]
 815name = "num-conv"
 816version = "0.2.1"
 817source = "registry+https://github.com/rust-lang/crates.io-index"
 818checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
 819
 820[[package]]
 821name = "num-traits"
 822version = "0.2.19"
 823source = "registry+https://github.com/rust-lang/crates.io-index"
 824checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
 825dependencies = [
 826 "autocfg",
 827]
 828
 829[[package]]
 830name = "once_cell"
 831version = "1.21.4"
 832source = "registry+https://github.com/rust-lang/crates.io-index"
 833checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
 834
 835[[package]]
 836name = "once_cell_polyfill"
 837version = "1.70.2"
 838source = "registry+https://github.com/rust-lang/crates.io-index"
 839checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
 840
 841[[package]]
 842name = "onig"
 843version = "6.5.3"
 844source = "registry+https://github.com/rust-lang/crates.io-index"
 845checksum = "0cc3cbf698f9438986c11a880c90a6d04b9de27575afd28bbf45b154b6c709e2"
 846dependencies = [
 847 "bitflags",
 848 "libc",
 849 "once_cell",
 850 "onig_sys",
 851]
 852
 853[[package]]
 854name = "onig_sys"
 855version = "69.9.3"
 856source = "registry+https://github.com/rust-lang/crates.io-index"
 857checksum = "1e68317604e77e53b85896388e1a803c1d21b74c899ec9e5e1112db90735edd7"
 858dependencies = [
 859 "cc",
 860 "pkg-config",
 861]
 862
 863[[package]]
 864name = "parking_lot"
 865version = "0.12.5"
 866source = "registry+https://github.com/rust-lang/crates.io-index"
 867checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
 868dependencies = [
 869 "lock_api",
 870 "parking_lot_core",
 871]
 872
 873[[package]]
 874name = "parking_lot_core"
 875version = "0.9.12"
 876source = "registry+https://github.com/rust-lang/crates.io-index"
 877checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
 878dependencies = [
 879 "cfg-if",
 880 "libc",
 881 "redox_syscall",
 882 "smallvec",
 883 "windows-link",
 884]
 885
 886[[package]]
 887name = "percent-encoding"
 888version = "2.3.2"
 889source = "registry+https://github.com/rust-lang/crates.io-index"
 890checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
 891
 892[[package]]
 893name = "phf"
 894version = "0.12.1"
 895source = "registry+https://github.com/rust-lang/crates.io-index"
 896checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
 897dependencies = [
 898 "phf_shared",
 899]
 900
 901[[package]]
 902name = "phf_shared"
 903version = "0.12.1"
 904source = "registry+https://github.com/rust-lang/crates.io-index"
 905checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
 906dependencies = [
 907 "siphasher",
 908]
 909
 910[[package]]
 911name = "pin-project-lite"
 912version = "0.2.17"
 913source = "registry+https://github.com/rust-lang/crates.io-index"
 914checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
 915
 916[[package]]
 917name = "pkg-config"
 918version = "0.3.33"
 919source = "registry+https://github.com/rust-lang/crates.io-index"
 920checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
 921
 922[[package]]
 923name = "plist"
 924version = "1.9.0"
 925source = "registry+https://github.com/rust-lang/crates.io-index"
 926checksum = "092791278e026273c1b65bbdcfbba3a300f2994c896bd01ab01da613c29c46f1"
 927dependencies = [
 928 "base64",
 929 "indexmap",
 930 "quick-xml",
 931 "serde",
 932 "time",
 933]
 934
 935[[package]]
 936name = "powerfmt"
 937version = "0.2.0"
 938source = "registry+https://github.com/rust-lang/crates.io-index"
 939checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
 940
 941[[package]]
 942name = "prettyplease"
 943version = "0.2.37"
 944source = "registry+https://github.com/rust-lang/crates.io-index"
 945checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
 946dependencies = [
 947 "proc-macro2",
 948 "syn",
 949]
 950
 951[[package]]
 952name = "proc-macro2"
 953version = "1.0.106"
 954source = "registry+https://github.com/rust-lang/crates.io-index"
 955checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
 956dependencies = [
 957 "unicode-ident",
 958]
 959
 960[[package]]
 961name = "quick-xml"
 962version = "0.39.3"
 963source = "registry+https://github.com/rust-lang/crates.io-index"
 964checksum = "721da970c312655cde9b4ffe0547f20a8494866a4af5ff51f18b7c633d0c870b"
 965dependencies = [
 966 "memchr",
 967]
 968
 969[[package]]
 970name = "quote"
 971version = "1.0.45"
 972source = "registry+https://github.com/rust-lang/crates.io-index"
 973checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
 974dependencies = [
 975 "proc-macro2",
 976]
 977
 978[[package]]
 979name = "redox_syscall"
 980version = "0.5.18"
 981source = "registry+https://github.com/rust-lang/crates.io-index"
 982checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
 983dependencies = [
 984 "bitflags",
 985]
 986
 987[[package]]
 988name = "regex"
 989version = "1.12.3"
 990source = "registry+https://github.com/rust-lang/crates.io-index"
 991checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
 992dependencies = [
 993 "aho-corasick",
 994 "memchr",
 995 "regex-automata",
 996 "regex-syntax",
 997]
 998
 999[[package]]
1000name = "regex-automata"
1001version = "0.4.14"
1002source = "registry+https://github.com/rust-lang/crates.io-index"
1003checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1004dependencies = [
1005 "aho-corasick",
1006 "memchr",
1007 "regex-syntax",
1008]
1009
1010[[package]]
1011name = "regex-syntax"
1012version = "0.8.10"
1013source = "registry+https://github.com/rust-lang/crates.io-index"
1014checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1015
1016[[package]]
1017name = "rustix"
1018version = "1.1.4"
1019source = "registry+https://github.com/rust-lang/crates.io-index"
1020checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1021dependencies = [
1022 "bitflags",
1023 "errno",
1024 "libc",
1025 "linux-raw-sys",
1026 "windows-sys",
1027]
1028
1029[[package]]
1030name = "rustversion"
1031version = "1.0.22"
1032source = "registry+https://github.com/rust-lang/crates.io-index"
1033checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1034
1035[[package]]
1036name = "ryu"
1037version = "1.0.23"
1038source = "registry+https://github.com/rust-lang/crates.io-index"
1039checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1040
1041[[package]]
1042name = "same-file"
1043version = "1.0.6"
1044source = "registry+https://github.com/rust-lang/crates.io-index"
1045checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1046dependencies = [
1047 "winapi-util",
1048]
1049
1050[[package]]
1051name = "scopeguard"
1052version = "1.2.0"
1053source = "registry+https://github.com/rust-lang/crates.io-index"
1054checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1055
1056[[package]]
1057name = "serde"
1058version = "1.0.228"
1059source = "registry+https://github.com/rust-lang/crates.io-index"
1060checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1061dependencies = [
1062 "serde_core",
1063 "serde_derive",
1064]
1065
1066[[package]]
1067name = "serde_core"
1068version = "1.0.228"
1069source = "registry+https://github.com/rust-lang/crates.io-index"
1070checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1071dependencies = [
1072 "serde_derive",
1073]
1074
1075[[package]]
1076name = "serde_derive"
1077version = "1.0.228"
1078source = "registry+https://github.com/rust-lang/crates.io-index"
1079checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1080dependencies = [
1081 "proc-macro2",
1082 "quote",
1083 "syn",
1084]
1085
1086[[package]]
1087name = "serde_json"
1088version = "1.0.149"
1089source = "registry+https://github.com/rust-lang/crates.io-index"
1090checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1091dependencies = [
1092 "itoa",
1093 "memchr",
1094 "serde",
1095 "serde_core",
1096 "zmij",
1097]
1098
1099[[package]]
1100name = "serde_path_to_error"
1101version = "0.1.20"
1102source = "registry+https://github.com/rust-lang/crates.io-index"
1103checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
1104dependencies = [
1105 "itoa",
1106 "serde",
1107 "serde_core",
1108]
1109
1110[[package]]
1111name = "serde_urlencoded"
1112version = "0.7.1"
1113source = "registry+https://github.com/rust-lang/crates.io-index"
1114checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1115dependencies = [
1116 "form_urlencoded",
1117 "itoa",
1118 "ryu",
1119 "serde",
1120]
1121
1122[[package]]
1123name = "sharded-slab"
1124version = "0.1.7"
1125source = "registry+https://github.com/rust-lang/crates.io-index"
1126checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1127dependencies = [
1128 "lazy_static",
1129]
1130
1131[[package]]
1132name = "shell-words"
1133version = "1.1.1"
1134source = "registry+https://github.com/rust-lang/crates.io-index"
1135checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
1136
1137[[package]]
1138name = "shlex"
1139version = "1.3.0"
1140source = "registry+https://github.com/rust-lang/crates.io-index"
1141checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1142
1143[[package]]
1144name = "signal-hook-registry"
1145version = "1.4.8"
1146source = "registry+https://github.com/rust-lang/crates.io-index"
1147checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1148dependencies = [
1149 "errno",
1150 "libc",
1151]
1152
1153[[package]]
1154name = "simd-adler32"
1155version = "0.3.9"
1156source = "registry+https://github.com/rust-lang/crates.io-index"
1157checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1158
1159[[package]]
1160name = "siphasher"
1161version = "1.0.3"
1162source = "registry+https://github.com/rust-lang/crates.io-index"
1163checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1164
1165[[package]]
1166name = "slab"
1167version = "0.4.12"
1168source = "registry+https://github.com/rust-lang/crates.io-index"
1169checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1170
1171[[package]]
1172name = "slug"
1173version = "0.1.6"
1174source = "registry+https://github.com/rust-lang/crates.io-index"
1175checksum = "882a80f72ee45de3cc9a5afeb2da0331d58df69e4e7d8eeb5d3c7784ae67e724"
1176dependencies = [
1177 "deunicode",
1178 "wasm-bindgen",
1179]
1180
1181[[package]]
1182name = "smallvec"
1183version = "1.15.1"
1184source = "registry+https://github.com/rust-lang/crates.io-index"
1185checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1186
1187[[package]]
1188name = "socket2"
1189version = "0.6.3"
1190source = "registry+https://github.com/rust-lang/crates.io-index"
1191checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1192dependencies = [
1193 "libc",
1194 "windows-sys",
1195]
1196
1197[[package]]
1198name = "strsim"
1199version = "0.11.1"
1200source = "registry+https://github.com/rust-lang/crates.io-index"
1201checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1202
1203[[package]]
1204name = "syn"
1205version = "2.0.117"
1206source = "registry+https://github.com/rust-lang/crates.io-index"
1207checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1208dependencies = [
1209 "proc-macro2",
1210 "quote",
1211 "unicode-ident",
1212]
1213
1214[[package]]
1215name = "sync_wrapper"
1216version = "1.0.2"
1217source = "registry+https://github.com/rust-lang/crates.io-index"
1218checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1219
1220[[package]]
1221name = "syntect"
1222version = "5.3.0"
1223source = "registry+https://github.com/rust-lang/crates.io-index"
1224checksum = "656b45c05d95a5704399aeef6bd0ddec7b2b3531b7c9e900abbf7c4d2190c925"
1225dependencies = [
1226 "bincode",
1227 "fancy-regex",
1228 "flate2",
1229 "fnv",
1230 "once_cell",
1231 "onig",
1232 "plist",
1233 "regex-syntax",
1234 "serde",
1235 "serde_derive",
1236 "serde_json",
1237 "thiserror",
1238 "walkdir",
1239 "yaml-rust",
1240]
1241
1242[[package]]
1243name = "terminal_size"
1244version = "0.4.4"
1245source = "registry+https://github.com/rust-lang/crates.io-index"
1246checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
1247dependencies = [
1248 "rustix",
1249 "windows-sys",
1250]
1251
1252[[package]]
1253name = "thiserror"
1254version = "2.0.18"
1255source = "registry+https://github.com/rust-lang/crates.io-index"
1256checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1257dependencies = [
1258 "thiserror-impl",
1259]
1260
1261[[package]]
1262name = "thiserror-impl"
1263version = "2.0.18"
1264source = "registry+https://github.com/rust-lang/crates.io-index"
1265checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1266dependencies = [
1267 "proc-macro2",
1268 "quote",
1269 "syn",
1270]
1271
1272[[package]]
1273name = "thread_local"
1274version = "1.1.9"
1275source = "registry+https://github.com/rust-lang/crates.io-index"
1276checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1277dependencies = [
1278 "cfg-if",
1279]
1280
1281[[package]]
1282name = "time"
1283version = "0.3.47"
1284source = "registry+https://github.com/rust-lang/crates.io-index"
1285checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
1286dependencies = [
1287 "deranged",
1288 "itoa",
1289 "num-conv",
1290 "powerfmt",
1291 "serde_core",
1292 "time-core",
1293 "time-macros",
1294]
1295
1296[[package]]
1297name = "time-core"
1298version = "0.1.8"
1299source = "registry+https://github.com/rust-lang/crates.io-index"
1300checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
1301
1302[[package]]
1303name = "time-macros"
1304version = "0.2.27"
1305source = "registry+https://github.com/rust-lang/crates.io-index"
1306checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
1307dependencies = [
1308 "num-conv",
1309 "time-core",
1310]
1311
1312[[package]]
1313name = "tinyvec"
1314version = "1.11.0"
1315source = "registry+https://github.com/rust-lang/crates.io-index"
1316checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1317dependencies = [
1318 "tinyvec_macros",
1319]
1320
1321[[package]]
1322name = "tinyvec_macros"
1323version = "0.1.1"
1324source = "registry+https://github.com/rust-lang/crates.io-index"
1325checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1326
1327[[package]]
1328name = "tokio"
1329version = "1.52.2"
1330source = "registry+https://github.com/rust-lang/crates.io-index"
1331checksum = "110a78583f19d5cdb2c5ccf321d1290344e71313c6c37d43520d386027d18386"
1332dependencies = [
1333 "bytes",
1334 "libc",
1335 "mio",
1336 "parking_lot",
1337 "pin-project-lite",
1338 "signal-hook-registry",
1339 "socket2",
1340 "tokio-macros",
1341 "windows-sys",
1342]
1343
1344[[package]]
1345name = "tokio-macros"
1346version = "2.7.0"
1347source = "registry+https://github.com/rust-lang/crates.io-index"
1348checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1349dependencies = [
1350 "proc-macro2",
1351 "quote",
1352 "syn",
1353]
1354
1355[[package]]
1356name = "tokio-util"
1357version = "0.7.18"
1358source = "registry+https://github.com/rust-lang/crates.io-index"
1359checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1360dependencies = [
1361 "bytes",
1362 "futures-core",
1363 "futures-sink",
1364 "pin-project-lite",
1365 "tokio",
1366]
1367
1368[[package]]
1369name = "tower"
1370version = "0.5.3"
1371source = "registry+https://github.com/rust-lang/crates.io-index"
1372checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1373dependencies = [
1374 "futures-core",
1375 "futures-util",
1376 "pin-project-lite",
1377 "sync_wrapper",
1378 "tokio",
1379 "tower-layer",
1380 "tower-service",
1381 "tracing",
1382]
1383
1384[[package]]
1385name = "tower-http"
1386version = "0.6.9"
1387source = "registry+https://github.com/rust-lang/crates.io-index"
1388checksum = "a28f0d049ccfaa566e14e9663d304d8577427b368cb4710a20528690287a738b"
1389dependencies = [
1390 "bitflags",
1391 "bytes",
1392 "futures-core",
1393 "futures-util",
1394 "http",
1395 "http-body",
1396 "http-body-util",
1397 "http-range-header",
1398 "httpdate",
1399 "mime",
1400 "mime_guess",
1401 "percent-encoding",
1402 "pin-project-lite",
1403 "tokio",
1404 "tokio-util",
1405 "tower-layer",
1406 "tower-service",
1407]
1408
1409[[package]]
1410name = "tower-layer"
1411version = "0.3.3"
1412source = "registry+https://github.com/rust-lang/crates.io-index"
1413checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1414
1415[[package]]
1416name = "tower-service"
1417version = "0.3.3"
1418source = "registry+https://github.com/rust-lang/crates.io-index"
1419checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1420
1421[[package]]
1422name = "tracing"
1423version = "0.1.44"
1424source = "registry+https://github.com/rust-lang/crates.io-index"
1425checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1426dependencies = [
1427 "log",
1428 "pin-project-lite",
1429 "tracing-attributes",
1430 "tracing-core",
1431]
1432
1433[[package]]
1434name = "tracing-attributes"
1435version = "0.1.31"
1436source = "registry+https://github.com/rust-lang/crates.io-index"
1437checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1438dependencies = [
1439 "proc-macro2",
1440 "quote",
1441 "syn",
1442]
1443
1444[[package]]
1445name = "tracing-core"
1446version = "0.1.36"
1447source = "registry+https://github.com/rust-lang/crates.io-index"
1448checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1449dependencies = [
1450 "once_cell",
1451 "valuable",
1452]
1453
1454[[package]]
1455name = "tracing-log"
1456version = "0.2.0"
1457source = "registry+https://github.com/rust-lang/crates.io-index"
1458checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1459dependencies = [
1460 "log",
1461 "once_cell",
1462 "tracing-core",
1463]
1464
1465[[package]]
1466name = "tracing-subscriber"
1467version = "0.3.23"
1468source = "registry+https://github.com/rust-lang/crates.io-index"
1469checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1470dependencies = [
1471 "matchers",
1472 "nu-ansi-term",
1473 "once_cell",
1474 "regex-automata",
1475 "sharded-slab",
1476 "smallvec",
1477 "thread_local",
1478 "tracing",
1479 "tracing-core",
1480 "tracing-log",
1481]
1482
1483[[package]]
1484name = "typed-arena"
1485version = "2.0.2"
1486source = "registry+https://github.com/rust-lang/crates.io-index"
1487checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
1488
1489[[package]]
1490name = "unicase"
1491version = "2.9.0"
1492source = "registry+https://github.com/rust-lang/crates.io-index"
1493checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
1494
1495[[package]]
1496name = "unicode-ident"
1497version = "1.0.24"
1498source = "registry+https://github.com/rust-lang/crates.io-index"
1499checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1500
1501[[package]]
1502name = "unicode-normalization"
1503version = "0.1.25"
1504source = "registry+https://github.com/rust-lang/crates.io-index"
1505checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
1506dependencies = [
1507 "tinyvec",
1508]
1509
1510[[package]]
1511name = "unicode_categories"
1512version = "0.1.1"
1513source = "registry+https://github.com/rust-lang/crates.io-index"
1514checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
1515
1516[[package]]
1517name = "utf8parse"
1518version = "0.2.2"
1519source = "registry+https://github.com/rust-lang/crates.io-index"
1520checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1521
1522[[package]]
1523name = "valuable"
1524version = "0.1.1"
1525source = "registry+https://github.com/rust-lang/crates.io-index"
1526checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1527
1528[[package]]
1529name = "walkdir"
1530version = "2.5.0"
1531source = "registry+https://github.com/rust-lang/crates.io-index"
1532checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1533dependencies = [
1534 "same-file",
1535 "winapi-util",
1536]
1537
1538[[package]]
1539name = "wasi"
1540version = "0.11.1+wasi-snapshot-preview1"
1541source = "registry+https://github.com/rust-lang/crates.io-index"
1542checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1543
1544[[package]]
1545name = "wasm-bindgen"
1546version = "0.2.120"
1547source = "registry+https://github.com/rust-lang/crates.io-index"
1548checksum = "df52b6d9b87e0c74c9edfa1eb2d9bf85e5d63515474513aa50fa181b3c4f5db1"
1549dependencies = [
1550 "cfg-if",
1551 "once_cell",
1552 "rustversion",
1553 "wasm-bindgen-macro",
1554 "wasm-bindgen-shared",
1555]
1556
1557[[package]]
1558name = "wasm-bindgen-macro"
1559version = "0.2.120"
1560source = "registry+https://github.com/rust-lang/crates.io-index"
1561checksum = "78b1041f495fb322e64aca85f5756b2172e35cd459376e67f2a6c9dffcedb103"
1562dependencies = [
1563 "quote",
1564 "wasm-bindgen-macro-support",
1565]
1566
1567[[package]]
1568name = "wasm-bindgen-macro-support"
1569version = "0.2.120"
1570source = "registry+https://github.com/rust-lang/crates.io-index"
1571checksum = "9dcd0ff20416988a18ac686d4d4d0f6aae9ebf08a389ff5d29012b05af2a1b41"
1572dependencies = [
1573 "bumpalo",
1574 "proc-macro2",
1575 "quote",
1576 "syn",
1577 "wasm-bindgen-shared",
1578]
1579
1580[[package]]
1581name = "wasm-bindgen-shared"
1582version = "0.2.120"
1583source = "registry+https://github.com/rust-lang/crates.io-index"
1584checksum = "49757b3c82ebf16c57d69365a142940b384176c24df52a087fb748e2085359ea"
1585dependencies = [
1586 "unicode-ident",
1587]
1588
1589[[package]]
1590name = "winapi-util"
1591version = "0.1.11"
1592source = "registry+https://github.com/rust-lang/crates.io-index"
1593checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1594dependencies = [
1595 "windows-sys",
1596]
1597
1598[[package]]
1599name = "windows-core"
1600version = "0.62.2"
1601source = "registry+https://github.com/rust-lang/crates.io-index"
1602checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1603dependencies = [
1604 "windows-implement",
1605 "windows-interface",
1606 "windows-link",
1607 "windows-result",
1608 "windows-strings",
1609]
1610
1611[[package]]
1612name = "windows-implement"
1613version = "0.60.2"
1614source = "registry+https://github.com/rust-lang/crates.io-index"
1615checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1616dependencies = [
1617 "proc-macro2",
1618 "quote",
1619 "syn",
1620]
1621
1622[[package]]
1623name = "windows-interface"
1624version = "0.59.3"
1625source = "registry+https://github.com/rust-lang/crates.io-index"
1626checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1627dependencies = [
1628 "proc-macro2",
1629 "quote",
1630 "syn",
1631]
1632
1633[[package]]
1634name = "windows-link"
1635version = "0.2.1"
1636source = "registry+https://github.com/rust-lang/crates.io-index"
1637checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1638
1639[[package]]
1640name = "windows-result"
1641version = "0.4.1"
1642source = "registry+https://github.com/rust-lang/crates.io-index"
1643checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1644dependencies = [
1645 "windows-link",
1646]
1647
1648[[package]]
1649name = "windows-strings"
1650version = "0.5.1"
1651source = "registry+https://github.com/rust-lang/crates.io-index"
1652checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1653dependencies = [
1654 "windows-link",
1655]
1656
1657[[package]]
1658name = "windows-sys"
1659version = "0.61.2"
1660source = "registry+https://github.com/rust-lang/crates.io-index"
1661checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1662dependencies = [
1663 "windows-link",
1664]
1665
1666[[package]]
1667name = "xdg"
1668version = "2.5.2"
1669source = "registry+https://github.com/rust-lang/crates.io-index"
1670checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546"
1671
1672[[package]]
1673name = "yaml-rust"
1674version = "0.4.5"
1675source = "registry+https://github.com/rust-lang/crates.io-index"
1676checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
1677dependencies = [
1678 "linked-hash-map",
1679]
1680
1681[[package]]
1682name = "zmij"
1683version = "1.0.21"
1684source = "registry+https://github.com/rust-lang/crates.io-index"
1685checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"