Skip to content

Commit 4ddc8a2

Browse files
committed
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 (luser/strip-ansi-escapes#8) Should Cargo.lock be commited too to track it's working state? changelog: none
2 parents aaaa926 + 606ada1 commit 4ddc8a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lintcheck/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ flate2 = "1.0"
1919
rayon = "1.5.1"
2020
serde = { version = "1.0", features = ["derive"] }
2121
serde_json = "1.0.85"
22-
strip-ansi-escapes = "0.1.1"
22+
strip-ansi-escapes = "0.2.0"
2323
tar = "0.4"
2424
toml = "0.7.3"
2525
ureq = { version = "2.2", features = ["json"] }

lintcheck/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ impl ClippyWarning {
161161

162162
// --recursive bypasses cargo so we have to strip the rendered output ourselves
163163
let rendered = diag.rendered.as_mut().unwrap();
164-
*rendered = String::from_utf8(strip_ansi_escapes::strip(&rendered).unwrap()).unwrap();
164+
*rendered = strip_ansi_escapes::strip_str(&rendered);
165165

166166
Some(Self {
167167
crate_name: crate_name.to_owned(),

0 commit comments

Comments
 (0)