Update codegen for 2018-06-12 nightly.

This commit is contained in:
jeb 2018-06-11 09:00:08 -06:00
parent 432d8b0308
commit 0a157de330
2 changed files with 2 additions and 3 deletions

View File

@ -8,7 +8,7 @@ use yansi::Color::{Red, Yellow, Blue, White};
use version_check::{supports_features, is_min_version, is_min_date};
// Specifies the minimum nightly version needed to compile Rocket's codegen.
const MIN_DATE: &'static str = "2018-05-30";
const MIN_DATE: &'static str = "2018-06-12";
const MIN_VERSION: &'static str = "1.28.0-nightly";
fn main() {

View File

@ -1,8 +1,7 @@
use syntax::parse::parser::{PathStyle, Parser};
use syntax::parse::PResult;
use syntax::parse::{SeqSep, PResult};
use syntax::ast::Path;
use syntax::parse::token::Token::{Eof, Comma};
use syntax::parse::common::SeqSep;
pub trait ParserExt<'a> {
fn parse_paths(&mut self) -> PResult<'a, Vec<Path>>;