Skip to content

Commit 0e7f9ec

Browse files
committed
Add change tracker entry
1 parent 8763f7a commit 0e7f9ec

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/bootstrap/src/core/config/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ pub struct Config {
305305
pub save_toolstates: Option<PathBuf>,
306306
pub print_step_timings: bool,
307307
pub print_step_rusage: bool,
308-
pub missing_tools: bool,
308+
pub missing_tools: bool, // FIXME: Deprecated field. Remove it at 2024.
309309

310310
// Fallback musl-root for all targets
311311
pub musl_root: Option<PathBuf>,

src/bootstrap/src/utils/change_tracker.rs

+5
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
101101
severity: ChangeSeverity::Warning,
102102
summary: "rust-analyzer-proc-macro-srv is no longer enabled by default. To build it, you must either enable it in the configuration or explicitly invoke it with x.py.",
103103
},
104+
ChangeInfo {
105+
change_id: 119373,
106+
severity: ChangeSeverity::Info,
107+
summary: "The dist.missing-tools config option was deprecated, as it was unused. If you are using it, remove it from your config, it will be removed soon.",
108+
},
104109
];

0 commit comments

Comments
 (0)