Skip to content

Commit

Permalink
chore(deps): update rust crate strip-ansi-escapes to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 1, 2023
1 parent ca183b2 commit 577e3dd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 14 deletions.
17 changes: 5 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/anstream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ anstyle-wincon = { version = "2.0.0", path = "../anstyle-wincon", optional = tru
criterion = "0.4.0"
owo-colors = "3.5.0"
proptest = "1.1.0"
strip-ansi-escapes = "0.1.1"
strip-ansi-escapes = "0.2.0"

[[bench]]
name = "strip"
Expand Down
2 changes: 1 addition & 1 deletion crates/anstream/benches/strip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ fn strip(c: &mut Criterion) {
});
group.bench_function("strip_ansi_escapes", |b| {
b.iter(|| {
let stripped = strip_ansi_escapes::strip(content).unwrap();
let stripped = strip_ansi_escapes::strip(content);

black_box(stripped)
})
Expand Down

0 comments on commit 577e3dd

Please sign in to comment.