mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-04 05:17:37 +03:00
commit
cb13222e21
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()),
|
||||
}
|
||||
|
||||
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);
|
||||
|
|
|
@ -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>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue