Use stable rustfmt-preview

This commit is contained in:
Aleksey Kladov 2018-02-17 01:01:38 +03:00
parent 97c0258bc0
commit b920b3d50b
2 changed files with 2 additions and 8 deletions

View File

@ -2,15 +2,11 @@ language: rust
matrix: matrix:
include: include:
- rust: stable
- rust: nightly-2018-01-26
before_script: before_script:
- rustup component add rustfmt-preview - rustup component add rustfmt-preview
script: script:
- cargo fmt -- --write-mode=diff - cargo fmt --all -- --write-mode=diff
- rust: stable
script:
- cargo test - cargo test
branches: branches:

View File

@ -5,9 +5,7 @@ use super::is_insignificant;
use std::ops::{Add, AddAssign}; use std::ops::{Add, AddAssign};
pub(crate) struct ParserInput<'t> { pub(crate) struct ParserInput<'t> {
#[allow(unused)]
text: &'t str, text: &'t str,
#[allow(unused)]
start_offsets: Vec<TextUnit>, start_offsets: Vec<TextUnit>,
tokens: Vec<Token>, // non-whitespace tokens tokens: Vec<Token>, // non-whitespace tokens
} }