Remove 'drop_types_in_const' feature: stabilized.

This commit is contained in:
Sergio Benitez 2017-09-14 22:39:19 -07:00
parent 6e3c54f475
commit 7ea05c3d3e
3 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#![feature(drop_types_in_const, macro_reexport)]
#![feature(macro_reexport)]
#![cfg_attr(feature = "templates", feature(conservative_impl_trait))]
// TODO: Version URLs.

View File

@ -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-07-09";
const MIN_VERSION: &'static str = "1.20.0-nightly";
const MIN_DATE: &'static str = "2017-09-13";
const MIN_VERSION: &'static str = "1.22.0-nightly";
fn main() {
let ok_channel = supports_features();

View File

@ -1,6 +1,5 @@
#![feature(specialization)]
#![feature(conservative_impl_trait)]
#![feature(drop_types_in_const)]
#![feature(const_fn)]
#![feature(lookup_host)]
#![feature(plugin)]