From e0bf21f2881e13fa76aefd6450a6ea8eedd74fbb Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Tue, 3 Apr 2018 20:49:14 -0700 Subject: [PATCH] Update pear dependency. --- lib/Cargo.toml | 4 ++-- lib/build.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 983e0bf0..69a9da04 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -28,8 +28,8 @@ time = "0.1" memchr = "2" base64 = "0.9" smallvec = "0.6" -pear = "0.0.13" -pear_codegen = "0.0.13" +pear = "0.0" +pear_codegen = "0.0" rustls = { version = "0.12.0", optional = true } hyper = { version = "0.10.13", default-features = false } hyper-sync-rustls = { version = "=0.3.0-rc.2", features = ["server"], optional = true } diff --git a/lib/build.rs b/lib/build.rs index 00110ab5..97aa7b18 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 = "2018-01-12"; -const MIN_VERSION: &'static str = "1.25.0-nightly"; +const MIN_DATE: &'static str = "2018-04-03"; +const MIN_VERSION: &'static str = "1.27.0-nightly"; fn main() { let ok_channel = supports_features();