Auto merge of #12992 - klensy:lintcheck-bump, r=Alexendoo

bump strip-ansi-escapes

This bumps `strip-ansi-escapes` to remove arrayvec from it's deps (https://github.com/luser/strip-ansi-escapes/pull/8)

Should Cargo.lock be commited too to track it's working state?

changelog: none
This commit is contained in:
bors 2024-06-27 16:19:59 +00:00
commit 4ddc8a2e4e
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ flate2 = "1.0"
rayon = "1.5.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.85"
strip-ansi-escapes = "0.1.1"
strip-ansi-escapes = "0.2.0"
tar = "0.4"
toml = "0.7.3"
ureq = { version = "2.2", features = ["json"] }

View File

@ -161,7 +161,7 @@ impl ClippyWarning {
// --recursive bypasses cargo so we have to strip the rendered output ourselves
let rendered = diag.rendered.as_mut().unwrap();
*rendered = String::from_utf8(strip_ansi_escapes::strip(&rendered).unwrap()).unwrap();
*rendered = strip_ansi_escapes::strip_str(&rendered);
Some(Self {
crate_name: crate_name.to_owned(),