We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 324b175 commit 7c2752aCopy full SHA for 7c2752a
src/bootstrap/config.rs
@@ -148,6 +148,7 @@ struct Build {
148
python: Option<String>,
149
full_bootstrap: Option<bool>,
150
extended: Option<bool>,
151
+ verbose: Option<usize>,
152
}
153
154
/// TOML representation of various global install decisions.
@@ -292,6 +293,7 @@ impl Config {
292
293
set(&mut config.vendor, build.vendor);
294
set(&mut config.full_bootstrap, build.full_bootstrap);
295
set(&mut config.extended, build.extended);
296
+ set(&mut config.verbose, build.verbose);
297
298
if let Some(ref install) = toml.install {
299
config.prefix = install.prefix.clone().map(PathBuf::from);
0 commit comments