Set max width to 79 in RustFmt

This commit is contained in:
Joakim Soderlund 2019-07-24 14:38:41 +00:00
parent 1dfbf1ea7f
commit 97b81eeba7
2 changed files with 3 additions and 1 deletions

1
.rustfmt.toml Normal file
View file

@ -0,0 +1 @@
max_width = 79

View file

@ -213,7 +213,8 @@ impl<'de> Deserialize<'de> for Color {
}
impl CompletionStatus {
const FIELDS: &'static [&'static str] = &["cancelled", "complete", "hiatus", "incomplete"];
const FIELDS: &'static [&'static str] =
&["cancelled", "complete", "hiatus", "incomplete"];
}
impl<'de> Deserialize<'de> for CompletionStatus {