mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
Temporarily disable rustfmt
This commit is contained in:
parent
9816494f77
commit
67550586f7
2 changed files with 7 additions and 3 deletions
|
@ -14,7 +14,9 @@ Install with `cargo install cargo-expand`.
|
|||
This command optionally uses
|
||||
[`rustfmt`](https://github.com/rust-lang-nursery/rustfmt)
|
||||
to format the expanded output. If `rustfmt` is not available, the expanded code
|
||||
is not formatted. Install `rustfmt` with `cargo install rustfmt`.
|
||||
is not formatted. Install `rustfmt` with `cargo install rustfmt`. (Note:
|
||||
`rustfmt` is temporarily disabled due to
|
||||
[rust-lang/rust#38016](https://github.com/rust-lang/rust/issues/38016).)
|
||||
|
||||
## Example
|
||||
|
||||
|
|
|
@ -88,12 +88,14 @@ fn wrap_args<T, I>(it: I) -> Vec<String>
|
|||
}
|
||||
|
||||
fn have_rustfmt() -> bool {
|
||||
Command::new("rustfmt")
|
||||
// FIXME https://github.com/rust-lang/rust/issues/38016
|
||||
false
|
||||
/*Command::new("rustfmt")
|
||||
.stdin(Stdio::null())
|
||||
.stdout(Stdio::null())
|
||||
.stderr(Stdio::null())
|
||||
.spawn()
|
||||
.is_ok()
|
||||
.is_ok()*/
|
||||
}
|
||||
|
||||
fn ignore_rustfmt_err(line: &str) -> bool {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue