1
1
use crate :: config:: * ;
2
-
3
2
use crate :: search_paths:: SearchPath ;
4
3
use crate :: utils:: NativeLib ;
5
4
use crate :: { lint, EarlyDiagCtxt } ;
@@ -8,20 +7,17 @@ use rustc_data_structures::profiling::TimePassesFormat;
8
7
use rustc_data_structures:: stable_hasher:: Hash64 ;
9
8
use rustc_errors:: ColorConfig ;
10
9
use 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 ;
11
14
use rustc_target:: spec:: {
12
15
CodeModel , LinkerFlavorCli , MergeFunctions , PanicStrategy , SanitizerSet , WasmCAbi ,
13
16
} ;
14
17
use rustc_target:: spec:: {
15
18
RelocModel , RelroLevel , SplitDebuginfo , StackProtector , TargetTriple , TlsModel ,
16
19
} ;
17
-
18
- use rustc_feature:: UnstableFeatures ;
19
- use rustc_span:: edition:: Edition ;
20
- use rustc_span:: RealFileName ;
21
- use rustc_span:: SourceFileHashAlgorithm ;
22
-
23
20
use std:: collections:: BTreeMap ;
24
-
25
21
use std:: hash:: { DefaultHasher , Hasher } ;
26
22
use std:: num:: { IntErrorKind , NonZero } ;
27
23
use std:: path:: PathBuf ;
@@ -118,8 +114,8 @@ top_level_options!(
118
114
/// incremental compilation cache before proceeding.
119
115
///
120
116
/// - `[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.
123
119
///
124
120
/// - `[UNTRACKED]`
125
121
/// Incremental compilation is not influenced by this option.
0 commit comments