Merge pull request #197 from dtolnay/config

Add `--config` flag
This commit is contained in:
David Tolnay 2023-09-23 13:50:58 -07:00 committed by GitHub
commit cb13222e21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View file

@ -275,6 +275,11 @@ fn apply_args(cmd: &mut Command, args: &Expand, color: &Coloring, outfile: &Path
color => line.arg(color.to_possible_value().unwrap().get_name()),
}
for kv in &args.config {
line.arg("--config");
line.arg(kv);
}
for unstable_flag in &args.unstable_flags {
line.arg("-Z");
line.arg(unstable_flag);

View file

@ -40,6 +40,10 @@ pub struct Expand {
#[arg(long, value_name = "WHEN")]
pub color: Option<Coloring>,
/// Override a configuration value
#[arg(long, value_name = "KEY=VALUE")]
pub config: Vec<String>,
/// Unstable (nightly-only) flags to Cargo
#[arg(short = 'Z', value_name = "FLAG")]
pub unstable_flags: Vec<String>,