From 0fa2c459d95e8c4af2f7b725447cfae8c53b9120 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Mon, 3 Jul 2017 02:39:32 -0700 Subject: [PATCH] Remove 'more_io_inner_methods' feature: it's been stabilized. --- lib/build.rs | 4 ++-- lib/src/lib.rs | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/build.rs b/lib/build.rs index b1e48ed0..b9643c5a 100644 --- a/lib/build.rs +++ b/lib/build.rs @@ -8,8 +8,8 @@ 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. -const MIN_DATE: &'static str = "2017-06-19"; -const MIN_VERSION: &'static str = "1.19.0-nightly"; +const MIN_DATE: &'static str = "2017-07-02"; +const MIN_VERSION: &'static str = "1.20.0-nightly"; // Convenience macro for writing to stderr. macro_rules! printerr { diff --git a/lib/src/lib.rs b/lib/src/lib.rs index 1b4b6e49..fa76c7ee 100644 --- a/lib/src/lib.rs +++ b/lib/src/lib.rs @@ -6,7 +6,6 @@ #![feature(lookup_host)] #![feature(plugin)] #![feature(never_type)] -#![feature(more_io_inner_methods)] #![feature(try_trait)] #![plugin(pear_codegen)]