Skip to content

Commit b776fb8

Browse files
committed
Auto merge of #8774 - hellow554:cargo-rust-version, r=flip1995
try reading rust-version from Cargo.toml Cargo.toml can contain a field `rust-version`, that acts like a MSRV of clippy.toml file: https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field This will try to read that field and use it, if the clippy.toml config has no `msrv` entry changelog: respect `rust-version` from `Cargo.toml` closes #8746 closes #7765
2 parents 373bb57 + f0a1cd5 commit b776fb8

File tree

38 files changed

+345
-16
lines changed

38 files changed

+345
-16
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ termize = "0.1"
3131
compiletest_rs = { version = "0.8", features = ["tmp"] }
3232
tester = "0.9"
3333
regex = "1.5"
34+
toml = "0.5"
3435
# This is used by the `collect-metadata` alias.
3536
filetime = "0.2"
3637

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,14 @@ specifying the minimum supported Rust version (MSRV) in the clippy configuration
214214
msrv = "1.30.0"
215215
```
216216

217+
Alternatively, the [`rust-version` field](https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field)
218+
in the `Cargo.toml` can be used.
219+
220+
```toml
221+
# Cargo.toml
222+
rust-version = "1.30"
223+
```
224+
217225
The MSRV can also be specified as an inner attribute, like below.
218226

219227
```rust

clippy_lints/src/lib.rs

+37-13
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ extern crate clippy_utils;
5353
use clippy_utils::parse_msrv;
5454
use rustc_data_structures::fx::FxHashSet;
5555
use rustc_lint::LintId;
56+
use rustc_semver::RustcVersion;
5657
use rustc_session::Session;
5758

5859
/// Macro used to declare a Clippy lint.
@@ -452,6 +453,39 @@ pub fn register_pre_expansion_lints(store: &mut rustc_lint::LintStore, sess: &Se
452453
store.register_pre_expansion_pass(move || Box::new(attrs::EarlyAttributes { msrv }));
453454
}
454455

