Skip to content

Commit 15a80f1

Browse files
committed
1 parent e4fa77b commit 15a80f1

File tree

28 files changed

+1079
-43
lines changed

28 files changed

+1079
-43
lines changed

CHANGELOG.md

-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Changelog
22

3-
## 2.1.12
4-
5-
- Update `cargo` to version 0.72.1 ([#786](https://github.com/trailofbits/dylint/pull/786))
6-
73
## 2.1.11
84

95
- Address [rust-lang/rust#112692](https://github.com/rust-lang/rust/pull/112692) ([f4094c8](https://github.com/trailofbits/dylint/commit/f4094c82229ea79a764e9dbf644e28feb8997dd1))

Cargo.lock

+15-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cargo-dylint/tests/dylint.rs

+4
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ fn requirements_do_not_include_patch_versions() {
8686
if dep.starts_with("dylint") {
8787
continue;
8888
}
89+
// smoelius: Work around: https://github.com/luser/strip-ansi-escapes/issues/17
90+
if dep == "strip-ansi-escapes" {
91+
continue;
92+
}
8993
assert!(
9094
req.comparators
9195
.iter()

dylint/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ tempfile = "3.7"
3030
toml = { version = "0.7", optional = true }
3131
walkdir = "2.3"
3232

33+
# smoelius: Work around: https://github.com/luser/strip-ansi-escapes/issues/17
34+
strip-ansi-escapes = "=0.1.1"
35+
3336
dylint_internal = { version = "=2.1.12", path = "../internal", features = ["git", "packaging", "rustup", "sed"] }
3437

3538
[build-dependencies]

examples/general/await_holding_span_guard/Cargo.lock

+44-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/general/crate_wide_allow/Cargo.lock

+44-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/general/env_cargo_path/Cargo.lock

+44-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)