Include full cargo rustc command in readme

This commit is contained in:
David Tolnay 2018-07-01 22:06:22 -07:00
parent 665022ca2f
commit bd1fb568d9
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -3,9 +3,18 @@
[![Build Status](https://travis-ci.org/dtolnay/cargo-expand.svg?branch=master)](https://travis-ci.org/dtolnay/cargo-expand)
[![Latest Version](https://img.shields.io/crates/v/cargo-expand.svg)](https://crates.io/crates/cargo-expand)
This is a wrapper around `cargo rustc -- --pretty=expanded`. Once installed, the
command `cargo expand` prints out the result of macro expansion and `#[derive]`
expansion applied to the current crate.
Once installed, the following command prints out the result of macro expansion
and `#[derive]` expansion applied to the current crate.
```console
$ cargo expand
```
This is a wrapper around the more verbose compiler command:
```console
$ cargo rustc --profile=check -- -Zunstable-options --pretty=expanded
```
## Installation