Remove 'unicode' feature from codegen. Update min nightly.

This commit is contained in:
Sergio Benitez 2017-06-30 19:09:21 -07:00
parent ee0bec095e
commit 61b19b1863
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ use ansi_term::Colour::{Red, Yellow, Blue, White};
use version_check::{is_nightly, is_min_version, is_min_date}; use version_check::{is_nightly, is_min_version, is_min_date};
// Specifies the minimum nightly version needed to compile Rocket's codegen. // Specifies the minimum nightly version needed to compile Rocket's codegen.
const MIN_DATE: &'static str = "2017-06-01"; const MIN_DATE: &'static str = "2017-06-19";
const MIN_VERSION: &'static str = "1.19.0-nightly"; const MIN_VERSION: &'static str = "1.19.0-nightly";
// Convenience macro for writing to stderr. // Convenience macro for writing to stderr.

View File

@ -110,7 +110,7 @@
//! ``` //! ```
#![crate_type = "dylib"] #![crate_type = "dylib"]
#![feature(quote, concat_idents, plugin_registrar, rustc_private, unicode)] #![feature(quote, concat_idents, plugin_registrar, rustc_private)]
#![feature(custom_attribute)] #![feature(custom_attribute)]
#![feature(i128_type)] #![feature(i128_type)]
#![allow(unused_attributes)] #![allow(unused_attributes)]