diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-02-09 18:32:24 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-02-09 18:32:24 +0800 |
| commit | 204bb6824bf3555b80ca574ca3edb8ea007c89dd (patch) | |
| tree | 9a50b67ff64b2d1fe918e4bfa5034ac8389668e3 /Cargo.lock | |
| parent | 12d08d599a41b15e0a20113d1a521c8c3a232e79 (diff) | |
Add file inclusion and text formatting to parser
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -100,6 +100,7 @@ dependencies = [ "colored", "regex", "sha2", + "strip-ansi-escapes", "unicode-width", ] @@ -154,6 +155,15 @@ dependencies = [ ] [[package]] +name = "strip-ansi-escapes" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a8f8038e7e7969abb3f1b7c2a811225e9296da208539e0f79c5251d6cac0025" +dependencies = [ + "vte", +] + +[[package]] name = "typenum" version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -172,6 +182,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] +name = "vte" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "231fdcd7ef3037e8330d8e17e61011a2c244126acc0a982f4040ac3f9f0bc077" +dependencies = [ + "memchr", +] + +[[package]] name = "windows-link" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" |