456+
fn read_msrv(conf: &Conf, sess: &Session) -> Option<RustcVersion> {
457+
let cargo_msrv = std::env::var("CARGO_PKG_RUST_VERSION")
458+
.ok()
459+
.and_then(|v| parse_msrv(&v, None, None));
460+
let clippy_msrv = conf.msrv.as_ref().and_then(|s| {
461+
parse_msrv(s, None, None).or_else(|| {
462+
sess.err(&format!(
463+
"error reading Clippy's configuration file. `{}` is not a valid Rust version",
464+
s
465+
));
466+
None
467+
})
468+
});
469+
470+
if let Some(cargo_msrv) = cargo_msrv {
471+
if let Some(clippy_msrv) = clippy_msrv {
472+
// if both files have an msrv, let's compare them and emit a warning if they differ
473+
if clippy_msrv != cargo_msrv {
474+
sess.warn(&format!(
475+
"the MSRV in `clippy.toml` and `Cargo.toml` differ; using `{}` from `clippy.toml`",
476+
clippy_msrv
477+
));
478+
}
479+
480+
Some(clippy_msrv)
481+
} else {
482+
Some(cargo_msrv)
483+
}
484+
} else {
485+
clippy_msrv
486+
}
487+
}
488+
455489
#[doc(hidden)]
456490
pub fn read_conf(sess: &Session) -> Conf {
457491
let file_name = match utils::conf::lookup_conf_file() {
@@ -467,12 +501,11 @@ pub fn read_conf(sess: &Session) -> Conf {
467501
let TryConf { conf, errors } = utils::conf::read(&file_name);
468502
// all conf errors are non-fatal, we just use the default conf in case of error
469503
for error in errors {
470-
sess.struct_err(&format!(
504+
sess.err(&format!(
471505
"error reading Clippy's configuration file `{}`: {}",
472506
file_name.display(),
473507
format_error(error)
474-
))
475-
.emit();
508+
));
476509
}
477510

478511
conf
@@ -579,16 +612,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
579612
store.register_late_pass(|| Box::new(non_octal_unix_permissions::NonOctalUnixPermissions));
580613
store.register_early_pass(|| Box::new(unnecessary_self_imports::UnnecessarySelfImports));
581614

582-
let msrv = conf.msrv.as_ref().and_then(|s| {
583-
parse_msrv(s, None, None).or_else(|| {
584-
sess.err(&format!(
585-
"error reading Clippy's configuration file. `{}` is not a valid Rust version",
586-
s
587-
));
588-
None
589-
})
590-
});
591-
615+
let msrv = read_msrv(conf, sess);
592616
let avoid_breaking_exported_api = conf.avoid_breaking_exported_api;
593617
let allow_expect_in_tests = conf.allow_expect_in_tests;
594618
let allow_unwrap_in_tests = conf.allow_unwrap_in_tests;

tests/compile-test.rs

+19-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ fn base_config(test_dir: &str) -> compiletest::Config {
130130
let mut config = compiletest::Config {
131131
edition: Some("2021".into()),
132132
mode: TestMode::Ui,
133-
..compiletest::Config::default()
133+
..Default::default()
134134
};
135135

136136
if let Ok(filters) = env::var("TESTNAME") {
@@ -286,6 +286,24 @@ fn run_ui_cargo() {
286286
}
287287

288288
env::set_current_dir(&src_path)?;
289+
290+
let cargo_toml_path = case.path().join("Cargo.toml");
291+
let cargo_content = fs::read(&cargo_toml_path)?;
292+
let cargo_parsed: toml::Value = toml::from_str(
293+
std::str::from_utf8(&cargo_content).expect("`Cargo.toml` is not a valid utf-8 file!"),
294+
)
295+
.expect("Can't parse `Cargo.toml`");
296+
297+
let _g = VarGuard::set("CARGO_MANIFEST_DIR", case.path());
298+
let _h = VarGuard::set(
299+
"CARGO_PKG_RUST_VERSION",
300+
cargo_parsed
301+
.get("package")
302+
.and_then(|p| p.get("rust-version"))
303+
.and_then(toml::Value::as_str)
304+
.unwrap_or(""),
305+
);
306+
289307
for file in fs::read_dir(&src_path)? {
290308
let file = file?;
291309
if file.file_type()?.is_dir() {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "fail-both-diff"
3+
version = "0.1.0"
4+
rust-version = "1.56"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
msrv = "1.59"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#![deny(clippy::use_self)]
2+
3+
pub struct Foo;
4+
5+
impl Foo {
6+
pub fn bar() -> Foo {
7+
Foo
8+
}
9+
}
10+
11+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
warning: the MSRV in `clippy.toml` and `Cargo.toml` differ; using `1.59.0` from `clippy.toml`
2+
3+
error: unnecessary structure name repetition
4+
--> $DIR/main.rs:6:21
5+
|
6+
LL | pub fn bar() -> Foo {
7+
| ^^^ help: use the applicable keyword: `Self`
8+
|
9+
note: the lint level is defined here
10+
--> $DIR/main.rs:1:9
11+
|
12+
LL | #![deny(clippy::use_self)]
13+
| ^^^^^^^^^^^^^^^^
14+
15+
error: aborting due to previous error; 1 warning emitted
16+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "fail-both-same"
3+
version = "0.1.0"
4+
rust-version = "1.57.0"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
msrv = "1.57"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#![deny(clippy::use_self)]
2+
3+
pub struct Foo;
4+
5+
impl Foo {
6+
pub fn bar() -> Foo {
7+
Foo
8+
}
9+
}
10+
11+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
error: unnecessary structure name repetition
2+
--> $DIR/main.rs:6:21
3+
|
4+
LL | pub fn bar() -> Foo {
5+
| ^^^ help: use the applicable keyword: `Self`
6+
|
7+
note: the lint level is defined here
8+
--> $DIR/main.rs:1:9
9+
|
10+
LL | #![deny(clippy::use_self)]
11+
| ^^^^^^^^^^^^^^^^
12+
13+
error: aborting due to previous error
14+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "fail-cargo"
3+
version = "0.1.0"
4+
rust-version = "1.56.1"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#![deny(clippy::use_self)]
2+
3+
pub struct Foo;
4+
5+
impl Foo {
6+
pub fn bar() -> Foo {
7+
Foo
8+
}
9+
}
10+
11+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
error: unnecessary structure name repetition
2+
--> $DIR/main.rs:6:21
3+
|
4+
LL | pub fn bar() -> Foo {
5+
| ^^^ help: use the applicable keyword: `Self`
6+
|
7+
note: the lint level is defined here
8+
--> $DIR/main.rs:1:9
9+
|
10+
LL | #![deny(clippy::use_self)]
11+
| ^^^^^^^^^^^^^^^^
12+
13+
error: aborting due to previous error
14+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[package]
2+
name = "fail-clippy"
3+
version = "0.1.0"
4+
5+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
6+
7+
[dependencies]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
msrv = "1.58"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#![deny(clippy::use_self)]
2+
3+
pub struct Foo;
4+
5+
impl Foo {
6+
pub fn bar() -> Foo {
7+
Foo
8+
}
9+
}
10+
11+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
error: unnecessary structure name repetition
2+
--> $DIR/main.rs:6:21
3+
|
4+
LL | pub fn bar() -> Foo {
5+
| ^^^ help: use the applicable keyword: `Self`
6+
|
7+
note: the lint level is defined here
8+
--> $DIR/main.rs:1:9
9+
|
10+
LL | #![deny(clippy::use_self)]
11+
| ^^^^^^^^^^^^^^^^
12+
13+
error: aborting due to previous error
14+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "fail-file-attr"
3+
version = "0.1.0"
4+
rust-version = "1.13"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
msrv = "1.13.0"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// FIXME: this should produce a warning, because the attribute says 1.58 and the cargo.toml file
2+
// says 1.13
3+
4+
#![feature(custom_inner_attributes)]
5+
#![clippy::msrv = "1.58.0"]
6+
#![deny(clippy::use_self)]
7+
8+
pub struct Foo;
9+
10+
impl Foo {
11+
pub fn bar() -> Foo {
12+
Foo
13+
}
14+
}
15+
16+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
error: unnecessary structure name repetition
2+
--> $DIR/main.rs:11:21
3+
|
4+
LL | pub fn bar() -> Foo {
5+
| ^^^ help: use the applicable keyword: `Self`
6+
|
7+
note: the lint level is defined here
8+
--> $DIR/main.rs:6:9
9+
|
10+
LL | #![deny(clippy::use_self)]
11+
| ^^^^^^^^^^^^^^^^
12+
13+
error: aborting due to previous error
14+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "fail-both-same"
3+
version = "0.1.0"
4+
rust-version = "1.13.0"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
msrv = "1.13"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#![deny(clippy::use_self)]
2+
3+
pub struct Foo;
4+
5+
impl Foo {
6+
pub fn bar() -> Foo {
7+
Foo
8+
}
9+
}
10+
11+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "fail-cargo"
3+
version = "0.1.0"
4+
rust-version = "1.13.0"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#![deny(clippy::use_self)]
2+
3+
pub struct Foo;
4+
5+
impl Foo {
6+
pub fn bar() -> Foo {
7+
Foo
8+
}
9+
}
10+
11+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[package]
2+
name = "fail-clippy"
3+
version = "0.1.0"
4+
5+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
6+
7+
[dependencies]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
msrv = "1.13"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#![deny(clippy::use_self)]
2+
3+
pub struct Foo;
4+
5+
impl Foo {
6+
pub fn bar() -> Foo {
7+
Foo
8+
}
9+
}
10+
11+
fn main() {}

0 commit comments

Comments
 (0)