Update minimum nightly to '2018-01-12'.

The '2018-01-12' nightly release includes a commit that reverts the
change that broke 'ring', un-breaking 'ring', and thus un-breaking
Rocket. As a result, the '[patch]' workaround is no longer required.
Rocket is back on the latest nightly!
This commit is contained in:
Sergio Benitez 2018-01-12 19:16:54 -08:00
parent f485bb6b04
commit aaa9d6bf98
2 changed files with 2 additions and 5 deletions

View File

@ -37,6 +37,3 @@ members = [
"examples/tls",
"examples/fairings",
]
[patch.crates-io]
ring = { git = "https://github.com/SergioBenitez/ring", branch = "v0.11" }

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-11-07";
const MIN_VERSION: &'static str = "1.23.0-nightly";
const MIN_DATE: &'static str = "2018-01-12";
const MIN_VERSION: &'static str = "1.25.0-nightly";
fn main() {
let ok_channel = supports_features();