mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-04 21:37:47 +03:00
Add --config flag
This commit is contained in:
parent
0e6dc7f48b
commit
5d743a37ea
2 changed files with 9 additions and 0 deletions
|
@ -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()),
|
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 {
|
for unstable_flag in &args.unstable_flags {
|
||||||
line.arg("-Z");
|
line.arg("-Z");
|
||||||
line.arg(unstable_flag);
|
line.arg(unstable_flag);
|
||||||
|
|
|
@ -40,6 +40,10 @@ pub struct Expand {
|
||||||
#[arg(long, value_name = "WHEN")]
|
#[arg(long, value_name = "WHEN")]
|
||||||
pub color: Option<Coloring>,
|
pub color: Option<Coloring>,
|
||||||
|
|
||||||
|
/// Override a configuration value
|
||||||
|
#[arg(long, value_name = "KEY=VALUE")]
|
||||||
|
pub config: Vec<String>,
|
||||||
|
|
||||||
/// Unstable (nightly-only) flags to Cargo
|
/// Unstable (nightly-only) flags to Cargo
|
||||||
#[arg(short = 'Z', value_name = "FLAG")]
|
#[arg(short = 'Z', value_name = "FLAG")]
|
||||||
pub unstable_flags: Vec<String>,
|
pub unstable_flags: Vec<String>,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue