From 2ca15b663a9598344fdc270a174fa07eac9e38f1 Mon Sep 17 00:00:00 2001 From: Jeb Rosen Date: Tue, 11 Feb 2020 21:45:27 -0800 Subject: [PATCH] Update minimum nightly to '2019-12-29'. This version of rustc was the first to ship with a version of cargo that supports 'proc_macro' without an 'extern crate' declaration. --- core/codegen/build.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/codegen/build.rs b/core/codegen/build.rs index 75e4a537..8ce97344 100644 --- a/core/codegen/build.rs +++ b/core/codegen/build.rs @@ -3,8 +3,8 @@ use yansi::{Paint, Color::{Red, Yellow, Blue}}; // Specifies the minimum nightly version needed to compile Rocket. -const MIN_DATE: &'static str = "2019-01-13"; -const MIN_VERSION: &'static str = "1.33.0-nightly"; +const MIN_DATE: &'static str = "2019-12-29"; +const MIN_VERSION: &'static str = "1.42.0-nightly"; macro_rules! err { ($version:expr, $date:expr, $msg:expr) => (