mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-04 21:37:47 +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"
|
version = "1.0.7"
|
||||||
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
||||||
license = "MIT OR Apache-2.0"
|
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"
|
repository = "https://github.com/dtolnay/cargo-expand"
|
||||||
documentation = "https://github.com/dtolnay/cargo-expand"
|
documentation = "https://github.com/dtolnay/cargo-expand"
|
||||||
keywords = ["cargo", "subcommand", "expanded"]
|
keywords = ["cargo", "subcommand", "expanded"]
|
||||||
|
|
|
@ -14,7 +14,7 @@ $ cargo expand
|
||||||
This is a wrapper around the more verbose compiler command:
|
This is a wrapper around the more verbose compiler command:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ cargo rustc --profile=check -- -Zunstable-options --pretty=expanded
|
$ cargo rustc --profile=check -- -Zunpretty=expanded
|
||||||
```
|
```
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
|
@ -385,8 +385,7 @@ fn apply_args(cmd: &mut Command, args: &Args, color: &Coloring, outfile: &Path)
|
||||||
|
|
||||||
line.arg("-o");
|
line.arg("-o");
|
||||||
line.arg(outfile);
|
line.arg(outfile);
|
||||||
line.arg("-Zunstable-options");
|
line.arg("-Zunpretty=expanded");
|
||||||
line.arg("--pretty=expanded");
|
|
||||||
|
|
||||||
if args.verbose {
|
if args.verbose {
|
||||||
let mut display = line.clone();
|
let mut display = line.clone();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue