mirror of https://github.com/rwf2/Rocket.git
Remove 'drop_types_in_const' feature: stabilized.
This commit is contained in:
parent
33e9726151
commit
16feedd563
|
@ -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's codegen.
|
||||
const MIN_DATE: &'static str = "2017-08-10";
|
||||
const MIN_VERSION: &'static str = "1.21.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();
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
#![feature(specialization)]
|
||||
#![feature(conservative_impl_trait)]
|
||||
#![feature(drop_types_in_const)]
|
||||
#![feature(const_fn)]
|
||||
#![feature(plugin, decl_macro)]
|
||||
#![feature(never_type)]
|
||||
|
|
Loading…
Reference in New Issue