diff options
| -rw-r--r-- | Cargo.lock | 21 | ||||
| -rw-r--r-- | crates/utils/string_proc/Cargo.toml | 1 |
2 files changed, 22 insertions, 0 deletions
@@ -1192,6 +1192,18 @@ dependencies = [ [[package]] name = "string_proc" version = "0.1.0" +dependencies = [ + "strip-ansi-escapes", +] + +[[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 = "subtle" @@ -1418,6 +1430,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 = "wasi" version = "0.11.1+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/crates/utils/string_proc/Cargo.toml b/crates/utils/string_proc/Cargo.toml index cab0460..5292339 100644 --- a/crates/utils/string_proc/Cargo.toml +++ b/crates/utils/string_proc/Cargo.toml @@ -4,3 +4,4 @@ version = "0.1.0" edition = "2024" [dependencies] +strip-ansi-escapes = "0.2.1" |
