repos
/ repos-rust master

repos-rust

mirror archived upstream

A minimal self-hosted git browser on Rust axum: bare repos rendered as a website with commits, diffs, syntax-highlighted blobs, atom feeds, and clone over HTTPS.

axumdockergitgit-browsergitoxidegixrustself-hosted

76.9 KB · 3212 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 = "ahash"
  13version = "0.8.12"
  14source = "registry+https://github.com/rust-lang/crates.io-index"
  15checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
  16dependencies = [
  17 "cfg-if",
  18 "once_cell",
  19 "version_check",
  20 "zerocopy",
  21]
  22
  23[[package]]
  24name = "aho-corasick"
  25version = "1.1.4"
  26source = "registry+https://github.com/rust-lang/crates.io-index"
  27checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
  28dependencies = [
  29 "memchr",
  30]
  31
  32[[package]]
  33name = "allocator-api2"
  34version = "0.2.21"
  35source = "registry+https://github.com/rust-lang/crates.io-index"
  36checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
  37
  38[[package]]
  39name = "ammonia"
  40version = "4.1.2"
  41source = "registry+https://github.com/rust-lang/crates.io-index"
  42checksum = "17e913097e1a2124b46746c980134e8c954bc17a6a59bb3fde96f088d126dde6"
  43dependencies = [
  44 "cssparser",
  45 "html5ever",
  46 "maplit",
  47 "tendril",
  48 "url",
  49]
  50
  51[[package]]
  52name = "android_system_properties"
  53version = "0.1.5"
  54source = "registry+https://github.com/rust-lang/crates.io-index"
  55checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  56dependencies = [
  57 "libc",
  58]
  59
  60[[package]]
  61name = "anyhow"
  62version = "1.0.102"
  63source = "registry+https://github.com/rust-lang/crates.io-index"
  64checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
  65
  66[[package]]
  67name = "arc-swap"
  68version = "1.9.1"
  69source = "registry+https://github.com/rust-lang/crates.io-index"
  70checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
  71dependencies = [
  72 "rustversion",
  73]
  74
  75[[package]]
  76name = "arrayvec"
  77version = "0.7.6"
  78source = "registry+https://github.com/rust-lang/crates.io-index"
  79checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
  80
  81[[package]]
  82name = "async-stream"
  83version = "0.3.6"
  84source = "registry+https://github.com/rust-lang/crates.io-index"
  85checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
  86dependencies = [
  87 "async-stream-impl",
  88 "futures-core",
  89 "pin-project-lite",
  90]
  91
  92[[package]]
  93name = "async-stream-impl"
  94version = "0.3.6"
  95source = "registry+https://github.com/rust-lang/crates.io-index"
  96checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
  97dependencies = [
  98 "proc-macro2",
  99 "quote",
 100 "syn",
 101]
 102
 103[[package]]
 104name = "atomic-waker"
 105version = "1.1.2"
 106source = "registry+https://github.com/rust-lang/crates.io-index"
 107checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
 108
 109[[package]]
 110name = "autocfg"
 111version = "1.5.0"
 112source = "registry+https://github.com/rust-lang/crates.io-index"
 113checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
 114
 115[[package]]
 116name = "axum"
 117version = "0.8.9"
 118source = "registry+https://github.com/rust-lang/crates.io-index"
 119checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
 120dependencies = [
 121 "axum-core",
 122 "axum-macros",
 123 "bytes",
 124 "form_urlencoded",
 125 "futures-util",
 126 "http",
 127 "http-body",
 128 "http-body-util",
 129 "hyper",
 130 "hyper-util",
 131 "itoa",
 132 "matchit",
 133 "memchr",
 134 "mime",
 135 "percent-encoding",
 136 "pin-project-lite",
 137 "serde_core",
 138 "serde_json",
 139 "serde_path_to_error",
 140 "serde_urlencoded",
 141 "sync_wrapper",
 142 "tokio",
 143 "tower",
 144 "tower-layer",
 145 "tower-service",
 146 "tracing",
 147]
 148
 149[[package]]
 150name = "axum-core"
 151version = "0.5.6"
 152source = "registry+https://github.com/rust-lang/crates.io-index"
 153checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
 154dependencies = [
 155 "bytes",
 156 "futures-core",
 157 "http",
 158 "http-body",
 159 "http-body-util",
 160 "mime",
 161 "pin-project-lite",
 162 "sync_wrapper",
 163 "tower-layer",
 164 "tower-service",
 165 "tracing",
 166]
 167
 168[[package]]
 169name = "axum-macros"
 170version = "0.5.1"
 171source = "registry+https://github.com/rust-lang/crates.io-index"
 172checksum = "7aa268c23bfbbd2c4363b9cd302a4f504fb2a9dfe7e3451d66f35dd392e20aca"
 173dependencies = [
 174 "proc-macro2",
 175 "quote",
 176 "syn",
 177]
 178
 179[[package]]
 180name = "base64"
 181version = "0.22.1"
 182source = "registry+https://github.com/rust-lang/crates.io-index"
 183checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
 184
 185[[package]]
 186name = "bincode"
 187version = "1.3.3"
 188source = "registry+https://github.com/rust-lang/crates.io-index"
 189checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
 190dependencies = [
 191 "serde",
 192]
 193
 194[[package]]
 195name = "bit-set"
 196version = "0.8.0"
 197source = "registry+https://github.com/rust-lang/crates.io-index"
 198checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
 199dependencies = [
 200 "bit-vec",
 201]
 202
 203[[package]]
 204name = "bit-vec"
 205version = "0.8.0"
 206source = "registry+https://github.com/rust-lang/crates.io-index"
 207checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
 208
 209[[package]]
 210name = "bitflags"
 211version = "2.11.1"
 212source = "registry+https://github.com/rust-lang/crates.io-index"
 213checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
 214
 215[[package]]
 216name = "bstr"
 217version = "1.12.1"
 218source = "registry+https://github.com/rust-lang/crates.io-index"
 219checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
 220dependencies = [
 221 "memchr",
 222 "regex-automata",
 223 "serde",
 224]
 225
 226[[package]]
 227name = "bumpalo"
 228version = "3.20.2"
 229source = "registry+https://github.com/rust-lang/crates.io-index"
 230checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
 231
 232[[package]]
 233name = "bytes"
 234version = "1.11.1"
 235source = "registry+https://github.com/rust-lang/crates.io-index"
 236checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
 237
 238[[package]]
 239name = "cc"
 240version = "1.2.62"
 241source = "registry+https://github.com/rust-lang/crates.io-index"
 242checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
 243dependencies = [
 244 "find-msvc-tools",
 245 "shlex",
 246]
 247
 248[[package]]
 249name = "cfg-if"
 250version = "1.0.4"
 251source = "registry+https://github.com/rust-lang/crates.io-index"
 252checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
 253
 254[[package]]
 255name = "chrono"
 256version = "0.4.44"
 257source = "registry+https://github.com/rust-lang/crates.io-index"
 258checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
 259dependencies = [
 260 "iana-time-zone",
 261 "num-traits",
 262 "serde",
 263 "windows-link",
 264]
 265
 266[[package]]
 267name = "clru"
 268version = "0.6.3"
 269source = "registry+https://github.com/rust-lang/crates.io-index"
 270checksum = "197fd99cb113a8d5d9b6376f3aa817f32c1078f2343b714fff7d2ca44fdf67d5"
 271dependencies = [
 272 "hashbrown 0.16.1",
 273]
 274
 275[[package]]
 276name = "core-foundation-sys"
 277version = "0.8.7"
 278source = "registry+https://github.com/rust-lang/crates.io-index"
 279checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
 280
 281[[package]]
 282name = "crc32fast"
 283version = "1.5.0"
 284source = "registry+https://github.com/rust-lang/crates.io-index"
 285checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
 286dependencies = [
 287 "cfg-if",
 288]
 289
 290[[package]]
 291name = "crossbeam-channel"
 292version = "0.5.15"
 293source = "registry+https://github.com/rust-lang/crates.io-index"
 294checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
 295dependencies = [
 296 "crossbeam-utils",
 297]
 298
 299[[package]]
 300name = "crossbeam-utils"
 301version = "0.8.21"
 302source = "registry+https://github.com/rust-lang/crates.io-index"
 303checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
 304
 305[[package]]
 306name = "cssparser"
 307version = "0.35.0"
 308source = "registry+https://github.com/rust-lang/crates.io-index"
 309checksum = "4e901edd733a1472f944a45116df3f846f54d37e67e68640ac8bb69689aca2aa"
 310dependencies = [
 311 "cssparser-macros",
 312 "dtoa-short",
 313 "itoa",
 314 "phf",
 315 "smallvec",
 316]
 317
 318[[package]]
 319name = "cssparser-macros"
 320version = "0.6.1"
 321source = "registry+https://github.com/rust-lang/crates.io-index"
 322checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
 323dependencies = [
 324 "quote",
 325 "syn",
 326]
 327
 328[[package]]
 329name = "dashmap"
 330version = "6.1.0"
 331source = "registry+https://github.com/rust-lang/crates.io-index"
 332checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
 333dependencies = [
 334 "cfg-if",
 335 "crossbeam-utils",
 336 "hashbrown 0.14.5",
 337 "lock_api",
 338 "once_cell",
 339 "parking_lot_core",
 340]
 341
 342[[package]]
 343name = "deranged"
 344version = "0.5.8"
 345source = "registry+https://github.com/rust-lang/crates.io-index"
 346checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
 347dependencies = [
 348 "powerfmt",
 349]
 350
 351[[package]]
 352name = "displaydoc"
 353version = "0.2.5"
 354source = "registry+https://github.com/rust-lang/crates.io-index"
 355checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
 356dependencies = [
 357 "proc-macro2",
 358 "quote",
 359 "syn",
 360]
 361
 362[[package]]
 363name = "dotenvy"
 364version = "0.15.7"
 365source = "registry+https://github.com/rust-lang/crates.io-index"
 366checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
 367
 368[[package]]
 369name = "dtoa"
 370version = "1.0.11"
 371source = "registry+https://github.com/rust-lang/crates.io-index"
 372checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
 373
 374[[package]]
 375name = "dtoa-short"
 376version = "0.3.5"
 377source = "registry+https://github.com/rust-lang/crates.io-index"
 378checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
 379dependencies = [
 380 "dtoa",
 381]
 382
 383[[package]]
 384name = "dunce"
 385version = "1.0.5"
 386source = "registry+https://github.com/rust-lang/crates.io-index"
 387checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
 388
 389[[package]]
 390name = "encoding_rs"
 391version = "0.8.35"
 392source = "registry+https://github.com/rust-lang/crates.io-index"
 393checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
 394dependencies = [
 395 "cfg-if",
 396]
 397
 398[[package]]
 399name = "equivalent"
 400version = "1.0.2"
 401source = "registry+https://github.com/rust-lang/crates.io-index"
 402checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
 403
 404[[package]]
 405name = "errno"
 406version = "0.3.14"
 407source = "registry+https://github.com/rust-lang/crates.io-index"
 408checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
 409dependencies = [
 410 "libc",
 411 "windows-sys 0.61.2",
 412]
 413
 414[[package]]
 415name = "fancy-regex"
 416version = "0.16.2"
 417source = "registry+https://github.com/rust-lang/crates.io-index"
 418checksum = "998b056554fbe42e03ae0e152895cd1a7e1002aec800fdc6635d20270260c46f"
 419dependencies = [
 420 "bit-set",
 421 "regex-automata",
 422 "regex-syntax",
 423]
 424
 425[[package]]
 426name = "faster-hex"
 427version = "0.9.0"
 428source = "registry+https://github.com/rust-lang/crates.io-index"
 429checksum = "a2a2b11eda1d40935b26cf18f6833c526845ae8c41e58d09af6adeb6f0269183"
 430
 431[[package]]
 432name = "fastrand"
 433version = "2.4.1"
 434source = "registry+https://github.com/rust-lang/crates.io-index"
 435checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
 436
 437[[package]]
 438name = "filetime"
 439version = "0.2.28"
 440source = "registry+https://github.com/rust-lang/crates.io-index"
 441checksum = "2d5b2eef6fafbf69f877e55509ce5b11a760690ac9700a2921be067aa6afaef6"
 442dependencies = [
 443 "cfg-if",
 444 "libc",
 445]
 446
 447[[package]]
 448name = "find-msvc-tools"
 449version = "0.1.9"
 450source = "registry+https://github.com/rust-lang/crates.io-index"
 451checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
 452
 453[[package]]
 454name = "flate2"
 455version = "1.1.9"
 456source = "registry+https://github.com/rust-lang/crates.io-index"
 457checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
 458dependencies = [
 459 "crc32fast",
 460 "miniz_oxide",
 461]
 462
 463[[package]]
 464name = "fnv"
 465version = "1.0.7"
 466source = "registry+https://github.com/rust-lang/crates.io-index"
 467checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
 468
 469[[package]]
 470name = "foldhash"
 471version = "0.1.5"
 472source = "registry+https://github.com/rust-lang/crates.io-index"
 473checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
 474
 475[[package]]
 476name = "foldhash"
 477version = "0.2.0"
 478source = "registry+https://github.com/rust-lang/crates.io-index"
 479checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
 480
 481[[package]]
 482name = "form_urlencoded"
 483version = "1.2.2"
 484source = "registry+https://github.com/rust-lang/crates.io-index"
 485checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
 486dependencies = [
 487 "percent-encoding",
 488]
 489
 490[[package]]
 491name = "futf"
 492version = "0.1.5"
 493source = "registry+https://github.com/rust-lang/crates.io-index"
 494checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
 495dependencies = [
 496 "mac",
 497 "new_debug_unreachable",
 498]
 499
 500[[package]]
 501name = "futures-channel"
 502version = "0.3.32"
 503source = "registry+https://github.com/rust-lang/crates.io-index"
 504checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
 505dependencies = [
 506 "futures-core",
 507]
 508
 509[[package]]
 510name = "futures-core"
 511version = "0.3.32"
 512source = "registry+https://github.com/rust-lang/crates.io-index"
 513checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
 514
 515[[package]]
 516name = "futures-macro"
 517version = "0.3.32"
 518source = "registry+https://github.com/rust-lang/crates.io-index"
 519checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
 520dependencies = [
 521 "proc-macro2",
 522 "quote",
 523 "syn",
 524]
 525
 526[[package]]
 527name = "futures-sink"
 528version = "0.3.32"
 529source = "registry+https://github.com/rust-lang/crates.io-index"
 530checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
 531
 532[[package]]
 533name = "futures-task"
 534version = "0.3.32"
 535source = "registry+https://github.com/rust-lang/crates.io-index"
 536checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
 537
 538[[package]]
 539name = "futures-util"
 540version = "0.3.32"
 541source = "registry+https://github.com/rust-lang/crates.io-index"
 542checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
 543dependencies = [
 544 "futures-core",
 545 "futures-macro",
 546 "futures-task",
 547 "pin-project-lite",
 548 "slab",
 549]
 550
 551[[package]]
 552name = "getrandom"
 553version = "0.4.2"
 554source = "registry+https://github.com/rust-lang/crates.io-index"
 555checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
 556dependencies = [
 557 "cfg-if",
 558 "libc",
 559 "r-efi",
 560 "wasip2",
 561 "wasip3",
 562]
 563
 564[[package]]
 565name = "gix"
 566version = "0.66.0"
 567source = "registry+https://github.com/rust-lang/crates.io-index"
 568checksum = "9048b8d1ae2104f045cb37e5c450fc49d5d8af22609386bfc739c11ba88995eb"
 569dependencies = [
 570 "gix-actor",
 571 "gix-attributes",
 572 "gix-command",
 573 "gix-commitgraph",
 574 "gix-config",
 575 "gix-date",
 576 "gix-diff",
 577 "gix-discover",
 578 "gix-features",
 579 "gix-filter",
 580 "gix-fs",
 581 "gix-glob",
 582 "gix-hash",
 583 "gix-hashtable",
 584 "gix-ignore",
 585 "gix-index",
 586 "gix-lock",
 587 "gix-object",
 588 "gix-odb",
 589 "gix-pack",
 590 "gix-path",
 591 "gix-pathspec",
 592 "gix-ref",
 593 "gix-refspec",
 594 "gix-revision",
 595 "gix-revwalk",
 596 "gix-sec",
 597 "gix-submodule",
 598 "gix-tempfile",
 599 "gix-trace",
 600 "gix-traverse",
 601 "gix-url",
 602 "gix-utils",
 603 "gix-validate 0.9.4",
 604 "gix-worktree",
 605 "once_cell",
 606 "smallvec",
 607 "thiserror 1.0.69",
 608]
 609
 610[[package]]
 611name = "gix-actor"
 612version = "0.32.0"
 613source = "registry+https://github.com/rust-lang/crates.io-index"
 614checksum = "fc19e312cd45c4a66cd003f909163dc2f8e1623e30a0c0c6df3776e89b308665"
 615dependencies = [
 616 "bstr",
 617 "gix-date",
 618 "gix-utils",
 619 "itoa",
 620 "thiserror 1.0.69",
 621 "winnow",
 622]
 623
 624[[package]]
 625name = "gix-attributes"
 626version = "0.22.5"
 627source = "registry+https://github.com/rust-lang/crates.io-index"
 628checksum = "ebccbf25aa4a973dd352564a9000af69edca90623e8a16dad9cbc03713131311"
 629dependencies = [
 630 "bstr",
 631 "gix-glob",
 632 "gix-path",
 633 "gix-quote",
 634 "gix-trace",
 635 "kstring",
 636 "smallvec",
 637 "thiserror 1.0.69",
 638 "unicode-bom",
 639]
 640
 641[[package]]
 642name = "gix-bitmap"
 643version = "0.2.16"
 644source = "registry+https://github.com/rust-lang/crates.io-index"
 645checksum = "d982fc7ef0608e669851d0d2a6141dae74c60d5a27e8daa451f2a4857bbf41e2"
 646dependencies = [
 647 "thiserror 2.0.18",
 648]
 649
 650[[package]]
 651name = "gix-chunk"
 652version = "0.4.12"
 653source = "registry+https://github.com/rust-lang/crates.io-index"
 654checksum = "5c356b3825677cb6ff579551bb8311a81821e184453cbd105e2fc5311b288eeb"
 655dependencies = [
 656 "thiserror 2.0.18",
 657]
 658
 659[[package]]
 660name = "gix-command"
 661version = "0.3.11"
 662source = "registry+https://github.com/rust-lang/crates.io-index"
 663checksum = "6d7d6b8f3a64453fd7e8191eb80b351eb7ac0839b40a1237cd2c137d5079fe53"
 664dependencies = [
 665 "bstr",
 666 "gix-path",
 667 "gix-trace",
 668 "shell-words",
 669]
 670
 671[[package]]
 672name = "gix-commitgraph"
 673version = "0.24.3"
 674source = "registry+https://github.com/rust-lang/crates.io-index"
 675checksum = "133b06f67f565836ec0c473e2116a60fb74f80b6435e21d88013ac0e3c60fc78"
 676dependencies = [
 677 "bstr",
 678 "gix-chunk",
 679 "gix-features",
 680 "gix-hash",
 681 "memmap2",
 682 "thiserror 1.0.69",
 683]
 684
 685[[package]]
 686name = "gix-config"
 687version = "0.40.0"
 688source = "registry+https://github.com/rust-lang/crates.io-index"
 689checksum = "78e797487e6ca3552491de1131b4f72202f282fb33f198b1c34406d765b42bb0"
 690dependencies = [
 691 "bstr",
 692 "gix-config-value",
 693 "gix-features",
 694 "gix-glob",
 695 "gix-path",
 696 "gix-ref",
 697 "gix-sec",
 698 "memchr",
 699 "once_cell",
 700 "smallvec",
 701 "thiserror 1.0.69",
 702 "unicode-bom",
 703 "winnow",
 704]
 705
 706[[package]]
 707name = "gix-config-value"
 708version = "0.14.12"
 709source = "registry+https://github.com/rust-lang/crates.io-index"
 710checksum = "8dc2c844c4cf141884678cabef736fd91dd73068b9146e6f004ba1a0457944b6"
 711dependencies = [
 712 "bitflags",
 713 "bstr",
 714 "gix-path",
 715 "libc",
 716 "thiserror 2.0.18",
 717]
 718
 719[[package]]
 720name = "gix-date"
 721version = "0.9.4"
 722source = "registry+https://github.com/rust-lang/crates.io-index"
 723checksum = "daa30058ec7d3511fbc229e4f9e696a35abd07ec5b82e635eff864a2726217e4"
 724dependencies = [
 725 "bstr",
 726 "itoa",
 727 "jiff",
 728 "thiserror 2.0.18",
 729]
 730
 731[[package]]
 732name = "gix-diff"
 733version = "0.46.0"
 734source = "registry+https://github.com/rust-lang/crates.io-index"
 735checksum = "92c9afd80fff00f8b38b1c1928442feb4cd6d2232a6ed806b6b193151a3d336c"
 736dependencies = [
 737 "bstr",
 738 "gix-command",
 739 "gix-filter",
 740 "gix-fs",
 741 "gix-hash",
 742 "gix-object",
 743 "gix-path",
 744 "gix-tempfile",
 745 "gix-trace",
 746 "gix-worktree",
 747 "imara-diff",
 748 "thiserror 1.0.69",
 749]
 750
 751[[package]]
 752name = "gix-discover"
 753version = "0.35.0"
 754source = "registry+https://github.com/rust-lang/crates.io-index"
 755checksum = "0577366b9567376bc26e815fd74451ebd0e6218814e242f8e5b7072c58d956d2"
 756dependencies = [
 757 "bstr",
 758 "dunce",
 759 "gix-fs",
 760 "gix-hash",
 761 "gix-path",
 762 "gix-ref",
 763 "gix-sec",
 764 "thiserror 1.0.69",
 765]
 766
 767[[package]]
 768name = "gix-features"
 769version = "0.38.2"
 770source = "registry+https://github.com/rust-lang/crates.io-index"
 771checksum = "ac7045ac9fe5f9c727f38799d002a7ed3583cd777e3322a7c4b43e3cf437dc69"
 772dependencies = [
 773 "crc32fast",
 774 "crossbeam-channel",
 775 "flate2",
 776 "gix-hash",
 777 "gix-trace",
 778 "gix-utils",
 779 "libc",
 780 "once_cell",
 781 "parking_lot",
 782 "prodash",
 783 "sha1_smol",
 784 "thiserror 1.0.69",
 785 "walkdir",
 786]
 787
 788[[package]]
 789name = "gix-filter"
 790version = "0.13.0"
 791source = "registry+https://github.com/rust-lang/crates.io-index"
 792checksum = "4121790ae140066e5b953becc72e7496278138d19239be2e63b5067b0843119e"
 793dependencies = [
 794 "bstr",
 795 "encoding_rs",
 796 "gix-attributes",
 797 "gix-command",
 798 "gix-hash",
 799 "gix-object",
 800 "gix-packetline-blocking",
 801 "gix-path",
 802 "gix-quote",
 803 "gix-trace",
 804 "gix-utils",
 805 "smallvec",
 806 "thiserror 1.0.69",
 807]
 808
 809[[package]]
 810name = "gix-fs"
 811version = "0.11.3"
 812source = "registry+https://github.com/rust-lang/crates.io-index"
 813checksum = "f2bfe6249cfea6d0c0e0990d5226a4cb36f030444ba9e35e0639275db8f98575"
 814dependencies = [
 815 "fastrand",
 816 "gix-features",
 817 "gix-utils",
 818]
 819
 820[[package]]
 821name = "gix-glob"
 822version = "0.16.5"
 823source = "registry+https://github.com/rust-lang/crates.io-index"
 824checksum = "74908b4bbc0a0a40852737e5d7889f676f081e340d5451a16e5b4c50d592f111"
 825dependencies = [
 826 "bitflags",
 827 "bstr",
 828 "gix-features",
 829 "gix-path",
 830]
 831
 832[[package]]
 833name = "gix-hash"
 834version = "0.14.2"
 835source = "registry+https://github.com/rust-lang/crates.io-index"
 836checksum = "f93d7df7366121b5018f947a04d37f034717e113dcf9ccd85c34b58e57a74d5e"
 837dependencies = [
 838 "faster-hex",
 839 "thiserror 1.0.69",
 840]
 841
 842[[package]]
 843name = "gix-hashtable"
 844version = "0.5.2"
 845source = "registry+https://github.com/rust-lang/crates.io-index"
 846checksum = "7ddf80e16f3c19ac06ce415a38b8591993d3f73aede049cb561becb5b3a8e242"
 847dependencies = [
 848 "gix-hash",
 849 "hashbrown 0.14.5",
 850 "parking_lot",
 851]
 852
 853[[package]]
 854name = "gix-ignore"
 855version = "0.11.4"
 856source = "registry+https://github.com/rust-lang/crates.io-index"
 857checksum = "e447cd96598460f5906a0f6c75e950a39f98c2705fc755ad2f2020c9e937fab7"
 858dependencies = [
 859 "bstr",
 860 "gix-glob",
 861 "gix-path",
 862 "gix-trace",
 863 "unicode-bom",
 864]
 865
 866[[package]]
 867name = "gix-index"
 868version = "0.35.0"
 869source = "registry+https://github.com/rust-lang/crates.io-index"
 870checksum = "0cd4203244444017682176e65fd0180be9298e58ed90bd4a8489a357795ed22d"
 871dependencies = [
 872 "bitflags",
 873 "bstr",
 874 "filetime",
 875 "fnv",
 876 "gix-bitmap",
 877 "gix-features",
 878 "gix-fs",
 879 "gix-hash",
 880 "gix-lock",
 881 "gix-object",
 882 "gix-traverse",
 883 "gix-utils",
 884 "gix-validate 0.9.4",
 885 "hashbrown 0.14.5",
 886 "itoa",
 887 "libc",
 888 "memmap2",
 889 "rustix 0.38.44",
 890 "smallvec",
 891 "thiserror 1.0.69",
 892]
 893
 894[[package]]
 895name = "gix-lock"
 896version = "14.0.0"
 897source = "registry+https://github.com/rust-lang/crates.io-index"
 898checksum = "e3bc7fe297f1f4614774989c00ec8b1add59571dc9b024b4c00acb7dedd4e19d"
 899dependencies = [
 900 "gix-tempfile",
 901 "gix-utils",
 902 "thiserror 1.0.69",
 903]
 904
 905[[package]]
 906name = "gix-object"
 907version = "0.44.0"
 908source = "registry+https://github.com/rust-lang/crates.io-index"
 909checksum = "2f5b801834f1de7640731820c2df6ba88d95480dc4ab166a5882f8ff12b88efa"
 910dependencies = [
 911 "bstr",
 912 "gix-actor",
 913 "gix-date",
 914 "gix-features",
 915 "gix-hash",
 916 "gix-utils",
 917 "gix-validate 0.9.4",
 918 "itoa",
 919 "smallvec",
 920 "thiserror 1.0.69",
 921 "winnow",
 922]
 923
 924[[package]]
 925name = "gix-odb"
 926version = "0.63.0"
 927source = "registry+https://github.com/rust-lang/crates.io-index"
 928checksum = "a3158068701c17df54f0ab2adda527f5a6aca38fd5fd80ceb7e3c0a2717ec747"
 929dependencies = [
 930 "arc-swap",
 931 "gix-date",
 932 "gix-features",
 933 "gix-fs",
 934 "gix-hash",
 935 "gix-object",
 936 "gix-pack",
 937 "gix-path",
 938 "gix-quote",
 939 "parking_lot",
 940 "tempfile",
 941 "thiserror 1.0.69",
 942]
 943
 944[[package]]
 945name = "gix-pack"
 946version = "0.53.0"
 947source = "registry+https://github.com/rust-lang/crates.io-index"
 948checksum = "3223aa342eee21e1e0e403cad8ae9caf9edca55ef84c347738d10681676fd954"
 949dependencies = [
 950 "clru",
 951 "gix-chunk",
 952 "gix-features",
 953 "gix-hash",
 954 "gix-hashtable",
 955 "gix-object",
 956 "gix-path",
 957 "memmap2",
 958 "smallvec",
 959 "thiserror 1.0.69",
 960 "uluru",
 961]
 962
 963[[package]]
 964name = "gix-packetline-blocking"
 965version = "0.17.5"
 966source = "registry+https://github.com/rust-lang/crates.io-index"
 967checksum = "b9802304baa798dd6f5ff8008a2b6516d54b74a69ca2d3a2b9e2d6c3b5556b40"
 968dependencies = [
 969 "bstr",
 970 "faster-hex",
 971 "gix-trace",
 972 "thiserror 1.0.69",
 973]
 974
 975[[package]]
 976name = "gix-path"
 977version = "0.10.22"
 978source = "registry+https://github.com/rust-lang/crates.io-index"
 979checksum = "7cb06c3e4f8eed6e24fd915fa93145e28a511f4ea0e768bae16673e05ed3f366"
 980dependencies = [
 981 "bstr",
 982 "gix-trace",
 983 "gix-validate 0.10.1",
 984 "thiserror 2.0.18",
 985]
 986
 987[[package]]
 988name = "gix-pathspec"
 989version = "0.7.7"
 990source = "registry+https://github.com/rust-lang/crates.io-index"
 991checksum = "5d23bf239532b4414d0e63b8ab3a65481881f7237ed9647bb10c1e3cc54c5ceb"
 992dependencies = [
 993 "bitflags",
 994 "bstr",
 995 "gix-attributes",
 996 "gix-config-value",
 997 "gix-glob",
 998 "gix-path",
 999 "thiserror 1.0.69",
1000]
1001
1002[[package]]
1003name = "gix-quote"
1004version = "0.4.15"
1005source = "registry+https://github.com/rust-lang/crates.io-index"
1006checksum = "e49357fccdb0c85c0d3a3292a9f6db32d9b3535959b5471bb9624908f4a066c6"
1007dependencies = [
1008 "bstr",
1009 "gix-utils",
1010 "thiserror 2.0.18",
1011]
1012
1013[[package]]
1014name = "gix-ref"
1015version = "0.47.0"
1016source = "registry+https://github.com/rust-lang/crates.io-index"
1017checksum = "ae0d8406ebf9aaa91f55a57f053c5a1ad1a39f60fdf0303142b7be7ea44311e5"
1018dependencies = [
1019 "gix-actor",
1020 "gix-features",
1021 "gix-fs",
1022 "gix-hash",
1023 "gix-lock",
1024 "gix-object",
1025 "gix-path",
1026 "gix-tempfile",
1027 "gix-utils",
1028 "gix-validate 0.9.4",
1029 "memmap2",
1030 "thiserror 1.0.69",
1031 "winnow",
1032]
1033
1034[[package]]
1035name = "gix-refspec"
1036version = "0.25.0"
1037source = "registry+https://github.com/rust-lang/crates.io-index"
1038checksum = "ebb005f82341ba67615ffdd9f7742c87787544441c88090878393d0682869ca6"
1039dependencies = [
1040 "bstr",
1041 "gix-hash",
1042 "gix-revision",
1043 "gix-validate 0.9.4",
1044 "smallvec",
1045 "thiserror 1.0.69",
1046]
1047
1048[[package]]
1049name = "gix-revision"
1050version = "0.29.0"
1051source = "registry+https://github.com/rust-lang/crates.io-index"
1052checksum = "ba4621b219ac0cdb9256883030c3d56a6c64a6deaa829a92da73b9a576825e1e"
1053dependencies = [
1054 "bstr",
1055 "gix-date",
1056 "gix-hash",
1057 "gix-hashtable",
1058 "gix-object",
1059 "gix-revwalk",
1060 "gix-trace",
1061 "thiserror 1.0.69",
1062]
1063
1064[[package]]
1065name = "gix-revwalk"
1066version = "0.15.0"
1067source = "registry+https://github.com/rust-lang/crates.io-index"
1068checksum = "b41e72544b93084ee682ef3d5b31b1ba4d8fa27a017482900e5e044d5b1b3984"
1069dependencies = [
1070 "gix-commitgraph",
1071 "gix-date",
1072 "gix-hash",
1073 "gix-hashtable",
1074 "gix-object",
1075 "smallvec",
1076 "thiserror 1.0.69",
1077]
1078
1079[[package]]
1080name = "gix-sec"
1081version = "0.10.12"
1082source = "registry+https://github.com/rust-lang/crates.io-index"
1083checksum = "47aeb0f13de9ef2f3033f5ff218de30f44db827ac9f1286f9ef050aacddd5888"
1084dependencies = [
1085 "bitflags",
1086 "gix-path",
1087 "libc",
1088 "windows-sys 0.52.0",
1089]
1090
1091[[package]]
1092name = "gix-submodule"
1093version = "0.14.0"
1094source = "registry+https://github.com/rust-lang/crates.io-index"
1095checksum = "529d0af78cc2f372b3218f15eb1e3d1635a21c8937c12e2dd0b6fc80c2ca874b"
1096dependencies = [
1097 "bstr",
1098 "gix-config",
1099 "gix-path",
1100 "gix-pathspec",
1101 "gix-refspec",
1102 "gix-url",
1103 "thiserror 1.0.69",
1104]
1105
1106[[package]]
1107name = "gix-tempfile"
1108version = "14.0.2"
1109source = "registry+https://github.com/rust-lang/crates.io-index"
1110checksum = "046b4927969fa816a150a0cda2e62c80016fe11fb3c3184e4dddf4e542f108aa"
1111dependencies = [
1112 "dashmap",
1113 "gix-fs",
1114 "libc",
1115 "once_cell",
1116 "parking_lot",
1117 "tempfile",
1118]
1119
1120[[package]]
1121name = "gix-trace"
1122version = "0.1.19"
1123source = "registry+https://github.com/rust-lang/crates.io-index"
1124checksum = "6f23569e55f2ffaf958617353b9734a7d52a7c19c439eeaa5e3efc217fd2270e"
1125
1126[[package]]
1127name = "gix-traverse"
1128version = "0.41.0"
1129source = "registry+https://github.com/rust-lang/crates.io-index"
1130checksum = "030da39af94e4df35472e9318228f36530989327906f38e27807df305fccb780"
1131dependencies = [
1132 "bitflags",
1133 "gix-commitgraph",
1134 "gix-date",
1135 "gix-hash",
1136 "gix-hashtable",
1137 "gix-object",
1138 "gix-revwalk",
1139 "smallvec",
1140 "thiserror 1.0.69",
1141]
1142
1143[[package]]
1144name = "gix-url"
1145version = "0.27.5"
1146source = "registry+https://github.com/rust-lang/crates.io-index"
1147checksum = "fd280c5e84fb22e128ed2a053a0daeacb6379469be6a85e3d518a0636e160c89"
1148dependencies = [
1149 "bstr",
1150 "gix-features",
1151 "gix-path",
1152 "home",
1153 "thiserror 1.0.69",
1154 "url",
1155]
1156
1157[[package]]
1158name = "gix-utils"
1159version = "0.1.14"
1160source = "registry+https://github.com/rust-lang/crates.io-index"
1161checksum = "ff08f24e03ac8916c478c8419d7d3c33393da9bb41fa4c24455d5406aeefd35f"
1162dependencies = [
1163 "fastrand",
1164 "unicode-normalization",
1165]
1166
1167[[package]]
1168name = "gix-validate"
1169version = "0.9.4"
1170source = "registry+https://github.com/rust-lang/crates.io-index"
1171checksum = "34b5f1253109da6c79ed7cf6e1e38437080bb6d704c76af14c93e2f255234084"
1172dependencies = [
1173 "bstr",
1174 "thiserror 2.0.18",
1175]
1176
1177[[package]]
1178name = "gix-validate"
1179version = "0.10.1"
1180source = "registry+https://github.com/rust-lang/crates.io-index"
1181checksum = "5b1e63a5b516e970a594f870ed4571a8fdcb8a344e7bd407a20db8bd61dbfde4"
1182dependencies = [
1183 "bstr",
1184 "thiserror 2.0.18",
1185]
1186
1187[[package]]
1188name = "gix-worktree"
1189version = "0.36.0"
1190source = "registry+https://github.com/rust-lang/crates.io-index"
1191checksum = "c312ad76a3f2ba8e865b360d5cb3aa04660971d16dec6dd0ce717938d903149a"
1192dependencies = [
1193 "bstr",
1194 "gix-attributes",
1195 "gix-features",
1196 "gix-fs",
1197 "gix-glob",
1198 "gix-hash",
1199 "gix-ignore",
1200 "gix-index",
1201 "gix-object",
1202 "gix-path",
1203 "gix-validate 0.9.4",
1204]
1205
1206[[package]]
1207name = "hashbrown"
1208version = "0.14.5"
1209source = "registry+https://github.com/rust-lang/crates.io-index"
1210checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1211dependencies = [
1212 "ahash",
1213 "allocator-api2",
1214]
1215
1216[[package]]
1217name = "hashbrown"
1218version = "0.15.5"
1219source = "registry+https://github.com/rust-lang/crates.io-index"
1220checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1221dependencies = [
1222 "foldhash 0.1.5",
1223]
1224
1225[[package]]
1226name = "hashbrown"
1227version = "0.16.1"
1228source = "registry+https://github.com/rust-lang/crates.io-index"
1229checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1230dependencies = [
1231 "allocator-api2",
1232 "equivalent",
1233 "foldhash 0.2.0",
1234]
1235
1236[[package]]
1237name = "hashbrown"
1238version = "0.17.1"
1239source = "registry+https://github.com/rust-lang/crates.io-index"
1240checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1241
1242[[package]]
1243name = "heck"
1244version = "0.5.0"
1245source = "registry+https://github.com/rust-lang/crates.io-index"
1246checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1247
1248[[package]]
1249name = "home"
1250version = "0.5.12"
1251source = "registry+https://github.com/rust-lang/crates.io-index"
1252checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
1253dependencies = [
1254 "windows-sys 0.61.2",
1255]
1256
1257[[package]]
1258name = "html5ever"
1259version = "0.35.0"
1260source = "registry+https://github.com/rust-lang/crates.io-index"
1261checksum = "55d958c2f74b664487a2035fe1dadb032c48718a03b63f3ab0b8537db8549ed4"
1262dependencies = [
1263 "log",
1264 "markup5ever",
1265 "match_token",
1266]
1267
1268[[package]]
1269name = "http"
1270version = "1.4.0"
1271source = "registry+https://github.com/rust-lang/crates.io-index"
1272checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1273dependencies = [
1274 "bytes",
1275 "itoa",
1276]
1277
1278[[package]]
1279name = "http-body"
1280version = "1.0.1"
1281source = "registry+https://github.com/rust-lang/crates.io-index"
1282checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1283dependencies = [
1284 "bytes",
1285 "http",
1286]
1287
1288[[package]]
1289name = "http-body-util"
1290version = "0.1.3"
1291source = "registry+https://github.com/rust-lang/crates.io-index"
1292checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1293dependencies = [
1294 "bytes",
1295 "futures-core",
1296 "http",
1297 "http-body",
1298 "pin-project-lite",
1299]
1300
1301[[package]]
1302name = "http-range-header"
1303version = "0.4.2"
1304source = "registry+https://github.com/rust-lang/crates.io-index"
1305checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c"
1306
1307[[package]]
1308name = "httparse"
1309version = "1.10.1"
1310source = "registry+https://github.com/rust-lang/crates.io-index"
1311checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1312
1313[[package]]
1314name = "httpdate"
1315version = "1.0.3"
1316source = "registry+https://github.com/rust-lang/crates.io-index"
1317checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1318
1319[[package]]
1320name = "hyper"
1321version = "1.9.0"
1322source = "registry+https://github.com/rust-lang/crates.io-index"
1323checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
1324dependencies = [
1325 "atomic-waker",
1326 "bytes",
1327 "futures-channel",
1328 "futures-core",
1329 "http",
1330 "http-body",
1331 "httparse",
1332 "httpdate",
1333 "itoa",
1334 "pin-project-lite",
1335 "smallvec",
1336 "tokio",
1337]
1338
1339[[package]]
1340name = "hyper-util"
1341version = "0.1.20"
1342source = "registry+https://github.com/rust-lang/crates.io-index"
1343checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1344dependencies = [
1345 "bytes",
1346 "http",
1347 "http-body",
1348 "hyper",
1349 "pin-project-lite",
1350 "tokio",
1351 "tower-service",
1352]
1353
1354[[package]]
1355name = "iana-time-zone"
1356version = "0.1.65"
1357source = "registry+https://github.com/rust-lang/crates.io-index"
1358checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1359dependencies = [
1360 "android_system_properties",
1361 "core-foundation-sys",
1362 "iana-time-zone-haiku",
1363 "js-sys",
1364 "log",
1365 "wasm-bindgen",
1366 "windows-core",
1367]
1368
1369[[package]]
1370name = "iana-time-zone-haiku"
1371version = "0.1.2"
1372source = "registry+https://github.com/rust-lang/crates.io-index"
1373checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1374dependencies = [
1375 "cc",
1376]
1377
1378[[package]]
1379name = "icu_collections"
1380version = "2.2.0"
1381source = "registry+https://github.com/rust-lang/crates.io-index"
1382checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1383dependencies = [
1384 "displaydoc",
1385 "potential_utf",
1386 "utf8_iter",
1387 "yoke",
1388 "zerofrom",
1389 "zerovec",
1390]
1391
1392[[package]]
1393name = "icu_locale_core"
1394version = "2.2.0"
1395source = "registry+https://github.com/rust-lang/crates.io-index"
1396checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1397dependencies = [
1398 "displaydoc",
1399 "litemap",
1400 "tinystr",
1401 "writeable",
1402 "zerovec",
1403]
1404
1405[[package]]
1406name = "icu_normalizer"
1407version = "2.2.0"
1408source = "registry+https://github.com/rust-lang/crates.io-index"
1409checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1410dependencies = [
1411 "icu_collections",
1412 "icu_normalizer_data",
1413 "icu_properties",
1414 "icu_provider",
1415 "smallvec",
1416 "zerovec",
1417]
1418
1419[[package]]
1420name = "icu_normalizer_data"
1421version = "2.2.0"
1422source = "registry+https://github.com/rust-lang/crates.io-index"
1423checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1424
1425[[package]]
1426name = "icu_properties"
1427version = "2.2.0"
1428source = "registry+https://github.com/rust-lang/crates.io-index"
1429checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1430dependencies = [
1431 "icu_collections",
1432 "icu_locale_core",
1433 "icu_properties_data",
1434 "icu_provider",
1435 "zerotrie",
1436 "zerovec",
1437]
1438
1439[[package]]
1440name = "icu_properties_data"
1441version = "2.2.0"
1442source = "registry+https://github.com/rust-lang/crates.io-index"
1443checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1444
1445[[package]]
1446name = "icu_provider"
1447version = "2.2.0"
1448source = "registry+https://github.com/rust-lang/crates.io-index"
1449checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1450dependencies = [
1451 "displaydoc",
1452 "icu_locale_core",
1453 "writeable",
1454 "yoke",
1455 "zerofrom",
1456 "zerotrie",
1457 "zerovec",
1458]
1459
1460[[package]]
1461name = "id-arena"
1462version = "2.3.0"
1463source = "registry+https://github.com/rust-lang/crates.io-index"
1464checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1465
1466[[package]]
1467name = "idna"
1468version = "1.1.0"
1469source = "registry+https://github.com/rust-lang/crates.io-index"
1470checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1471dependencies = [
1472 "idna_adapter",
1473 "smallvec",
1474 "utf8_iter",
1475]
1476
1477[[package]]
1478name = "idna_adapter"
1479version = "1.2.2"
1480source = "registry+https://github.com/rust-lang/crates.io-index"
1481checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1482dependencies = [
1483 "icu_normalizer",
1484 "icu_properties",
1485]
1486
1487[[package]]
1488name = "imara-diff"
1489version = "0.1.8"
1490source = "registry+https://github.com/rust-lang/crates.io-index"
1491checksum = "17d34b7d42178945f775e84bc4c36dde7c1c6cdfea656d3354d009056f2bb3d2"
1492dependencies = [
1493 "hashbrown 0.15.5",
1494]
1495
1496[[package]]
1497name = "indexmap"
1498version = "2.14.0"
1499source = "registry+https://github.com/rust-lang/crates.io-index"
1500checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1501dependencies = [
1502 "equivalent",
1503 "hashbrown 0.17.1",
1504 "serde",
1505 "serde_core",
1506]
1507
1508[[package]]
1509name = "itoa"
1510version = "1.0.18"
1511source = "registry+https://github.com/rust-lang/crates.io-index"
1512checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1513
1514[[package]]
1515name = "jiff"
1516version = "0.2.24"
1517source = "registry+https://github.com/rust-lang/crates.io-index"
1518checksum = "f00b5dbd620d61dfdcb6007c9c1f6054ebd75319f163d886a9055cec1155073d"
1519dependencies = [
1520 "jiff-static",
1521 "jiff-tzdb-platform",
1522 "log",
1523 "portable-atomic",
1524 "portable-atomic-util",
1525 "serde_core",
1526 "windows-sys 0.61.2",
1527]
1528
1529[[package]]
1530name = "jiff-static"
1531version = "0.2.24"
1532source = "registry+https://github.com/rust-lang/crates.io-index"
1533checksum = "e000de030ff8022ea1da3f466fbb0f3a809f5e51ed31f6dd931c35181ad8e6d7"
1534dependencies = [
1535 "proc-macro2",
1536 "quote",
1537 "syn",
1538]
1539
1540[[package]]
1541name = "jiff-tzdb"
1542version = "0.1.6"
1543source = "registry+https://github.com/rust-lang/crates.io-index"
1544checksum = "c900ef84826f1338a557697dc8fc601df9ca9af4ac137c7fb61d4c6f2dfd3076"
1545
1546[[package]]
1547name = "jiff-tzdb-platform"
1548version = "0.1.3"
1549source = "registry+https://github.com/rust-lang/crates.io-index"
1550checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
1551dependencies = [
1552 "jiff-tzdb",
1553]
1554
1555[[package]]
1556name = "js-sys"
1557version = "0.3.98"
1558source = "registry+https://github.com/rust-lang/crates.io-index"
1559checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
1560dependencies = [
1561 "cfg-if",
1562 "futures-util",
1563 "once_cell",
1564 "wasm-bindgen",
1565]
1566
1567[[package]]
1568name = "kstring"
1569version = "2.0.2"
1570source = "registry+https://github.com/rust-lang/crates.io-index"
1571checksum = "558bf9508a558512042d3095138b1f7b8fe90c5467d94f9f1da28b3731c5dbd1"
1572dependencies = [
1573 "static_assertions",
1574]
1575
1576[[package]]
1577name = "lazy_static"
1578version = "1.5.0"
1579source = "registry+https://github.com/rust-lang/crates.io-index"
1580checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1581
1582[[package]]
1583name = "leb128fmt"
1584version = "0.1.0"
1585source = "registry+https://github.com/rust-lang/crates.io-index"
1586checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1587
1588[[package]]
1589name = "libc"
1590version = "0.2.186"
1591source = "registry+https://github.com/rust-lang/crates.io-index"
1592checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1593
1594[[package]]
1595name = "linked-hash-map"
1596version = "0.5.6"
1597source = "registry+https://github.com/rust-lang/crates.io-index"
1598checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1599
1600[[package]]
1601name = "linux-raw-sys"
1602version = "0.4.15"
1603source = "registry+https://github.com/rust-lang/crates.io-index"
1604checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1605
1606[[package]]
1607name = "linux-raw-sys"
1608version = "0.12.1"
1609source = "registry+https://github.com/rust-lang/crates.io-index"
1610checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1611
1612[[package]]
1613name = "litemap"
1614version = "0.8.2"
1615source = "registry+https://github.com/rust-lang/crates.io-index"
1616checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1617
1618[[package]]
1619name = "lock_api"
1620version = "0.4.14"
1621source = "registry+https://github.com/rust-lang/crates.io-index"
1622checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1623dependencies = [
1624 "scopeguard",
1625]
1626
1627[[package]]
1628name = "log"
1629version = "0.4.29"
1630source = "registry+https://github.com/rust-lang/crates.io-index"
1631checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1632
1633[[package]]
1634name = "mac"
1635version = "0.1.1"
1636source = "registry+https://github.com/rust-lang/crates.io-index"
1637checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
1638
1639[[package]]
1640name = "maplit"
1641version = "1.0.2"
1642source = "registry+https://github.com/rust-lang/crates.io-index"
1643checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
1644
1645[[package]]
1646name = "markup5ever"
1647version = "0.35.0"
1648source = "registry+https://github.com/rust-lang/crates.io-index"
1649checksum = "311fe69c934650f8f19652b3946075f0fc41ad8757dbb68f1ca14e7900ecc1c3"
1650dependencies = [
1651 "log",
1652 "tendril",
1653 "web_atoms",
1654]
1655
1656[[package]]
1657name = "match_token"
1658version = "0.35.0"
1659source = "registry+https://github.com/rust-lang/crates.io-index"
1660checksum = "ac84fd3f360fcc43dc5f5d186f02a94192761a080e8bc58621ad4d12296a58cf"
1661dependencies = [
1662 "proc-macro2",
1663 "quote",
1664 "syn",
1665]
1666
1667[[package]]
1668name = "matchers"
1669version = "0.2.0"
1670source = "registry+https://github.com/rust-lang/crates.io-index"
1671checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1672dependencies = [
1673 "regex-automata",
1674]
1675
1676[[package]]
1677name = "matchit"
1678version = "0.8.4"
1679source = "registry+https://github.com/rust-lang/crates.io-index"
1680checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1681
1682[[package]]
1683name = "memchr"
1684version = "2.8.0"
1685source = "registry+https://github.com/rust-lang/crates.io-index"
1686checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1687
1688[[package]]
1689name = "memmap2"
1690version = "0.9.10"
1691source = "registry+https://github.com/rust-lang/crates.io-index"
1692checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
1693dependencies = [
1694 "libc",
1695]
1696
1697[[package]]
1698name = "memo-map"
1699version = "0.3.3"
1700source = "registry+https://github.com/rust-lang/crates.io-index"
1701checksum = "38d1115007560874e373613744c6fba374c17688327a71c1476d1a5954cc857b"
1702
1703[[package]]
1704name = "mime"
1705version = "0.3.17"
1706source = "registry+https://github.com/rust-lang/crates.io-index"
1707checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1708
1709[[package]]
1710name = "mime_guess"
1711version = "2.0.5"
1712source = "registry+https://github.com/rust-lang/crates.io-index"
1713checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1714dependencies = [
1715 "mime",
1716 "unicase",
1717]
1718
1719[[package]]
1720name = "minijinja"
1721version = "2.19.0"
1722source = "registry+https://github.com/rust-lang/crates.io-index"
1723checksum = "805bfd7352166bae857ee569628b52bcd85a1cecf7810861ebceb1686b72b75d"
1724dependencies = [
1725 "memo-map",
1726 "serde",
1727]
1728
1729[[package]]
1730name = "miniz_oxide"
1731version = "0.8.9"
1732source = "registry+https://github.com/rust-lang/crates.io-index"
1733checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1734dependencies = [
1735 "adler2",
1736 "simd-adler32",
1737]
1738
1739[[package]]
1740name = "mio"
1741version = "1.2.0"
1742source = "registry+https://github.com/rust-lang/crates.io-index"
1743checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1744dependencies = [
1745 "libc",
1746 "wasi",
1747 "windows-sys 0.61.2",
1748]
1749
1750[[package]]
1751name = "new_debug_unreachable"
1752version = "1.0.6"
1753source = "registry+https://github.com/rust-lang/crates.io-index"
1754checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1755
1756[[package]]
1757name = "nu-ansi-term"
1758version = "0.50.3"
1759source = "registry+https://github.com/rust-lang/crates.io-index"
1760checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1761dependencies = [
1762 "windows-sys 0.61.2",
1763]
1764
1765[[package]]
1766name = "num-conv"
1767version = "0.2.1"
1768source = "registry+https://github.com/rust-lang/crates.io-index"
1769checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
1770
1771[[package]]
1772name = "num-traits"
1773version = "0.2.19"
1774source = "registry+https://github.com/rust-lang/crates.io-index"
1775checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1776dependencies = [
1777 "autocfg",
1778]
1779
1780[[package]]
1781name = "once_cell"
1782version = "1.21.4"
1783source = "registry+https://github.com/rust-lang/crates.io-index"
1784checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1785
1786[[package]]
1787name = "parking_lot"
1788version = "0.12.5"
1789source = "registry+https://github.com/rust-lang/crates.io-index"
1790checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1791dependencies = [
1792 "lock_api",
1793 "parking_lot_core",
1794]
1795
1796[[package]]
1797name = "parking_lot_core"
1798version = "0.9.12"
1799source = "registry+https://github.com/rust-lang/crates.io-index"
1800checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1801dependencies = [
1802 "cfg-if",
1803 "libc",
1804 "redox_syscall",
1805 "smallvec",
1806 "windows-link",
1807]
1808
1809[[package]]
1810name = "percent-encoding"
1811version = "2.3.2"
1812source = "registry+https://github.com/rust-lang/crates.io-index"
1813checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1814
1815[[package]]
1816name = "phf"
1817version = "0.11.3"
1818source = "registry+https://github.com/rust-lang/crates.io-index"
1819checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1820dependencies = [
1821 "phf_macros",
1822 "phf_shared",
1823]
1824
1825[[package]]
1826name = "phf_codegen"
1827version = "0.11.3"
1828source = "registry+https://github.com/rust-lang/crates.io-index"
1829checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1830dependencies = [
1831 "phf_generator",
1832 "phf_shared",
1833]
1834
1835[[package]]
1836name = "phf_generator"
1837version = "0.11.3"
1838source = "registry+https://github.com/rust-lang/crates.io-index"
1839checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1840dependencies = [
1841 "phf_shared",
1842 "rand",
1843]
1844
1845[[package]]
1846name = "phf_macros"
1847version = "0.11.3"
1848source = "registry+https://github.com/rust-lang/crates.io-index"
1849checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
1850dependencies = [
1851 "phf_generator",
1852 "phf_shared",
1853 "proc-macro2",
1854 "quote",
1855 "syn",
1856]
1857
1858[[package]]
1859name = "phf_shared"
1860version = "0.11.3"
1861source = "registry+https://github.com/rust-lang/crates.io-index"
1862checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1863dependencies = [
1864 "siphasher",
1865]
1866
1867[[package]]
1868name = "pin-project-lite"
1869version = "0.2.17"
1870source = "registry+https://github.com/rust-lang/crates.io-index"
1871checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1872
1873[[package]]
1874name = "plist"
1875version = "1.9.0"
1876source = "registry+https://github.com/rust-lang/crates.io-index"
1877checksum = "092791278e026273c1b65bbdcfbba3a300f2994c896bd01ab01da613c29c46f1"
1878dependencies = [
1879 "base64",
1880 "indexmap",
1881 "quick-xml",
1882 "serde",
1883 "time",
1884]
1885
1886[[package]]
1887name = "portable-atomic"
1888version = "1.13.1"
1889source = "registry+https://github.com/rust-lang/crates.io-index"
1890checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1891
1892[[package]]
1893name = "portable-atomic-util"
1894version = "0.2.7"
1895source = "registry+https://github.com/rust-lang/crates.io-index"
1896checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
1897dependencies = [
1898 "portable-atomic",
1899]
1900
1901[[package]]
1902name = "potential_utf"
1903version = "0.1.5"
1904source = "registry+https://github.com/rust-lang/crates.io-index"
1905checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1906dependencies = [
1907 "zerovec",
1908]
1909
1910[[package]]
1911name = "powerfmt"
1912version = "0.2.0"
1913source = "registry+https://github.com/rust-lang/crates.io-index"
1914checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1915
1916[[package]]
1917name = "precomputed-hash"
1918version = "0.1.1"
1919source = "registry+https://github.com/rust-lang/crates.io-index"
1920checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
1921
1922[[package]]
1923name = "prettyplease"
1924version = "0.2.37"
1925source = "registry+https://github.com/rust-lang/crates.io-index"
1926checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1927dependencies = [
1928 "proc-macro2",
1929 "syn",
1930]
1931
1932[[package]]
1933name = "proc-macro2"
1934version = "1.0.106"
1935source = "registry+https://github.com/rust-lang/crates.io-index"
1936checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1937dependencies = [
1938 "unicode-ident",
1939]
1940
1941[[package]]
1942name = "prodash"
1943version = "28.0.0"
1944source = "registry+https://github.com/rust-lang/crates.io-index"
1945checksum = "744a264d26b88a6a7e37cbad97953fa233b94d585236310bcbc88474b4092d79"
1946
1947[[package]]
1948name = "pulldown-cmark"
1949version = "0.12.2"
1950source = "registry+https://github.com/rust-lang/crates.io-index"
1951checksum = "f86ba2052aebccc42cbbb3ed234b8b13ce76f75c3551a303cb2bcffcff12bb14"
1952dependencies = [
1953 "bitflags",
1954 "memchr",
1955 "pulldown-cmark-escape",
1956 "unicase",
1957]
1958
1959[[package]]
1960name = "pulldown-cmark-escape"
1961version = "0.11.0"
1962source = "registry+https://github.com/rust-lang/crates.io-index"
1963checksum = "007d8adb5ddab6f8e3f491ac63566a7d5002cc7ed73901f72057943fa71ae1ae"
1964
1965[[package]]
1966name = "quick-xml"
1967version = "0.39.4"
1968source = "registry+https://github.com/rust-lang/crates.io-index"
1969checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e"
1970dependencies = [
1971 "memchr",
1972]
1973
1974[[package]]
1975name = "quote"
1976version = "1.0.45"
1977source = "registry+https://github.com/rust-lang/crates.io-index"
1978checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1979dependencies = [
1980 "proc-macro2",
1981]
1982
1983[[package]]
1984name = "r-efi"
1985version = "6.0.0"
1986source = "registry+https://github.com/rust-lang/crates.io-index"
1987checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1988
1989[[package]]
1990name = "rand"
1991version = "0.8.6"
1992source = "registry+https://github.com/rust-lang/crates.io-index"
1993checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1994dependencies = [
1995 "rand_core",
1996]
1997
1998[[package]]
1999name = "rand_core"
2000version = "0.6.4"
2001source = "registry+https://github.com/rust-lang/crates.io-index"
2002checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2003
2004[[package]]
2005name = "redox_syscall"
2006version = "0.5.18"
2007source = "registry+https://github.com/rust-lang/crates.io-index"
2008checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2009dependencies = [
2010 "bitflags",
2011]
2012
2013[[package]]
2014name = "regex-automata"
2015version = "0.4.14"
2016source = "registry+https://github.com/rust-lang/crates.io-index"
2017checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2018dependencies = [
2019 "aho-corasick",
2020 "memchr",
2021 "regex-syntax",
2022]
2023
2024[[package]]
2025name = "regex-syntax"
2026version = "0.8.10"
2027source = "registry+https://github.com/rust-lang/crates.io-index"
2028checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2029
2030[[package]]
2031name = "repos"
2032version = "0.1.0"
2033dependencies = [
2034 "ammonia",
2035 "anyhow",
2036 "async-stream",
2037 "axum",
2038 "bytes",
2039 "chrono",
2040 "dotenvy",
2041 "futures-util",
2042 "gix",
2043 "mime_guess",
2044 "minijinja",
2045 "pulldown-cmark",
2046 "serde",
2047 "serde_json",
2048 "syntect",
2049 "tokio",
2050 "tower",
2051 "tower-http",
2052 "tracing",
2053 "tracing-subscriber",
2054 "urlencoding",
2055]
2056
2057[[package]]
2058name = "rustix"
2059version = "0.38.44"
2060source = "registry+https://github.com/rust-lang/crates.io-index"
2061checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2062dependencies = [
2063 "bitflags",
2064 "errno",
2065 "libc",
2066 "linux-raw-sys 0.4.15",
2067 "windows-sys 0.59.0",
2068]
2069
2070[[package]]
2071name = "rustix"
2072version = "1.1.4"
2073source = "registry+https://github.com/rust-lang/crates.io-index"
2074checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2075dependencies = [
2076 "bitflags",
2077 "errno",
2078 "libc",
2079 "linux-raw-sys 0.12.1",
2080 "windows-sys 0.61.2",
2081]
2082
2083[[package]]
2084name = "rustversion"
2085version = "1.0.22"
2086source = "registry+https://github.com/rust-lang/crates.io-index"
2087checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2088
2089[[package]]
2090name = "ryu"
2091version = "1.0.23"
2092source = "registry+https://github.com/rust-lang/crates.io-index"
2093checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2094
2095[[package]]
2096name = "same-file"
2097version = "1.0.6"
2098source = "registry+https://github.com/rust-lang/crates.io-index"
2099checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2100dependencies = [
2101 "winapi-util",
2102]
2103
2104[[package]]
2105name = "scopeguard"
2106version = "1.2.0"
2107source = "registry+https://github.com/rust-lang/crates.io-index"
2108checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2109
2110[[package]]
2111name = "semver"
2112version = "1.0.28"
2113source = "registry+https://github.com/rust-lang/crates.io-index"
2114checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2115
2116[[package]]
2117name = "serde"
2118version = "1.0.228"
2119source = "registry+https://github.com/rust-lang/crates.io-index"
2120checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2121dependencies = [
2122 "serde_core",
2123 "serde_derive",
2124]
2125
2126[[package]]
2127name = "serde_core"
2128version = "1.0.228"
2129source = "registry+https://github.com/rust-lang/crates.io-index"
2130checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2131dependencies = [
2132 "serde_derive",
2133]
2134
2135[[package]]
2136name = "serde_derive"
2137version = "1.0.228"
2138source = "registry+https://github.com/rust-lang/crates.io-index"
2139checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2140dependencies = [
2141 "proc-macro2",
2142 "quote",
2143 "syn",
2144]
2145
2146[[package]]
2147name = "serde_json"
2148version = "1.0.149"
2149source = "registry+https://github.com/rust-lang/crates.io-index"
2150checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2151dependencies = [
2152 "itoa",
2153 "memchr",
2154 "serde",
2155 "serde_core",
2156 "zmij",
2157]
2158
2159[[package]]
2160name = "serde_path_to_error"
2161version = "0.1.20"
2162source = "registry+https://github.com/rust-lang/crates.io-index"
2163checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2164dependencies = [
2165 "itoa",
2166 "serde",
2167 "serde_core",
2168]
2169
2170[[package]]
2171name = "serde_urlencoded"
2172version = "0.7.1"
2173source = "registry+https://github.com/rust-lang/crates.io-index"
2174checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2175dependencies = [
2176 "form_urlencoded",
2177 "itoa",
2178 "ryu",
2179 "serde",
2180]
2181
2182[[package]]
2183name = "sha1_smol"
2184version = "1.0.1"
2185source = "registry+https://github.com/rust-lang/crates.io-index"
2186checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
2187
2188[[package]]
2189name = "sharded-slab"
2190version = "0.1.7"
2191source = "registry+https://github.com/rust-lang/crates.io-index"
2192checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2193dependencies = [
2194 "lazy_static",
2195]
2196
2197[[package]]
2198name = "shell-words"
2199version = "1.1.1"
2200source = "registry+https://github.com/rust-lang/crates.io-index"
2201checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
2202
2203[[package]]
2204name = "shlex"
2205version = "1.3.0"
2206source = "registry+https://github.com/rust-lang/crates.io-index"
2207checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2208
2209[[package]]
2210name = "signal-hook-registry"
2211version = "1.4.8"
2212source = "registry+https://github.com/rust-lang/crates.io-index"
2213checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2214dependencies = [
2215 "errno",
2216 "libc",
2217]
2218
2219[[package]]
2220name = "simd-adler32"
2221version = "0.3.9"
2222source = "registry+https://github.com/rust-lang/crates.io-index"
2223checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
2224
2225[[package]]
2226name = "siphasher"
2227version = "1.0.3"
2228source = "registry+https://github.com/rust-lang/crates.io-index"
2229checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
2230
2231[[package]]
2232name = "slab"
2233version = "0.4.12"
2234source = "registry+https://github.com/rust-lang/crates.io-index"
2235checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2236
2237[[package]]
2238name = "smallvec"
2239version = "1.15.1"
2240source = "registry+https://github.com/rust-lang/crates.io-index"
2241checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2242
2243[[package]]
2244name = "socket2"
2245version = "0.6.3"
2246source = "registry+https://github.com/rust-lang/crates.io-index"
2247checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
2248dependencies = [
2249 "libc",
2250 "windows-sys 0.61.2",
2251]
2252
2253[[package]]
2254name = "stable_deref_trait"
2255version = "1.2.1"
2256source = "registry+https://github.com/rust-lang/crates.io-index"
2257checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2258
2259[[package]]
2260name = "static_assertions"
2261version = "1.1.0"
2262source = "registry+https://github.com/rust-lang/crates.io-index"
2263checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2264
2265[[package]]
2266name = "string_cache"
2267version = "0.8.9"
2268source = "registry+https://github.com/rust-lang/crates.io-index"
2269checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
2270dependencies = [
2271 "new_debug_unreachable",
2272 "parking_lot",
2273 "phf_shared",
2274 "precomputed-hash",
2275 "serde",
2276]
2277
2278[[package]]
2279name = "string_cache_codegen"
2280version = "0.5.4"
2281source = "registry+https://github.com/rust-lang/crates.io-index"
2282checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
2283dependencies = [
2284 "phf_generator",
2285 "phf_shared",
2286 "proc-macro2",
2287 "quote",
2288]
2289
2290[[package]]
2291name = "syn"
2292version = "2.0.117"
2293source = "registry+https://github.com/rust-lang/crates.io-index"
2294checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2295dependencies = [
2296 "proc-macro2",
2297 "quote",
2298 "unicode-ident",
2299]
2300
2301[[package]]
2302name = "sync_wrapper"
2303version = "1.0.2"
2304source = "registry+https://github.com/rust-lang/crates.io-index"
2305checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2306
2307[[package]]
2308name = "synstructure"
2309version = "0.13.2"
2310source = "registry+https://github.com/rust-lang/crates.io-index"
2311checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2312dependencies = [
2313 "proc-macro2",
2314 "quote",
2315 "syn",
2316]
2317
2318[[package]]
2319name = "syntect"
2320version = "5.3.0"
2321source = "registry+https://github.com/rust-lang/crates.io-index"
2322checksum = "656b45c05d95a5704399aeef6bd0ddec7b2b3531b7c9e900abbf7c4d2190c925"
2323dependencies = [
2324 "bincode",
2325 "fancy-regex",
2326 "flate2",
2327 "fnv",
2328 "once_cell",
2329 "plist",
2330 "regex-syntax",
2331 "serde",
2332 "serde_derive",
2333 "serde_json",
2334 "thiserror 2.0.18",
2335 "walkdir",
2336 "yaml-rust",
2337]
2338
2339[[package]]
2340name = "tempfile"
2341version = "3.27.0"
2342source = "registry+https://github.com/rust-lang/crates.io-index"
2343checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2344dependencies = [
2345 "fastrand",
2346 "getrandom",
2347 "once_cell",
2348 "rustix 1.1.4",
2349 "windows-sys 0.61.2",
2350]
2351
2352[[package]]
2353name = "tendril"
2354version = "0.4.3"
2355source = "registry+https://github.com/rust-lang/crates.io-index"
2356checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
2357dependencies = [
2358 "futf",
2359 "mac",
2360 "utf-8",
2361]
2362
2363[[package]]
2364name = "thiserror"
2365version = "1.0.69"
2366source = "registry+https://github.com/rust-lang/crates.io-index"
2367checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2368dependencies = [
2369 "thiserror-impl 1.0.69",
2370]
2371
2372[[package]]
2373name = "thiserror"
2374version = "2.0.18"
2375source = "registry+https://github.com/rust-lang/crates.io-index"
2376checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2377dependencies = [
2378 "thiserror-impl 2.0.18",
2379]
2380
2381[[package]]
2382name = "thiserror-impl"
2383version = "1.0.69"
2384source = "registry+https://github.com/rust-lang/crates.io-index"
2385checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2386dependencies = [
2387 "proc-macro2",
2388 "quote",
2389 "syn",
2390]
2391
2392[[package]]
2393name = "thiserror-impl"
2394version = "2.0.18"
2395source = "registry+https://github.com/rust-lang/crates.io-index"
2396checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2397dependencies = [
2398 "proc-macro2",
2399 "quote",
2400 "syn",
2401]
2402
2403[[package]]
2404name = "thread_local"
2405version = "1.1.9"
2406source = "registry+https://github.com/rust-lang/crates.io-index"
2407checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2408dependencies = [
2409 "cfg-if",
2410]
2411
2412[[package]]
2413name = "time"
2414version = "0.3.47"
2415source = "registry+https://github.com/rust-lang/crates.io-index"
2416checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2417dependencies = [
2418 "deranged",
2419 "itoa",
2420 "num-conv",
2421 "powerfmt",
2422 "serde_core",
2423 "time-core",
2424 "time-macros",
2425]
2426
2427[[package]]
2428name = "time-core"
2429version = "0.1.8"
2430source = "registry+https://github.com/rust-lang/crates.io-index"
2431checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2432
2433[[package]]
2434name = "time-macros"
2435version = "0.2.27"
2436source = "registry+https://github.com/rust-lang/crates.io-index"
2437checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2438dependencies = [
2439 "num-conv",
2440 "time-core",
2441]
2442
2443[[package]]
2444name = "tinystr"
2445version = "0.8.3"
2446source = "registry+https://github.com/rust-lang/crates.io-index"
2447checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2448dependencies = [
2449 "displaydoc",
2450 "zerovec",
2451]
2452
2453[[package]]
2454name = "tinyvec"
2455version = "1.11.0"
2456source = "registry+https://github.com/rust-lang/crates.io-index"
2457checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2458dependencies = [
2459 "tinyvec_macros",
2460]
2461
2462[[package]]
2463name = "tinyvec_macros"
2464version = "0.1.1"
2465source = "registry+https://github.com/rust-lang/crates.io-index"
2466checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2467
2468[[package]]
2469name = "tokio"
2470version = "1.52.3"
2471source = "registry+https://github.com/rust-lang/crates.io-index"
2472checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
2473dependencies = [
2474 "bytes",
2475 "libc",
2476 "mio",
2477 "parking_lot",
2478 "pin-project-lite",
2479 "signal-hook-registry",
2480 "socket2",
2481 "tokio-macros",
2482 "windows-sys 0.61.2",
2483]
2484
2485[[package]]
2486name = "tokio-macros"
2487version = "2.7.0"
2488source = "registry+https://github.com/rust-lang/crates.io-index"
2489checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2490dependencies = [
2491 "proc-macro2",
2492 "quote",
2493 "syn",
2494]
2495
2496[[package]]
2497name = "tokio-util"
2498version = "0.7.18"
2499source = "registry+https://github.com/rust-lang/crates.io-index"
2500checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2501dependencies = [
2502 "bytes",
2503 "futures-core",
2504 "futures-sink",
2505 "pin-project-lite",
2506 "tokio",
2507]
2508
2509[[package]]
2510name = "tower"
2511version = "0.5.3"
2512source = "registry+https://github.com/rust-lang/crates.io-index"
2513checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2514dependencies = [
2515 "futures-core",
2516 "futures-util",
2517 "pin-project-lite",
2518 "sync_wrapper",
2519 "tokio",
2520 "tower-layer",
2521 "tower-service",
2522 "tracing",
2523]
2524
2525[[package]]
2526name = "tower-http"
2527version = "0.6.10"
2528source = "registry+https://github.com/rust-lang/crates.io-index"
2529checksum = "68d6fdd9f81c2819c9a8b0e0cd91660e7746a8e6ea2ba7c6b2b057985f6bcb51"
2530dependencies = [
2531 "bitflags",
2532 "bytes",
2533 "futures-core",
2534 "futures-util",
2535 "http",
2536 "http-body",
2537 "http-body-util",
2538 "http-range-header",
2539 "httpdate",
2540 "mime",
2541 "mime_guess",
2542 "percent-encoding",
2543 "pin-project-lite",
2544 "tokio",
2545 "tokio-util",
2546 "tower-layer",
2547 "tower-service",
2548]
2549
2550[[package]]
2551name = "tower-layer"
2552version = "0.3.3"
2553source = "registry+https://github.com/rust-lang/crates.io-index"
2554checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2555
2556[[package]]
2557name = "tower-service"
2558version = "0.3.3"
2559source = "registry+https://github.com/rust-lang/crates.io-index"
2560checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2561
2562[[package]]
2563name = "tracing"
2564version = "0.1.44"
2565source = "registry+https://github.com/rust-lang/crates.io-index"
2566checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2567dependencies = [
2568 "log",
2569 "pin-project-lite",
2570 "tracing-attributes",
2571 "tracing-core",
2572]
2573
2574[[package]]
2575name = "tracing-attributes"
2576version = "0.1.31"
2577source = "registry+https://github.com/rust-lang/crates.io-index"
2578checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2579dependencies = [
2580 "proc-macro2",
2581 "quote",
2582 "syn",
2583]
2584
2585[[package]]
2586name = "tracing-core"
2587version = "0.1.36"
2588source = "registry+https://github.com/rust-lang/crates.io-index"
2589checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2590dependencies = [
2591 "once_cell",
2592 "valuable",
2593]
2594
2595[[package]]
2596name = "tracing-log"
2597version = "0.2.0"
2598source = "registry+https://github.com/rust-lang/crates.io-index"
2599checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2600dependencies = [
2601 "log",
2602 "once_cell",
2603 "tracing-core",
2604]
2605
2606[[package]]
2607name = "tracing-subscriber"
2608version = "0.3.23"
2609source = "registry+https://github.com/rust-lang/crates.io-index"
2610checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2611dependencies = [
2612 "matchers",
2613 "nu-ansi-term",
2614 "once_cell",
2615 "regex-automata",
2616 "sharded-slab",
2617 "smallvec",
2618 "thread_local",
2619 "tracing",
2620 "tracing-core",
2621 "tracing-log",
2622]
2623
2624[[package]]
2625name = "uluru"
2626version = "3.1.0"
2627source = "registry+https://github.com/rust-lang/crates.io-index"
2628checksum = "7c8a2469e56e6e5095c82ccd3afb98dad95f7af7929aab6d8ba8d6e0f73657da"
2629dependencies = [
2630 "arrayvec",
2631]
2632
2633[[package]]
2634name = "unicase"
2635version = "2.9.0"
2636source = "registry+https://github.com/rust-lang/crates.io-index"
2637checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
2638
2639[[package]]
2640name = "unicode-bom"
2641version = "2.0.3"
2642source = "registry+https://github.com/rust-lang/crates.io-index"
2643checksum = "7eec5d1121208364f6793f7d2e222bf75a915c19557537745b195b253dd64217"
2644
2645[[package]]
2646name = "unicode-ident"
2647version = "1.0.24"
2648source = "registry+https://github.com/rust-lang/crates.io-index"
2649checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2650
2651[[package]]
2652name = "unicode-normalization"
2653version = "0.1.25"
2654source = "registry+https://github.com/rust-lang/crates.io-index"
2655checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
2656dependencies = [
2657 "tinyvec",
2658]
2659
2660[[package]]
2661name = "unicode-xid"
2662version = "0.2.6"
2663source = "registry+https://github.com/rust-lang/crates.io-index"
2664checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2665
2666[[package]]
2667name = "url"
2668version = "2.5.8"
2669source = "registry+https://github.com/rust-lang/crates.io-index"
2670checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2671dependencies = [
2672 "form_urlencoded",
2673 "idna",
2674 "percent-encoding",
2675 "serde",
2676]
2677
2678[[package]]
2679name = "urlencoding"
2680version = "2.1.3"
2681source = "registry+https://github.com/rust-lang/crates.io-index"
2682checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2683
2684[[package]]
2685name = "utf-8"
2686version = "0.7.6"
2687source = "registry+https://github.com/rust-lang/crates.io-index"
2688checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2689
2690[[package]]
2691name = "utf8_iter"
2692version = "1.0.4"
2693source = "registry+https://github.com/rust-lang/crates.io-index"
2694checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2695
2696[[package]]
2697name = "valuable"
2698version = "0.1.1"
2699source = "registry+https://github.com/rust-lang/crates.io-index"
2700checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2701
2702[[package]]
2703name = "version_check"
2704version = "0.9.5"
2705source = "registry+https://github.com/rust-lang/crates.io-index"
2706checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2707
2708[[package]]
2709name = "walkdir"
2710version = "2.5.0"
2711source = "registry+https://github.com/rust-lang/crates.io-index"
2712checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2713dependencies = [
2714 "same-file",
2715 "winapi-util",
2716]
2717
2718[[package]]
2719name = "wasi"
2720version = "0.11.1+wasi-snapshot-preview1"
2721source = "registry+https://github.com/rust-lang/crates.io-index"
2722checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2723
2724[[package]]
2725name = "wasip2"
2726version = "1.0.3+wasi-0.2.9"
2727source = "registry+https://github.com/rust-lang/crates.io-index"
2728checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
2729dependencies = [
2730 "wit-bindgen 0.57.1",
2731]
2732
2733[[package]]
2734name = "wasip3"
2735version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2736source = "registry+https://github.com/rust-lang/crates.io-index"
2737checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2738dependencies = [
2739 "wit-bindgen 0.51.0",
2740]
2741
2742[[package]]
2743name = "wasm-bindgen"
2744version = "0.2.121"
2745source = "registry+https://github.com/rust-lang/crates.io-index"
2746checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
2747dependencies = [
2748 "cfg-if",
2749 "once_cell",
2750 "rustversion",
2751 "wasm-bindgen-macro",
2752 "wasm-bindgen-shared",
2753]
2754
2755[[package]]
2756name = "wasm-bindgen-macro"
2757version = "0.2.121"
2758source = "registry+https://github.com/rust-lang/crates.io-index"
2759checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
2760dependencies = [
2761 "quote",
2762 "wasm-bindgen-macro-support",
2763]
2764
2765[[package]]
2766name = "wasm-bindgen-macro-support"
2767version = "0.2.121"
2768source = "registry+https://github.com/rust-lang/crates.io-index"
2769checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
2770dependencies = [
2771 "bumpalo",
2772 "proc-macro2",
2773 "quote",
2774 "syn",
2775 "wasm-bindgen-shared",
2776]
2777
2778[[package]]
2779name = "wasm-bindgen-shared"
2780version = "0.2.121"
2781source = "registry+https://github.com/rust-lang/crates.io-index"
2782checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
2783dependencies = [
2784 "unicode-ident",
2785]
2786
2787[[package]]
2788name = "wasm-encoder"
2789version = "0.244.0"
2790source = "registry+https://github.com/rust-lang/crates.io-index"
2791checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2792dependencies = [
2793 "leb128fmt",
2794 "wasmparser",
2795]
2796
2797[[package]]
2798name = "wasm-metadata"
2799version = "0.244.0"
2800source = "registry+https://github.com/rust-lang/crates.io-index"
2801checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2802dependencies = [
2803 "anyhow",
2804 "indexmap",
2805 "wasm-encoder",
2806 "wasmparser",
2807]
2808
2809[[package]]
2810name = "wasmparser"
2811version = "0.244.0"
2812source = "registry+https://github.com/rust-lang/crates.io-index"
2813checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2814dependencies = [
2815 "bitflags",
2816 "hashbrown 0.15.5",
2817 "indexmap",
2818 "semver",
2819]
2820
2821[[package]]
2822name = "web_atoms"
2823version = "0.1.3"
2824source = "registry+https://github.com/rust-lang/crates.io-index"
2825checksum = "57ffde1dc01240bdf9992e3205668b235e59421fd085e8a317ed98da0178d414"
2826dependencies = [
2827 "phf",
2828 "phf_codegen",
2829 "string_cache",
2830 "string_cache_codegen",
2831]
2832
2833[[package]]
2834name = "winapi-util"
2835version = "0.1.11"
2836source = "registry+https://github.com/rust-lang/crates.io-index"
2837checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2838dependencies = [
2839 "windows-sys 0.61.2",
2840]
2841
2842[[package]]
2843name = "windows-core"
2844version = "0.62.2"
2845source = "registry+https://github.com/rust-lang/crates.io-index"
2846checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2847dependencies = [
2848 "windows-implement",
2849 "windows-interface",
2850 "windows-link",
2851 "windows-result",
2852 "windows-strings",
2853]
2854
2855[[package]]
2856name = "windows-implement"
2857version = "0.60.2"
2858source = "registry+https://github.com/rust-lang/crates.io-index"
2859checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2860dependencies = [
2861 "proc-macro2",
2862 "quote",
2863 "syn",
2864]
2865
2866[[package]]
2867name = "windows-interface"
2868version = "0.59.3"
2869source = "registry+https://github.com/rust-lang/crates.io-index"
2870checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2871dependencies = [
2872 "proc-macro2",
2873 "quote",
2874 "syn",
2875]
2876
2877[[package]]
2878name = "windows-link"
2879version = "0.2.1"
2880source = "registry+https://github.com/rust-lang/crates.io-index"
2881checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2882
2883[[package]]
2884name = "windows-result"
2885version = "0.4.1"
2886source = "registry+https://github.com/rust-lang/crates.io-index"
2887checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2888dependencies = [
2889 "windows-link",
2890]
2891
2892[[package]]
2893name = "windows-strings"
2894version = "0.5.1"
2895source = "registry+https://github.com/rust-lang/crates.io-index"
2896checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2897dependencies = [
2898 "windows-link",
2899]
2900
2901[[package]]
2902name = "windows-sys"
2903version = "0.52.0"
2904source = "registry+https://github.com/rust-lang/crates.io-index"
2905checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2906dependencies = [
2907 "windows-targets",
2908]
2909
2910[[package]]
2911name = "windows-sys"
2912version = "0.59.0"
2913source = "registry+https://github.com/rust-lang/crates.io-index"
2914checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2915dependencies = [
2916 "windows-targets",
2917]
2918
2919[[package]]
2920name = "windows-sys"
2921version = "0.61.2"
2922source = "registry+https://github.com/rust-lang/crates.io-index"
2923checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2924dependencies = [
2925 "windows-link",
2926]
2927
2928[[package]]
2929name = "windows-targets"
2930version = "0.52.6"
2931source = "registry+https://github.com/rust-lang/crates.io-index"
2932checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2933dependencies = [
2934 "windows_aarch64_gnullvm",
2935 "windows_aarch64_msvc",
2936 "windows_i686_gnu",
2937 "windows_i686_gnullvm",
2938 "windows_i686_msvc",
2939 "windows_x86_64_gnu",
2940 "windows_x86_64_gnullvm",
2941 "windows_x86_64_msvc",
2942]
2943
2944[[package]]
2945name = "windows_aarch64_gnullvm"
2946version = "0.52.6"
2947source = "registry+https://github.com/rust-lang/crates.io-index"
2948checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2949
2950[[package]]
2951name = "windows_aarch64_msvc"
2952version = "0.52.6"
2953source = "registry+https://github.com/rust-lang/crates.io-index"
2954checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2955
2956[[package]]
2957name = "windows_i686_gnu"
2958version = "0.52.6"
2959source = "registry+https://github.com/rust-lang/crates.io-index"
2960checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2961
2962[[package]]
2963name = "windows_i686_gnullvm"
2964version = "0.52.6"
2965source = "registry+https://github.com/rust-lang/crates.io-index"
2966checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2967
2968[[package]]
2969name = "windows_i686_msvc"
2970version = "0.52.6"
2971source = "registry+https://github.com/rust-lang/crates.io-index"
2972checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2973
2974[[package]]
2975name = "windows_x86_64_gnu"
2976version = "0.52.6"
2977source = "registry+https://github.com/rust-lang/crates.io-index"
2978checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2979
2980[[package]]
2981name = "windows_x86_64_gnullvm"
2982version = "0.52.6"
2983source = "registry+https://github.com/rust-lang/crates.io-index"
2984checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2985
2986[[package]]
2987name = "windows_x86_64_msvc"
2988version = "0.52.6"
2989source = "registry+https://github.com/rust-lang/crates.io-index"
2990checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2991
2992[[package]]
2993name = "winnow"
2994version = "0.6.26"
2995source = "registry+https://github.com/rust-lang/crates.io-index"
2996checksum = "1e90edd2ac1aa278a5c4599b1d89cf03074b610800f866d4026dc199d7929a28"
2997dependencies = [
2998 "memchr",
2999]
3000
3001[[package]]
3002name = "wit-bindgen"
3003version = "0.51.0"
3004source = "registry+https://github.com/rust-lang/crates.io-index"
3005checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3006dependencies = [
3007 "wit-bindgen-rust-macro",
3008]
3009
3010[[package]]
3011name = "wit-bindgen"
3012version = "0.57.1"
3013source = "registry+https://github.com/rust-lang/crates.io-index"
3014checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3015
3016[[package]]
3017name = "wit-bindgen-core"
3018version = "0.51.0"
3019source = "registry+https://github.com/rust-lang/crates.io-index"
3020checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3021dependencies = [
3022 "anyhow",
3023 "heck",
3024 "wit-parser",
3025]
3026
3027[[package]]
3028name = "wit-bindgen-rust"
3029version = "0.51.0"
3030source = "registry+https://github.com/rust-lang/crates.io-index"
3031checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3032dependencies = [
3033 "anyhow",
3034 "heck",
3035 "indexmap",
3036 "prettyplease",
3037 "syn",
3038 "wasm-metadata",
3039 "wit-bindgen-core",
3040 "wit-component",
3041]
3042
3043[[package]]
3044name = "wit-bindgen-rust-macro"
3045version = "0.51.0"
3046source = "registry+https://github.com/rust-lang/crates.io-index"
3047checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3048dependencies = [
3049 "anyhow",
3050 "prettyplease",
3051 "proc-macro2",
3052 "quote",
3053 "syn",
3054 "wit-bindgen-core",
3055 "wit-bindgen-rust",
3056]
3057
3058[[package]]
3059name = "wit-component"
3060version = "0.244.0"
3061source = "registry+https://github.com/rust-lang/crates.io-index"
3062checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3063dependencies = [
3064 "anyhow",
3065 "bitflags",
3066 "indexmap",
3067 "log",
3068 "serde",
3069 "serde_derive",
3070 "serde_json",
3071 "wasm-encoder",
3072 "wasm-metadata",
3073 "wasmparser",
3074 "wit-parser",
3075]
3076
3077[[package]]
3078name = "wit-parser"
3079version = "0.244.0"
3080source = "registry+https://github.com/rust-lang/crates.io-index"
3081checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3082dependencies = [
3083 "anyhow",
3084 "id-arena",
3085 "indexmap",
3086 "log",
3087 "semver",
3088 "serde",
3089 "serde_derive",
3090 "serde_json",
3091 "unicode-xid",
3092 "wasmparser",
3093]
3094
3095[[package]]
3096name = "writeable"
3097version = "0.6.3"
3098source = "registry+https://github.com/rust-lang/crates.io-index"
3099checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3100
3101[[package]]
3102name = "yaml-rust"
3103version = "0.4.5"
3104source = "registry+https://github.com/rust-lang/crates.io-index"
3105checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
3106dependencies = [
3107 "linked-hash-map",
3108]
3109
3110[[package]]
3111name = "yoke"
3112version = "0.8.2"
3113source = "registry+https://github.com/rust-lang/crates.io-index"
3114checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
3115dependencies = [
3116 "stable_deref_trait",
3117 "yoke-derive",
3118 "zerofrom",
3119]
3120
3121[[package]]
3122name = "yoke-derive"
3123version = "0.8.2"
3124source = "registry+https://github.com/rust-lang/crates.io-index"
3125checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3126dependencies = [
3127 "proc-macro2",
3128 "quote",
3129 "syn",
3130 "synstructure",
3131]
3132
3133[[package]]
3134name = "zerocopy"
3135version = "0.8.48"
3136source = "registry+https://github.com/rust-lang/crates.io-index"
3137checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
3138dependencies = [
3139 "zerocopy-derive",
3140]
3141
3142[[package]]
3143name = "zerocopy-derive"
3144version = "0.8.48"
3145source = "registry+https://github.com/rust-lang/crates.io-index"
3146checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
3147dependencies = [
3148 "proc-macro2",
3149 "quote",
3150 "syn",
3151]
3152
3153[[package]]
3154name = "zerofrom"
3155version = "0.1.7"
3156source = "registry+https://github.com/rust-lang/crates.io-index"
3157checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
3158dependencies = [
3159 "zerofrom-derive",
3160]
3161
3162[[package]]
3163name = "zerofrom-derive"
3164version = "0.1.7"
3165source = "registry+https://github.com/rust-lang/crates.io-index"
3166checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3167dependencies = [
3168 "proc-macro2",
3169 "quote",
3170 "syn",
3171 "synstructure",
3172]
3173
3174[[package]]
3175name = "zerotrie"
3176version = "0.2.4"
3177source = "registry+https://github.com/rust-lang/crates.io-index"
3178checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3179dependencies = [
3180 "displaydoc",
3181 "yoke",
3182 "zerofrom",
3183]
3184
3185[[package]]
3186name = "zerovec"
3187version = "0.11.6"
3188source = "registry+https://github.com/rust-lang/crates.io-index"
3189checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3190dependencies = [
3191 "yoke",
3192 "zerofrom",
3193 "zerovec-derive",
3194]
3195
3196[[package]]
3197name = "zerovec-derive"
3198version = "0.11.3"
3199source = "registry+https://github.com/rust-lang/crates.io-index"
3200checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3201dependencies = [
3202 "proc-macro2",
3203 "quote",
3204 "syn",
3205]
3206
3207[[package]]
3208name = "zmij"
3209version = "1.0.21"
3210source = "registry+https://github.com/rust-lang/crates.io-index"
3211checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"