Lints and suggestions for the Nix programming language
at main 1027 lines 26 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 = "aho-corasick" 7version = "0.7.18" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" 10dependencies = [ 11 "memchr", 12] 13 14[[package]] 15name = "anyhow" 16version = "1.0.100" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" 19 20[[package]] 21name = "ariadne" 22version = "0.1.3" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "7080ae01b2f0c312065d4914cd0f0de045eb8832e9415b355106a6cff3073cb4" 25dependencies = [ 26 "yansi", 27] 28 29[[package]] 30name = "arrayvec" 31version = "0.5.2" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 34 35[[package]] 36name = "atty" 37version = "0.2.14" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 40dependencies = [ 41 "hermit-abi", 42 "libc", 43 "winapi", 44] 45 46[[package]] 47name = "autocfg" 48version = "1.0.1" 49source = "registry+https://github.com/rust-lang/crates.io-index" 50checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" 51 52[[package]] 53name = "bitflags" 54version = "1.3.2" 55source = "registry+https://github.com/rust-lang/crates.io-index" 56checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 57 58[[package]] 59name = "bitflags" 60version = "2.9.4" 61source = "registry+https://github.com/rust-lang/crates.io-index" 62checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" 63 64[[package]] 65name = "block-buffer" 66version = "0.10.4" 67source = "registry+https://github.com/rust-lang/crates.io-index" 68checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 69dependencies = [ 70 "generic-array", 71] 72 73[[package]] 74name = "bstr" 75version = "0.2.17" 76source = "registry+https://github.com/rust-lang/crates.io-index" 77checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 78dependencies = [ 79 "memchr", 80] 81 82[[package]] 83name = "cfg-if" 84version = "1.0.0" 85source = "registry+https://github.com/rust-lang/crates.io-index" 86checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 87 88[[package]] 89name = "clap" 90version = "3.0.0-beta.5" 91source = "registry+https://github.com/rust-lang/crates.io-index" 92checksum = "feff3878564edb93745d58cf63e17b63f24142506e7a20c87a5521ed7bfb1d63" 93dependencies = [ 94 "atty", 95 "bitflags 1.3.2", 96 "clap_derive", 97 "indexmap", 98 "lazy_static", 99 "os_str_bytes", 100 "strsim", 101 "termcolor", 102 "textwrap", 103 "unicase", 104] 105 106[[package]] 107name = "clap_derive" 108version = "3.0.0-beta.5" 109source = "registry+https://github.com/rust-lang/crates.io-index" 110checksum = "8b15c6b4f786ffb6192ffe65a36855bc1fc2444bcd0945ae16748dcd6ed7d0d3" 111dependencies = [ 112 "heck", 113 "proc-macro-error", 114 "proc-macro2", 115 "quote", 116 "syn 1.0.109", 117] 118 119[[package]] 120name = "console" 121version = "0.15.11" 122source = "registry+https://github.com/rust-lang/crates.io-index" 123checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8" 124dependencies = [ 125 "encode_unicode", 126 "libc", 127 "once_cell", 128 "windows-sys", 129] 130 131[[package]] 132name = "countme" 133version = "3.0.1" 134source = "registry+https://github.com/rust-lang/crates.io-index" 135checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636" 136 137[[package]] 138name = "cpufeatures" 139version = "0.2.17" 140source = "registry+https://github.com/rust-lang/crates.io-index" 141checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 142dependencies = [ 143 "libc", 144] 145 146[[package]] 147name = "crossbeam-channel" 148version = "0.5.2" 149source = "registry+https://github.com/rust-lang/crates.io-index" 150checksum = "e54ea8bc3fb1ee042f5aace6e3c6e025d3874866da222930f70ce62aceba0bfa" 151dependencies = [ 152 "cfg-if", 153 "crossbeam-utils", 154] 155 156[[package]] 157name = "crossbeam-deque" 158version = "0.8.1" 159source = "registry+https://github.com/rust-lang/crates.io-index" 160checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e" 161dependencies = [ 162 "cfg-if", 163 "crossbeam-epoch", 164 "crossbeam-utils", 165] 166 167[[package]] 168name = "crossbeam-epoch" 169version = "0.9.7" 170source = "registry+https://github.com/rust-lang/crates.io-index" 171checksum = "c00d6d2ea26e8b151d99093005cb442fb9a37aeaca582a03ec70946f49ab5ed9" 172dependencies = [ 173 "cfg-if", 174 "crossbeam-utils", 175 "lazy_static", 176 "memoffset 0.6.4", 177 "scopeguard", 178] 179 180[[package]] 181name = "crossbeam-utils" 182version = "0.8.5" 183source = "registry+https://github.com/rust-lang/crates.io-index" 184checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db" 185dependencies = [ 186 "cfg-if", 187 "lazy_static", 188] 189 190[[package]] 191name = "crypto-common" 192version = "0.1.6" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 195dependencies = [ 196 "generic-array", 197 "typenum", 198] 199 200[[package]] 201name = "digest" 202version = "0.10.7" 203source = "registry+https://github.com/rust-lang/crates.io-index" 204checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 205dependencies = [ 206 "block-buffer", 207 "crypto-common", 208] 209 210[[package]] 211name = "either" 212version = "1.6.1" 213source = "registry+https://github.com/rust-lang/crates.io-index" 214checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" 215 216[[package]] 217name = "encode_unicode" 218version = "1.0.0" 219source = "registry+https://github.com/rust-lang/crates.io-index" 220checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" 221 222[[package]] 223name = "errno" 224version = "0.3.14" 225source = "registry+https://github.com/rust-lang/crates.io-index" 226checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 227dependencies = [ 228 "libc", 229 "windows-sys", 230] 231 232[[package]] 233name = "fastrand" 234version = "2.3.0" 235source = "registry+https://github.com/rust-lang/crates.io-index" 236checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 237 238[[package]] 239name = "fnv" 240version = "1.0.7" 241source = "registry+https://github.com/rust-lang/crates.io-index" 242checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 243 244[[package]] 245name = "generic-array" 246version = "0.14.7" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 249dependencies = [ 250 "typenum", 251 "version_check", 252] 253 254[[package]] 255name = "getrandom" 256version = "0.3.3" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 259dependencies = [ 260 "cfg-if", 261 "libc", 262 "r-efi", 263 "wasi", 264] 265 266[[package]] 267name = "globset" 268version = "0.4.8" 269source = "registry+https://github.com/rust-lang/crates.io-index" 270checksum = "10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd" 271dependencies = [ 272 "aho-corasick", 273 "bstr", 274 "fnv", 275 "log", 276 "regex", 277] 278 279[[package]] 280name = "hashbrown" 281version = "0.11.2" 282source = "registry+https://github.com/rust-lang/crates.io-index" 283checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" 284 285[[package]] 286name = "hashbrown" 287version = "0.14.5" 288source = "registry+https://github.com/rust-lang/crates.io-index" 289checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 290 291[[package]] 292name = "heck" 293version = "0.3.3" 294source = "registry+https://github.com/rust-lang/crates.io-index" 295checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 296dependencies = [ 297 "unicode-segmentation", 298] 299 300[[package]] 301name = "hermit-abi" 302version = "0.1.19" 303source = "registry+https://github.com/rust-lang/crates.io-index" 304checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 305dependencies = [ 306 "libc", 307] 308 309[[package]] 310name = "hex" 311version = "0.4.3" 312source = "registry+https://github.com/rust-lang/crates.io-index" 313checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 314 315[[package]] 316name = "ignore" 317version = "0.4.18" 318source = "registry+https://github.com/rust-lang/crates.io-index" 319checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d" 320dependencies = [ 321 "crossbeam-utils", 322 "globset", 323 "lazy_static", 324 "log", 325 "memchr", 326 "regex", 327 "same-file", 328 "thread_local", 329 "walkdir", 330 "winapi-util", 331] 332 333[[package]] 334name = "indexmap" 335version = "1.7.0" 336source = "registry+https://github.com/rust-lang/crates.io-index" 337checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5" 338dependencies = [ 339 "autocfg", 340 "hashbrown 0.11.2", 341] 342 343[[package]] 344name = "indoc" 345version = "2.0.6" 346source = "registry+https://github.com/rust-lang/crates.io-index" 347checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd" 348 349[[package]] 350name = "insta" 351version = "1.43.2" 352source = "registry+https://github.com/rust-lang/crates.io-index" 353checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0" 354dependencies = [ 355 "console", 356 "once_cell", 357 "regex", 358 "similar", 359] 360 361[[package]] 362name = "itoa" 363version = "0.4.8" 364source = "registry+https://github.com/rust-lang/crates.io-index" 365checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 366 367[[package]] 368name = "lazy_static" 369version = "1.4.0" 370source = "registry+https://github.com/rust-lang/crates.io-index" 371checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 372 373[[package]] 374name = "lib" 375version = "0.0.0" 376dependencies = [ 377 "lazy_static", 378 "macros", 379 "rnix", 380 "rowan", 381 "serde", 382 "serde_json", 383] 384 385[[package]] 386name = "libc" 387version = "0.2.177" 388source = "registry+https://github.com/rust-lang/crates.io-index" 389checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" 390 391[[package]] 392name = "linux-raw-sys" 393version = "0.11.0" 394source = "registry+https://github.com/rust-lang/crates.io-index" 395checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 396 397[[package]] 398name = "log" 399version = "0.4.14" 400source = "registry+https://github.com/rust-lang/crates.io-index" 401checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" 402dependencies = [ 403 "cfg-if", 404] 405 406[[package]] 407name = "macros" 408version = "0.0.0" 409dependencies = [ 410 "hex", 411 "proc-macro2", 412 "quote", 413 "sha2", 414 "syn 2.0.106", 415] 416 417[[package]] 418name = "memchr" 419version = "2.4.1" 420source = "registry+https://github.com/rust-lang/crates.io-index" 421checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" 422 423[[package]] 424name = "memoffset" 425version = "0.6.4" 426source = "registry+https://github.com/rust-lang/crates.io-index" 427checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9" 428dependencies = [ 429 "autocfg", 430] 431 432[[package]] 433name = "memoffset" 434version = "0.9.1" 435source = "registry+https://github.com/rust-lang/crates.io-index" 436checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 437dependencies = [ 438 "autocfg", 439] 440 441[[package]] 442name = "num_cpus" 443version = "1.13.1" 444source = "registry+https://github.com/rust-lang/crates.io-index" 445checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" 446dependencies = [ 447 "hermit-abi", 448 "libc", 449] 450 451[[package]] 452name = "once_cell" 453version = "1.21.3" 454source = "registry+https://github.com/rust-lang/crates.io-index" 455checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 456 457[[package]] 458name = "os_str_bytes" 459version = "4.2.0" 460source = "registry+https://github.com/rust-lang/crates.io-index" 461checksum = "addaa943333a514159c80c97ff4a93306530d965d27e139188283cd13e06a799" 462dependencies = [ 463 "memchr", 464] 465 466[[package]] 467name = "paste" 468version = "1.0.15" 469source = "registry+https://github.com/rust-lang/crates.io-index" 470checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 471 472[[package]] 473name = "proc-macro-error" 474version = "1.0.4" 475source = "registry+https://github.com/rust-lang/crates.io-index" 476checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 477dependencies = [ 478 "proc-macro-error-attr", 479 "proc-macro2", 480 "quote", 481 "syn 1.0.109", 482 "version_check", 483] 484 485[[package]] 486name = "proc-macro-error-attr" 487version = "1.0.4" 488source = "registry+https://github.com/rust-lang/crates.io-index" 489checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 490dependencies = [ 491 "proc-macro2", 492 "quote", 493 "version_check", 494] 495 496[[package]] 497name = "proc-macro2" 498version = "1.0.101" 499source = "registry+https://github.com/rust-lang/crates.io-index" 500checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" 501dependencies = [ 502 "unicode-ident", 503] 504 505[[package]] 506name = "quote" 507version = "1.0.40" 508source = "registry+https://github.com/rust-lang/crates.io-index" 509checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 510dependencies = [ 511 "proc-macro2", 512] 513 514[[package]] 515name = "r-efi" 516version = "5.3.0" 517source = "registry+https://github.com/rust-lang/crates.io-index" 518checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 519 520[[package]] 521name = "rayon" 522version = "1.5.1" 523source = "registry+https://github.com/rust-lang/crates.io-index" 524checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90" 525dependencies = [ 526 "autocfg", 527 "crossbeam-deque", 528 "either", 529 "rayon-core", 530] 531 532[[package]] 533name = "rayon-core" 534version = "1.9.1" 535source = "registry+https://github.com/rust-lang/crates.io-index" 536checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e" 537dependencies = [ 538 "crossbeam-channel", 539 "crossbeam-deque", 540 "crossbeam-utils", 541 "lazy_static", 542 "num_cpus", 543] 544 545[[package]] 546name = "regex" 547version = "1.7.3" 548source = "registry+https://github.com/rust-lang/crates.io-index" 549checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" 550dependencies = [ 551 "aho-corasick", 552 "memchr", 553 "regex-syntax", 554] 555 556[[package]] 557name = "regex-syntax" 558version = "0.6.29" 559source = "registry+https://github.com/rust-lang/crates.io-index" 560checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 561 562[[package]] 563name = "rnix" 564version = "0.12.0" 565source = "registry+https://github.com/rust-lang/crates.io-index" 566checksum = "6f15e00b0ab43abd70d50b6f8cd021290028f9b7fdd7cdfa6c35997173bc1ba9" 567dependencies = [ 568 "rowan", 569] 570 571[[package]] 572name = "rowan" 573version = "0.15.17" 574source = "registry+https://github.com/rust-lang/crates.io-index" 575checksum = "d4f1e4a001f863f41ea8d0e6a0c34b356d5b733db50dadab3efef640bafb779b" 576dependencies = [ 577 "countme", 578 "hashbrown 0.14.5", 579 "memoffset 0.9.1", 580 "rustc-hash", 581 "text-size", 582] 583 584[[package]] 585name = "rustc-hash" 586version = "1.1.0" 587source = "registry+https://github.com/rust-lang/crates.io-index" 588checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 589 590[[package]] 591name = "rustix" 592version = "1.1.2" 593source = "registry+https://github.com/rust-lang/crates.io-index" 594checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" 595dependencies = [ 596 "bitflags 2.9.4", 597 "errno", 598 "libc", 599 "linux-raw-sys", 600 "windows-sys", 601] 602 603[[package]] 604name = "ryu" 605version = "1.0.5" 606source = "registry+https://github.com/rust-lang/crates.io-index" 607checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" 608 609[[package]] 610name = "same-file" 611version = "1.0.6" 612source = "registry+https://github.com/rust-lang/crates.io-index" 613checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 614dependencies = [ 615 "winapi-util", 616] 617 618[[package]] 619name = "scopeguard" 620version = "1.1.0" 621source = "registry+https://github.com/rust-lang/crates.io-index" 622checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 623 624[[package]] 625name = "serde" 626version = "1.0.130" 627source = "registry+https://github.com/rust-lang/crates.io-index" 628checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913" 629dependencies = [ 630 "serde_derive", 631] 632 633[[package]] 634name = "serde_derive" 635version = "1.0.130" 636source = "registry+https://github.com/rust-lang/crates.io-index" 637checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b" 638dependencies = [ 639 "proc-macro2", 640 "quote", 641 "syn 1.0.109", 642] 643 644[[package]] 645name = "serde_json" 646version = "1.0.68" 647source = "registry+https://github.com/rust-lang/crates.io-index" 648checksum = "0f690853975602e1bfe1ccbf50504d67174e3bcf340f23b5ea9992e0587a52d8" 649dependencies = [ 650 "itoa", 651 "ryu", 652 "serde", 653] 654 655[[package]] 656name = "sha2" 657version = "0.10.9" 658source = "registry+https://github.com/rust-lang/crates.io-index" 659checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 660dependencies = [ 661 "cfg-if", 662 "cpufeatures", 663 "digest", 664] 665 666[[package]] 667name = "similar" 668version = "2.1.0" 669source = "registry+https://github.com/rust-lang/crates.io-index" 670checksum = "2e24979f63a11545f5f2c60141afe249d4f19f84581ea2138065e400941d83d3" 671 672[[package]] 673name = "statix" 674version = "0.5.8" 675dependencies = [ 676 "anyhow", 677 "ariadne", 678 "clap", 679 "ignore", 680 "indoc", 681 "insta", 682 "lib", 683 "macros", 684 "paste", 685 "rayon", 686 "rnix", 687 "rowan", 688 "serde", 689 "serde_json", 690 "similar", 691 "strip-ansi-escapes", 692 "tempfile", 693 "thiserror", 694 "toml", 695 "vfs", 696] 697 698[[package]] 699name = "strip-ansi-escapes" 700version = "0.1.1" 701source = "registry+https://github.com/rust-lang/crates.io-index" 702checksum = "011cbb39cf7c1f62871aea3cc46e5817b0937b49e9447370c93cacbe93a766d8" 703dependencies = [ 704 "vte", 705] 706 707[[package]] 708name = "strsim" 709version = "0.10.0" 710source = "registry+https://github.com/rust-lang/crates.io-index" 711checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 712 713[[package]] 714name = "syn" 715version = "1.0.109" 716source = "registry+https://github.com/rust-lang/crates.io-index" 717checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 718dependencies = [ 719 "proc-macro2", 720 "quote", 721 "unicode-ident", 722] 723 724[[package]] 725name = "syn" 726version = "2.0.106" 727source = "registry+https://github.com/rust-lang/crates.io-index" 728checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" 729dependencies = [ 730 "proc-macro2", 731 "quote", 732 "unicode-ident", 733] 734 735[[package]] 736name = "tempfile" 737version = "3.23.0" 738source = "registry+https://github.com/rust-lang/crates.io-index" 739checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" 740dependencies = [ 741 "fastrand", 742 "getrandom", 743 "once_cell", 744 "rustix", 745 "windows-sys", 746] 747 748[[package]] 749name = "termcolor" 750version = "1.1.2" 751source = "registry+https://github.com/rust-lang/crates.io-index" 752checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" 753dependencies = [ 754 "winapi-util", 755] 756 757[[package]] 758name = "text-size" 759version = "1.1.0" 760source = "registry+https://github.com/rust-lang/crates.io-index" 761checksum = "288cb548dbe72b652243ea797201f3d481a0609a967980fcc5b2315ea811560a" 762 763[[package]] 764name = "textwrap" 765version = "0.14.2" 766source = "registry+https://github.com/rust-lang/crates.io-index" 767checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80" 768dependencies = [ 769 "unicode-width", 770] 771 772[[package]] 773name = "thiserror" 774version = "1.0.30" 775source = "registry+https://github.com/rust-lang/crates.io-index" 776checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" 777dependencies = [ 778 "thiserror-impl", 779] 780 781[[package]] 782name = "thiserror-impl" 783version = "1.0.30" 784source = "registry+https://github.com/rust-lang/crates.io-index" 785checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" 786dependencies = [ 787 "proc-macro2", 788 "quote", 789 "syn 1.0.109", 790] 791 792[[package]] 793name = "thread_local" 794version = "1.1.3" 795source = "registry+https://github.com/rust-lang/crates.io-index" 796checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd" 797dependencies = [ 798 "once_cell", 799] 800 801[[package]] 802name = "toml" 803version = "0.5.8" 804source = "registry+https://github.com/rust-lang/crates.io-index" 805checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" 806dependencies = [ 807 "serde", 808] 809 810[[package]] 811name = "typenum" 812version = "1.19.0" 813source = "registry+https://github.com/rust-lang/crates.io-index" 814checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 815 816[[package]] 817name = "unicase" 818version = "2.6.0" 819source = "registry+https://github.com/rust-lang/crates.io-index" 820checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 821dependencies = [ 822 "version_check", 823] 824 825[[package]] 826name = "unicode-ident" 827version = "1.0.19" 828source = "registry+https://github.com/rust-lang/crates.io-index" 829checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" 830 831[[package]] 832name = "unicode-segmentation" 833version = "1.8.0" 834source = "registry+https://github.com/rust-lang/crates.io-index" 835checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b" 836 837[[package]] 838name = "unicode-width" 839version = "0.1.9" 840source = "registry+https://github.com/rust-lang/crates.io-index" 841checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" 842 843[[package]] 844name = "utf8parse" 845version = "0.2.0" 846source = "registry+https://github.com/rust-lang/crates.io-index" 847checksum = "936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372" 848 849[[package]] 850name = "version_check" 851version = "0.9.3" 852source = "registry+https://github.com/rust-lang/crates.io-index" 853checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" 854 855[[package]] 856name = "vfs" 857version = "0.0.0" 858dependencies = [ 859 "indexmap", 860 "rayon", 861] 862 863[[package]] 864name = "vte" 865version = "0.10.1" 866source = "registry+https://github.com/rust-lang/crates.io-index" 867checksum = "6cbce692ab4ca2f1f3047fcf732430249c0e971bfdd2b234cf2c47ad93af5983" 868dependencies = [ 869 "arrayvec", 870 "utf8parse", 871 "vte_generate_state_changes", 872] 873 874[[package]] 875name = "vte_generate_state_changes" 876version = "0.1.1" 877source = "registry+https://github.com/rust-lang/crates.io-index" 878checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff" 879dependencies = [ 880 "proc-macro2", 881 "quote", 882] 883 884[[package]] 885name = "walkdir" 886version = "2.3.2" 887source = "registry+https://github.com/rust-lang/crates.io-index" 888checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 889dependencies = [ 890 "same-file", 891 "winapi", 892 "winapi-util", 893] 894 895[[package]] 896name = "wasi" 897version = "0.14.7+wasi-0.2.4" 898source = "registry+https://github.com/rust-lang/crates.io-index" 899checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c" 900dependencies = [ 901 "wasip2", 902] 903 904[[package]] 905name = "wasip2" 906version = "1.0.1+wasi-0.2.4" 907source = "registry+https://github.com/rust-lang/crates.io-index" 908checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 909dependencies = [ 910 "wit-bindgen", 911] 912 913[[package]] 914name = "winapi" 915version = "0.3.9" 916source = "registry+https://github.com/rust-lang/crates.io-index" 917checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 918dependencies = [ 919 "winapi-i686-pc-windows-gnu", 920 "winapi-x86_64-pc-windows-gnu", 921] 922 923[[package]] 924name = "winapi-i686-pc-windows-gnu" 925version = "0.4.0" 926source = "registry+https://github.com/rust-lang/crates.io-index" 927checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 928 929[[package]] 930name = "winapi-util" 931version = "0.1.5" 932source = "registry+https://github.com/rust-lang/crates.io-index" 933checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 934dependencies = [ 935 "winapi", 936] 937 938[[package]] 939name = "winapi-x86_64-pc-windows-gnu" 940version = "0.4.0" 941source = "registry+https://github.com/rust-lang/crates.io-index" 942checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 943 944[[package]] 945name = "windows-sys" 946version = "0.59.0" 947source = "registry+https://github.com/rust-lang/crates.io-index" 948checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 949dependencies = [ 950 "windows-targets", 951] 952 953[[package]] 954name = "windows-targets" 955version = "0.52.6" 956source = "registry+https://github.com/rust-lang/crates.io-index" 957checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 958dependencies = [ 959 "windows_aarch64_gnullvm", 960 "windows_aarch64_msvc", 961 "windows_i686_gnu", 962 "windows_i686_gnullvm", 963 "windows_i686_msvc", 964 "windows_x86_64_gnu", 965 "windows_x86_64_gnullvm", 966 "windows_x86_64_msvc", 967] 968 969[[package]] 970name = "windows_aarch64_gnullvm" 971version = "0.52.6" 972source = "registry+https://github.com/rust-lang/crates.io-index" 973checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 974 975[[package]] 976name = "windows_aarch64_msvc" 977version = "0.52.6" 978source = "registry+https://github.com/rust-lang/crates.io-index" 979checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 980 981[[package]] 982name = "windows_i686_gnu" 983version = "0.52.6" 984source = "registry+https://github.com/rust-lang/crates.io-index" 985checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 986 987[[package]] 988name = "windows_i686_gnullvm" 989version = "0.52.6" 990source = "registry+https://github.com/rust-lang/crates.io-index" 991checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 992 993[[package]] 994name = "windows_i686_msvc" 995version = "0.52.6" 996source = "registry+https://github.com/rust-lang/crates.io-index" 997checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 998 999[[package]] 1000name = "windows_x86_64_gnu" 1001version = "0.52.6" 1002source = "registry+https://github.com/rust-lang/crates.io-index" 1003checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1004 1005[[package]] 1006name = "windows_x86_64_gnullvm" 1007version = "0.52.6" 1008source = "registry+https://github.com/rust-lang/crates.io-index" 1009checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1010 1011[[package]] 1012name = "windows_x86_64_msvc" 1013version = "0.52.6" 1014source = "registry+https://github.com/rust-lang/crates.io-index" 1015checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1016 1017[[package]] 1018name = "wit-bindgen" 1019version = "0.46.0" 1020source = "registry+https://github.com/rust-lang/crates.io-index" 1021checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 1022 1023[[package]] 1024name = "yansi" 1025version = "0.5.0" 1026source = "registry+https://github.com/rust-lang/crates.io-index" 1027checksum = "9fc79f4a1e39857fc00c3f662cbf2651c771f00e9c15fe2abc341806bd46bd71"