From 9b219ddc01d192afefd990f923b1e119c79c7d28 Mon Sep 17 00:00:00 2001 From: Jacob Pratt Date: Tue, 9 Apr 2019 16:51:04 -0400 Subject: [PATCH] Remove stabilized feature gates. * try_from * transpose_result --- core/codegen/build.rs | 4 ++-- core/codegen/src/lib.rs | 1 - core/http/src/lib.rs | 1 - core/lib/build.rs | 4 ++-- core/lib/src/lib.rs | 1 - 5 files changed, 4 insertions(+), 7 deletions(-) diff --git a/core/codegen/build.rs b/core/codegen/build.rs index 548ce9b4..3d953822 100644 --- a/core/codegen/build.rs +++ b/core/codegen/build.rs @@ -8,8 +8,8 @@ use yansi::Color::{Red, Yellow, Blue}; 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 = "2018-11-23"; -const MIN_VERSION: &'static str = "1.32.0-nightly"; +const MIN_DATE: &'static str = "2019-01-13"; +const MIN_VERSION: &'static str = "1.33.0-nightly"; fn main() { let ok_channel = supports_features(); diff --git a/core/codegen/src/lib.rs b/core/codegen/src/lib.rs index d5991afc..e00f483e 100644 --- a/core/codegen/src/lib.rs +++ b/core/codegen/src/lib.rs @@ -1,6 +1,5 @@ #![feature(proc_macro_diagnostic, proc_macro_span)] #![feature(crate_visibility_modifier)] -#![feature(transpose_result)] #![recursion_limit="128"] #![doc(html_root_url = "https://api.rocket.rs/v0.4")] diff --git a/core/http/src/lib.rs b/core/http/src/lib.rs index 3404b668..db6c1fac 100644 --- a/core/http/src/lib.rs +++ b/core/http/src/lib.rs @@ -1,6 +1,5 @@ #![feature(specialization)] #![feature(proc_macro_hygiene)] -#![feature(try_from)] #![feature(crate_visibility_modifier)] #![feature(doc_cfg)] #![recursion_limit="512"] diff --git a/core/lib/build.rs b/core/lib/build.rs index 8b798570..1b983106 100644 --- a/core/lib/build.rs +++ b/core/lib/build.rs @@ -8,8 +8,8 @@ use yansi::Color::{Red, Yellow, Blue}; 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 = "2018-10-05"; -const MIN_VERSION: &'static str = "1.31.0-nightly"; +const MIN_DATE: &'static str = "2019-02-25"; +const MIN_VERSION: &'static str = "1.34.0-nightly"; fn main() { let ok_channel = supports_features(); diff --git a/core/lib/src/lib.rs b/core/lib/src/lib.rs index e0c9f6df..af5c10e9 100644 --- a/core/lib/src/lib.rs +++ b/core/lib/src/lib.rs @@ -5,7 +5,6 @@ #![feature(never_type)] #![feature(proc_macro_hygiene)] #![feature(crate_visibility_modifier)] -#![feature(try_from)] #![feature(label_break_value)] #![recursion_limit="256"]