From 61b19b1863256abf168e443c8e1f4700d3cb75c8 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Fri, 30 Jun 2017 19:09:21 -0700 Subject: [PATCH] Remove 'unicode' feature from codegen. Update min nightly. --- codegen/build.rs | 2 +- codegen/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/codegen/build.rs b/codegen/build.rs index a55fbfed..2f073e3c 100644 --- a/codegen/build.rs +++ b/codegen/build.rs @@ -8,7 +8,7 @@ use ansi_term::Colour::{Red, Yellow, Blue, White}; use version_check::{is_nightly, is_min_version, is_min_date}; // 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"; // Convenience macro for writing to stderr. diff --git a/codegen/src/lib.rs b/codegen/src/lib.rs index 1be81f2e..13b88f70 100644 --- a/codegen/src/lib.rs +++ b/codegen/src/lib.rs @@ -110,7 +110,7 @@ //! ``` #![crate_type = "dylib"] -#![feature(quote, concat_idents, plugin_registrar, rustc_private, unicode)] +#![feature(quote, concat_idents, plugin_registrar, rustc_private)] #![feature(custom_attribute)] #![feature(i128_type)] #![allow(unused_attributes)]