fix excessive ansi escape sequences (#5901)

This commit is contained in:
Darren Schroeder 2022-06-27 18:51:14 -05:00 committed by GitHub
parent 06d5a31301
commit 8c9dced71b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View file

@ -80,9 +80,9 @@ dependencies = [
[[package]]
name = "ansi-str"
version = "0.1.1"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90cb0ceb8c444d026166795e474e9dfe54b443bdc07cc21bd6c5073f5e637482"
checksum = "e04d04a41a1463228d6eed971b9cdadd86b5577c69c09fd2379c57fe5e159071"
dependencies = [
"ansi-parser",
]

View file

@ -17,5 +17,5 @@ nu-protocol = { path = "../nu-protocol", version = "0.64.1" }
regex = "1.4"
unicode-width = "0.1.8"
strip-ansi-escapes = "0.1.1"
ansi-str = "0.1.1"
ansi-str = "0.2.0"
atty = "0.2.14"