mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 12:57:38 +03:00
Update --pretty=expanded to -Zunpretty=expanded
This commit is contained in:
parent
ce27e64b73
commit
ccd8897bfc
3 changed files with 3 additions and 4 deletions
|
@ -3,7 +3,7 @@ name = "cargo-expand"
|
|||
version = "1.0.7"
|
||||
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
description = "Wrapper around rustc --pretty=expanded. Shows the result of macro expansion and #[derive] expansion."
|
||||
description = "Wrapper around rustc -Zunpretty=expanded. Shows the result of macro expansion and #[derive] expansion."
|
||||
repository = "https://github.com/dtolnay/cargo-expand"
|
||||
documentation = "https://github.com/dtolnay/cargo-expand"
|
||||
keywords = ["cargo", "subcommand", "expanded"]
|
||||
|
|
|
@ -14,7 +14,7 @@ $ cargo expand
|
|||
This is a wrapper around the more verbose compiler command:
|
||||
|
||||
```console
|
||||
$ cargo rustc --profile=check -- -Zunstable-options --pretty=expanded
|
||||
$ cargo rustc --profile=check -- -Zunpretty=expanded
|
||||
```
|
||||
|
||||
## Installation
|
||||
|
|
|
@ -385,8 +385,7 @@ fn apply_args(cmd: &mut Command, args: &Args, color: &Coloring, outfile: &Path)
|
|||
|
||||
line.arg("-o");
|
||||
line.arg(outfile);
|
||||
line.arg("-Zunstable-options");
|
||||
line.arg("--pretty=expanded");
|
||||
line.arg("-Zunpretty=expanded");
|
||||
|
||||
if args.verbose {
|
||||
let mut display = line.clone();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue