code complexity & repetition analysis tool
at main 926 lines 24 kB view raw
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 = "anstream" 22version = "0.6.21" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" 25dependencies = [ 26 "anstyle", 27 "anstyle-parse", 28 "anstyle-query", 29 "anstyle-wincon", 30 "colorchoice", 31 "is_terminal_polyfill", 32 "utf8parse", 33] 34 35[[package]] 36name = "anstyle" 37version = "1.0.13" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" 40 41[[package]] 42name = "anstyle-parse" 43version = "0.2.7" 44source = "registry+https://github.com/rust-lang/crates.io-index" 45checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 46dependencies = [ 47 "utf8parse", 48] 49 50[[package]] 51name = "anstyle-query" 52version = "1.1.4" 53source = "registry+https://github.com/rust-lang/crates.io-index" 54checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" 55dependencies = [ 56 "windows-sys", 57] 58 59[[package]] 60name = "anstyle-wincon" 61version = "3.0.10" 62source = "registry+https://github.com/rust-lang/crates.io-index" 63checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" 64dependencies = [ 65 "anstyle", 66 "once_cell_polyfill", 67 "windows-sys", 68] 69 70[[package]] 71name = "anyhow" 72version = "1.0.100" 73source = "registry+https://github.com/rust-lang/crates.io-index" 74checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" 75 76[[package]] 77name = "base64" 78version = "0.22.1" 79source = "registry+https://github.com/rust-lang/crates.io-index" 80checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 81 82[[package]] 83name = "bincode" 84version = "1.3.3" 85source = "registry+https://github.com/rust-lang/crates.io-index" 86checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 87dependencies = [ 88 "serde", 89] 90 91[[package]] 92name = "bitflags" 93version = "2.10.0" 94source = "registry+https://github.com/rust-lang/crates.io-index" 95checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 96 97[[package]] 98name = "bstr" 99version = "1.12.1" 100source = "registry+https://github.com/rust-lang/crates.io-index" 101checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab" 102dependencies = [ 103 "memchr", 104 "serde", 105] 106 107[[package]] 108name = "cc" 109version = "1.2.45" 110source = "registry+https://github.com/rust-lang/crates.io-index" 111checksum = "35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe" 112dependencies = [ 113 "find-msvc-tools", 114 "shlex", 115] 116 117[[package]] 118name = "cfg-if" 119version = "1.0.4" 120source = "registry+https://github.com/rust-lang/crates.io-index" 121checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 122 123[[package]] 124name = "clap" 125version = "4.5.51" 126source = "registry+https://github.com/rust-lang/crates.io-index" 127checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5" 128dependencies = [ 129 "clap_builder", 130 "clap_derive", 131] 132 133[[package]] 134name = "clap_builder" 135version = "4.5.51" 136source = "registry+https://github.com/rust-lang/crates.io-index" 137checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a" 138dependencies = [ 139 "anstream", 140 "anstyle", 141 "clap_lex", 142 "strsim", 143] 144 145[[package]] 146name = "clap_derive" 147version = "4.5.49" 148source = "registry+https://github.com/rust-lang/crates.io-index" 149checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" 150dependencies = [ 151 "heck", 152 "proc-macro2", 153 "quote", 154 "syn", 155] 156 157[[package]] 158name = "clap_lex" 159version = "0.7.6" 160source = "registry+https://github.com/rust-lang/crates.io-index" 161checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d" 162 163[[package]] 164name = "colorchoice" 165version = "1.0.4" 166source = "registry+https://github.com/rust-lang/crates.io-index" 167checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 168 169[[package]] 170name = "crc32fast" 171version = "1.5.0" 172source = "registry+https://github.com/rust-lang/crates.io-index" 173checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 174dependencies = [ 175 "cfg-if", 176] 177 178[[package]] 179name = "crossbeam-deque" 180version = "0.8.6" 181source = "registry+https://github.com/rust-lang/crates.io-index" 182checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" 183dependencies = [ 184 "crossbeam-epoch", 185 "crossbeam-utils", 186] 187 188[[package]] 189name = "crossbeam-epoch" 190version = "0.9.18" 191source = "registry+https://github.com/rust-lang/crates.io-index" 192checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 193dependencies = [ 194 "crossbeam-utils", 195] 196 197[[package]] 198name = "crossbeam-utils" 199version = "0.8.21" 200source = "registry+https://github.com/rust-lang/crates.io-index" 201checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 202 203[[package]] 204name = "deranged" 205version = "0.5.5" 206source = "registry+https://github.com/rust-lang/crates.io-index" 207checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" 208dependencies = [ 209 "powerfmt", 210] 211 212[[package]] 213name = "equivalent" 214version = "1.0.2" 215source = "registry+https://github.com/rust-lang/crates.io-index" 216checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 217 218[[package]] 219name = "errno" 220version = "0.3.14" 221source = "registry+https://github.com/rust-lang/crates.io-index" 222checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 223dependencies = [ 224 "libc", 225 "windows-sys", 226] 227 228[[package]] 229name = "fastrand" 230version = "2.3.0" 231source = "registry+https://github.com/rust-lang/crates.io-index" 232checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 233 234[[package]] 235name = "find-msvc-tools" 236version = "0.1.4" 237source = "registry+https://github.com/rust-lang/crates.io-index" 238checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127" 239 240[[package]] 241name = "flate2" 242version = "1.1.5" 243source = "registry+https://github.com/rust-lang/crates.io-index" 244checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" 245dependencies = [ 246 "crc32fast", 247 "miniz_oxide", 248] 249 250[[package]] 251name = "fnv" 252version = "1.0.7" 253source = "registry+https://github.com/rust-lang/crates.io-index" 254checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 255 256[[package]] 257name = "getrandom" 258version = "0.3.4" 259source = "registry+https://github.com/rust-lang/crates.io-index" 260checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 261dependencies = [ 262 "cfg-if", 263 "libc", 264 "r-efi", 265 "wasip2", 266] 267 268[[package]] 269name = "globset" 270version = "0.4.18" 271source = "registry+https://github.com/rust-lang/crates.io-index" 272checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3" 273dependencies = [ 274 "aho-corasick", 275 "bstr", 276 "log", 277 "regex-automata", 278 "regex-syntax", 279] 280 281[[package]] 282name = "hashbrown" 283version = "0.16.0" 284source = "registry+https://github.com/rust-lang/crates.io-index" 285checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" 286 287[[package]] 288name = "heck" 289version = "0.5.0" 290source = "registry+https://github.com/rust-lang/crates.io-index" 291checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 292 293[[package]] 294name = "ignore" 295version = "0.4.25" 296source = "registry+https://github.com/rust-lang/crates.io-index" 297checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a" 298dependencies = [ 299 "crossbeam-deque", 300 "globset", 301 "log", 302 "memchr", 303 "regex-automata", 304 "same-file", 305 "walkdir", 306 "winapi-util", 307] 308 309[[package]] 310name = "indexmap" 311version = "2.12.0" 312source = "registry+https://github.com/rust-lang/crates.io-index" 313checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" 314dependencies = [ 315 "equivalent", 316 "hashbrown", 317] 318 319[[package]] 320name = "is_terminal_polyfill" 321version = "1.70.2" 322source = "registry+https://github.com/rust-lang/crates.io-index" 323checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" 324 325[[package]] 326name = "itoa" 327version = "1.0.15" 328source = "registry+https://github.com/rust-lang/crates.io-index" 329checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 330 331[[package]] 332name = "lcov" 333version = "0.8.1" 334source = "registry+https://github.com/rust-lang/crates.io-index" 335checksum = "1ccfa6d5e585a884db65b37f38184e4364eaf74d884ac35d0a90fe9baf80b723" 336dependencies = [ 337 "thiserror 1.0.69", 338] 339 340[[package]] 341name = "libc" 342version = "0.2.177" 343source = "registry+https://github.com/rust-lang/crates.io-index" 344checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" 345 346[[package]] 347name = "linked-hash-map" 348version = "0.5.6" 349source = "registry+https://github.com/rust-lang/crates.io-index" 350checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 351 352[[package]] 353name = "linux-raw-sys" 354version = "0.11.0" 355source = "registry+https://github.com/rust-lang/crates.io-index" 356checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 357 358[[package]] 359name = "log" 360version = "0.4.28" 361source = "registry+https://github.com/rust-lang/crates.io-index" 362checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" 363 364[[package]] 365name = "mccabre" 366version = "0.1.0" 367dependencies = [ 368 "anyhow", 369 "clap", 370 "mccabre-core", 371 "owo-colors", 372 "serde_json", 373 "syntect", 374] 375 376[[package]] 377name = "mccabre-core" 378version = "0.1.0" 379dependencies = [ 380 "anyhow", 381 "ignore", 382 "lcov", 383 "owo-colors", 384 "serde", 385 "serde_json", 386 "tempfile", 387 "thiserror 2.0.17", 388 "toml", 389 "walkdir", 390] 391 392[[package]] 393name = "memchr" 394version = "2.7.6" 395source = "registry+https://github.com/rust-lang/crates.io-index" 396checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 397 398[[package]] 399name = "miniz_oxide" 400version = "0.8.9" 401source = "registry+https://github.com/rust-lang/crates.io-index" 402checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 403dependencies = [ 404 "adler2", 405 "simd-adler32", 406] 407 408[[package]] 409name = "num-conv" 410version = "0.1.0" 411source = "registry+https://github.com/rust-lang/crates.io-index" 412checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 413 414[[package]] 415name = "once_cell" 416version = "1.21.3" 417source = "registry+https://github.com/rust-lang/crates.io-index" 418checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 419 420[[package]] 421name = "once_cell_polyfill" 422version = "1.70.2" 423source = "registry+https://github.com/rust-lang/crates.io-index" 424checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" 425 426[[package]] 427name = "onig" 428version = "6.5.1" 429source = "registry+https://github.com/rust-lang/crates.io-index" 430checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0" 431dependencies = [ 432 "bitflags", 433 "libc", 434 "once_cell", 435 "onig_sys", 436] 437 438[[package]] 439name = "onig_sys" 440version = "69.9.1" 441source = "registry+https://github.com/rust-lang/crates.io-index" 442checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc" 443dependencies = [ 444 "cc", 445 "pkg-config", 446] 447 448[[package]] 449name = "owo-colors" 450version = "4.2.3" 451source = "registry+https://github.com/rust-lang/crates.io-index" 452checksum = "9c6901729fa79e91a0913333229e9ca5dc725089d1c363b2f4b4760709dc4a52" 453 454[[package]] 455name = "pkg-config" 456version = "0.3.32" 457source = "registry+https://github.com/rust-lang/crates.io-index" 458checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 459 460[[package]] 461name = "plist" 462version = "1.8.0" 463source = "registry+https://github.com/rust-lang/crates.io-index" 464checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07" 465dependencies = [ 466 "base64", 467 "indexmap", 468 "quick-xml", 469 "serde", 470 "time", 471] 472 473[[package]] 474name = "powerfmt" 475version = "0.2.0" 476source = "registry+https://github.com/rust-lang/crates.io-index" 477checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 478 479[[package]] 480name = "proc-macro2" 481version = "1.0.103" 482source = "registry+https://github.com/rust-lang/crates.io-index" 483checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" 484dependencies = [ 485 "unicode-ident", 486] 487 488[[package]] 489name = "quick-xml" 490version = "0.38.4" 491source = "registry+https://github.com/rust-lang/crates.io-index" 492checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" 493dependencies = [ 494 "memchr", 495] 496 497[[package]] 498name = "quote" 499version = "1.0.42" 500source = "registry+https://github.com/rust-lang/crates.io-index" 501checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" 502dependencies = [ 503 "proc-macro2", 504] 505 506[[package]] 507name = "r-efi" 508version = "5.3.0" 509source = "registry+https://github.com/rust-lang/crates.io-index" 510checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 511 512[[package]] 513name = "regex-automata" 514version = "0.4.13" 515source = "registry+https://github.com/rust-lang/crates.io-index" 516checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" 517dependencies = [ 518 "aho-corasick", 519 "memchr", 520 "regex-syntax", 521] 522 523[[package]] 524name = "regex-syntax" 525version = "0.8.8" 526source = "registry+https://github.com/rust-lang/crates.io-index" 527checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" 528 529[[package]] 530name = "rustix" 531version = "1.1.2" 532source = "registry+https://github.com/rust-lang/crates.io-index" 533checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" 534dependencies = [ 535 "bitflags", 536 "errno", 537 "libc", 538 "linux-raw-sys", 539 "windows-sys", 540] 541 542[[package]] 543name = "ryu" 544version = "1.0.20" 545source = "registry+https://github.com/rust-lang/crates.io-index" 546checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 547 548[[package]] 549name = "same-file" 550version = "1.0.6" 551source = "registry+https://github.com/rust-lang/crates.io-index" 552checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 553dependencies = [ 554 "winapi-util", 555] 556 557[[package]] 558name = "serde" 559version = "1.0.228" 560source = "registry+https://github.com/rust-lang/crates.io-index" 561checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 562dependencies = [ 563 "serde_core", 564 "serde_derive", 565] 566 567[[package]] 568name = "serde_core" 569version = "1.0.228" 570source = "registry+https://github.com/rust-lang/crates.io-index" 571checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 572dependencies = [ 573 "serde_derive", 574] 575 576[[package]] 577name = "serde_derive" 578version = "1.0.228" 579source = "registry+https://github.com/rust-lang/crates.io-index" 580checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 581dependencies = [ 582 "proc-macro2", 583 "quote", 584 "syn", 585] 586 587[[package]] 588name = "serde_json" 589version = "1.0.145" 590source = "registry+https://github.com/rust-lang/crates.io-index" 591checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" 592dependencies = [ 593 "itoa", 594 "memchr", 595 "ryu", 596 "serde", 597 "serde_core", 598] 599 600[[package]] 601name = "serde_spanned" 602version = "0.6.9" 603source = "registry+https://github.com/rust-lang/crates.io-index" 604checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" 605dependencies = [ 606 "serde", 607] 608 609[[package]] 610name = "shlex" 611version = "1.3.0" 612source = "registry+https://github.com/rust-lang/crates.io-index" 613checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 614 615[[package]] 616name = "simd-adler32" 617version = "0.3.7" 618source = "registry+https://github.com/rust-lang/crates.io-index" 619checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 620 621[[package]] 622name = "strsim" 623version = "0.11.1" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 626 627[[package]] 628name = "syn" 629version = "2.0.110" 630source = "registry+https://github.com/rust-lang/crates.io-index" 631checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea" 632dependencies = [ 633 "proc-macro2", 634 "quote", 635 "unicode-ident", 636] 637 638[[package]] 639name = "syntect" 640version = "5.3.0" 641source = "registry+https://github.com/rust-lang/crates.io-index" 642checksum = "656b45c05d95a5704399aeef6bd0ddec7b2b3531b7c9e900abbf7c4d2190c925" 643dependencies = [ 644 "bincode", 645 "flate2", 646 "fnv", 647 "once_cell", 648 "onig", 649 "plist", 650 "regex-syntax", 651 "serde", 652 "serde_derive", 653 "serde_json", 654 "thiserror 2.0.17", 655 "walkdir", 656 "yaml-rust", 657] 658 659[[package]] 660name = "tempfile" 661version = "3.23.0" 662source = "registry+https://github.com/rust-lang/crates.io-index" 663checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" 664dependencies = [ 665 "fastrand", 666 "getrandom", 667 "once_cell", 668 "rustix", 669 "windows-sys", 670] 671 672[[package]] 673name = "thiserror" 674version = "1.0.69" 675source = "registry+https://github.com/rust-lang/crates.io-index" 676checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 677dependencies = [ 678 "thiserror-impl 1.0.69", 679] 680 681[[package]] 682name = "thiserror" 683version = "2.0.17" 684source = "registry+https://github.com/rust-lang/crates.io-index" 685checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 686dependencies = [ 687 "thiserror-impl 2.0.17", 688] 689 690[[package]] 691name = "thiserror-impl" 692version = "1.0.69" 693source = "registry+https://github.com/rust-lang/crates.io-index" 694checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 695dependencies = [ 696 "proc-macro2", 697 "quote", 698 "syn", 699] 700 701[[package]] 702name = "thiserror-impl" 703version = "2.0.17" 704source = "registry+https://github.com/rust-lang/crates.io-index" 705checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 706dependencies = [ 707 "proc-macro2", 708 "quote", 709 "syn", 710] 711 712[[package]] 713name = "time" 714version = "0.3.44" 715source = "registry+https://github.com/rust-lang/crates.io-index" 716checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" 717dependencies = [ 718 "deranged", 719 "itoa", 720 "num-conv", 721 "powerfmt", 722 "serde", 723 "time-core", 724 "time-macros", 725] 726 727[[package]] 728name = "time-core" 729version = "0.1.6" 730source = "registry+https://github.com/rust-lang/crates.io-index" 731checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" 732 733[[package]] 734name = "time-macros" 735version = "0.2.24" 736source = "registry+https://github.com/rust-lang/crates.io-index" 737checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" 738dependencies = [ 739 "num-conv", 740 "time-core", 741] 742 743[[package]] 744name = "toml" 745version = "0.8.23" 746source = "registry+https://github.com/rust-lang/crates.io-index" 747checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" 748dependencies = [ 749 "serde", 750 "serde_spanned", 751 "toml_datetime", 752 "toml_edit", 753] 754 755[[package]] 756name = "toml_datetime" 757version = "0.6.11" 758source = "registry+https://github.com/rust-lang/crates.io-index" 759checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" 760dependencies = [ 761 "serde", 762] 763 764[[package]] 765name = "toml_edit" 766version = "0.22.27" 767source = "registry+https://github.com/rust-lang/crates.io-index" 768checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" 769dependencies = [ 770 "indexmap", 771 "serde", 772 "serde_spanned", 773 "toml_datetime", 774 "toml_write", 775 "winnow", 776] 777 778[[package]] 779name = "toml_write" 780version = "0.1.2" 781source = "registry+https://github.com/rust-lang/crates.io-index" 782checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" 783 784[[package]] 785name = "unicode-ident" 786version = "1.0.22" 787source = "registry+https://github.com/rust-lang/crates.io-index" 788checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 789 790[[package]] 791name = "utf8parse" 792version = "0.2.2" 793source = "registry+https://github.com/rust-lang/crates.io-index" 794checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 795 796[[package]] 797name = "walkdir" 798version = "2.5.0" 799source = "registry+https://github.com/rust-lang/crates.io-index" 800checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 801dependencies = [ 802 "same-file", 803 "winapi-util", 804] 805 806[[package]] 807name = "wasip2" 808version = "1.0.1+wasi-0.2.4" 809source = "registry+https://github.com/rust-lang/crates.io-index" 810checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 811dependencies = [ 812 "wit-bindgen", 813] 814 815[[package]] 816name = "winapi-util" 817version = "0.1.11" 818source = "registry+https://github.com/rust-lang/crates.io-index" 819checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" 820dependencies = [ 821 "windows-sys", 822] 823 824[[package]] 825name = "windows-link" 826version = "0.2.1" 827source = "registry+https://github.com/rust-lang/crates.io-index" 828checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 829 830[[package]] 831name = "windows-sys" 832version = "0.60.2" 833source = "registry+https://github.com/rust-lang/crates.io-index" 834checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 835dependencies = [ 836 "windows-targets", 837] 838 839[[package]] 840name = "windows-targets" 841version = "0.53.5" 842source = "registry+https://github.com/rust-lang/crates.io-index" 843checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 844dependencies = [ 845 "windows-link", 846 "windows_aarch64_gnullvm", 847 "windows_aarch64_msvc", 848 "windows_i686_gnu", 849 "windows_i686_gnullvm", 850 "windows_i686_msvc", 851 "windows_x86_64_gnu", 852 "windows_x86_64_gnullvm", 853 "windows_x86_64_msvc", 854] 855 856[[package]] 857name = "windows_aarch64_gnullvm" 858version = "0.53.1" 859source = "registry+https://github.com/rust-lang/crates.io-index" 860checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 861 862[[package]] 863name = "windows_aarch64_msvc" 864version = "0.53.1" 865source = "registry+https://github.com/rust-lang/crates.io-index" 866checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 867 868[[package]] 869name = "windows_i686_gnu" 870version = "0.53.1" 871source = "registry+https://github.com/rust-lang/crates.io-index" 872checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 873 874[[package]] 875name = "windows_i686_gnullvm" 876version = "0.53.1" 877source = "registry+https://github.com/rust-lang/crates.io-index" 878checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 879 880[[package]] 881name = "windows_i686_msvc" 882version = "0.53.1" 883source = "registry+https://github.com/rust-lang/crates.io-index" 884checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 885 886[[package]] 887name = "windows_x86_64_gnu" 888version = "0.53.1" 889source = "registry+https://github.com/rust-lang/crates.io-index" 890checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 891 892[[package]] 893name = "windows_x86_64_gnullvm" 894version = "0.53.1" 895source = "registry+https://github.com/rust-lang/crates.io-index" 896checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 897 898[[package]] 899name = "windows_x86_64_msvc" 900version = "0.53.1" 901source = "registry+https://github.com/rust-lang/crates.io-index" 902checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 903 904[[package]] 905name = "winnow" 906version = "0.7.13" 907source = "registry+https://github.com/rust-lang/crates.io-index" 908checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf" 909dependencies = [ 910 "memchr", 911] 912 913[[package]] 914name = "wit-bindgen" 915version = "0.46.0" 916source = "registry+https://github.com/rust-lang/crates.io-index" 917checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 918 919[[package]] 920name = "yaml-rust" 921version = "0.4.5" 922source = "registry+https://github.com/rust-lang/crates.io-index" 923checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 924dependencies = [ 925 "linked-hash-map", 926]