@@ -53,6 +53,7 @@ extern crate clippy_utils;
53
53
use clippy_utils:: parse_msrv;
54
54
use rustc_data_structures:: fx:: FxHashSet ;
55
55
use rustc_lint:: LintId ;
56
+ use rustc_semver:: RustcVersion ;
56
57
use rustc_session:: Session ;
57
58
58
59
/// Macro used to declare a Clippy lint.
@@ -452,6 +453,39 @@ pub fn register_pre_expansion_lints(store: &mut rustc_lint::LintStore, sess: &Se
452
453
store. register_pre_expansion_pass ( move || Box :: new ( attrs:: EarlyAttributes { msrv } ) ) ;
453
454
}
454
455
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
+
455
489
#[ doc( hidden) ]
456
490
pub fn read_conf ( sess : & Session ) -> Conf {
457
491
let file_name = match utils:: conf:: lookup_conf_file ( ) {
@@ -467,12 +501,11 @@ pub fn read_conf(sess: &Session) -> Conf {
467
501
let TryConf { conf, errors } = utils:: conf:: read ( & file_name) ;
468
502
// all conf errors are non-fatal, we just use the default conf in case of error
469
503
for error in errors {
470
- sess. struct_err ( & format ! (
504
+ sess. err ( & format ! (
471
505
"error reading Clippy's configuration file `{}`: {}" ,
472
506
file_name. display( ) ,
473
507
format_error( error)
474
- ) )
475
- . emit ( ) ;
508
+ ) ) ;
476
509
}
477
510
478
511
conf
@@ -579,16 +612,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
579
612
store. register_late_pass ( || Box :: new ( non_octal_unix_permissions:: NonOctalUnixPermissions ) ) ;
580
613
store. register_early_pass ( || Box :: new ( unnecessary_self_imports:: UnnecessarySelfImports ) ) ;
581
614
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) ;
592
616
let avoid_breaking_exported_api = conf. avoid_breaking_exported_api ;
593
617
let allow_expect_in_tests = conf. allow_expect_in_tests ;
594
618
let allow_unwrap_in_tests = conf. allow_unwrap_in_tests ;
0 commit comments