Skip to content

Commit b86a202

Browse files
committed
Auto merge of rust-lang#13246 - xFrednet:12292-remove-cargo-clippy-feature, r=flip1995
Remove `feature=cargo-clippy` argument Roses are red, Violets are blue, Fixme was written, And now it's due --- changelog: **Important Change** Removed the implicit `cargo-clippy` feature set by Clippy as announced here: <https://blog.rust-lang.org/2024/02/28/Clippy-deprecating-feature-cargo-clippy.html> [rust-lang#13246](rust-lang#13246) Follow-up of: rust-lang#12292 r? `@flip1995` cc: `@GuillaumeGomez`
2 parents 04bded5 + 2645ea3 commit b86a202

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/driver.rs

-2
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,6 @@ pub fn main() {
268268
},
269269
_ => Some(s.to_string()),
270270
})
271-
// FIXME: remove this line in 1.79 to only keep `--cfg clippy`.
272-
.chain(vec!["--cfg".into(), r#"feature="cargo-clippy""#.into()])
273271
.chain(vec!["--cfg".into(), "clippy".into()])
274272
.collect::<Vec<String>>();
275273

0 commit comments

Comments
 (0)