11use crate :: config:: * ;
2-
32use crate :: search_paths:: SearchPath ;
43use crate :: utils:: NativeLib ;
54use crate :: { lint, EarlyDiagCtxt } ;
@@ -8,20 +7,17 @@ use rustc_data_structures::profiling::TimePassesFormat;
87use rustc_data_structures:: stable_hasher:: Hash64 ;
98use rustc_errors:: ColorConfig ;
109use rustc_errors:: { LanguageIdentifier , TerminalUrl } ;
10+ use rustc_feature:: UnstableFeatures ;
11+ use rustc_span:: edition:: Edition ;
12+ use rustc_span:: RealFileName ;
13+ use rustc_span:: SourceFileHashAlgorithm ;
1114use rustc_target:: spec:: {
1215 CodeModel , LinkerFlavorCli , MergeFunctions , PanicStrategy , SanitizerSet , WasmCAbi ,
1316} ;
1417use rustc_target:: spec:: {
1518 RelocModel , RelroLevel , SplitDebuginfo , StackProtector , TargetTriple , TlsModel ,
1619} ;
17-
18- use rustc_feature:: UnstableFeatures ;
19- use rustc_span:: edition:: Edition ;
20- use rustc_span:: RealFileName ;
21- use rustc_span:: SourceFileHashAlgorithm ;
22-
2320use std:: collections:: BTreeMap ;
24-
2521use std:: hash:: { DefaultHasher , Hasher } ;
2622use std:: num:: { IntErrorKind , NonZero } ;
2723use std:: path:: PathBuf ;
@@ -118,8 +114,8 @@ top_level_options!(
118114 /// incremental compilation cache before proceeding.
119115 ///
120116 /// - `[TRACKED_NO_CRATE_HASH]`
121- /// Same as `[TRACKED]`, but will not affect the crate hash. This is useful for options that only
122- /// affect the incremental cache.
117+ /// Same as `[TRACKED]`, but will not affect the crate hash. This is useful for options that
118+ /// only affect the incremental cache.
123119 ///
124120 /// - `[UNTRACKED]`
125121 /// Incremental compilation is not influenced by this option.
0 commit comments