chore: fix formatting, remove old rustfmt.toml (#2007)

`cargo fmt` has a bug where it does not format modules scoped with
feature flags.
This commit is contained in:
Artem Vorotnikov
2019-12-21 12:28:57 -08:00
committed by Carl Lerche
parent f309b295bb
commit 8656b7b8eb
34 changed files with 181 additions and 148 deletions
+1 -1
View File
@@ -556,7 +556,7 @@ impl Command {
imp::spawn_child(&mut self.std).map(|spawned_child| Child {
child: ChildDropGuard {
inner: spawned_child.child,
kill_on_drop: self.kill_on_drop
kill_on_drop: self.kill_on_drop,
},
stdin: spawned_child.stdin.map(|inner| ChildStdin { inner }),
stdout: spawned_child.stdout.map(|inner| ChildStdout { inner }),