mirror of https://github.com/rwf2/Rocket.git
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:
parent
8431bfc7ca
commit
5d4908e74a
|
@ -38,6 +38,3 @@ members = [
|
||||||
"examples/tls",
|
"examples/tls",
|
||||||
"examples/fairings",
|
"examples/fairings",
|
||||||
]
|
]
|
||||||
|
|
||||||
[patch.crates-io]
|
|
||||||
ring = { git = "https://github.com/SergioBenitez/ring", branch = "v0.12" }
|
|
||||||
|
|
|
@ -8,8 +8,8 @@ use yansi::Color::{Red, Yellow, Blue, White};
|
||||||
use version_check::{supports_features, is_min_version, is_min_date};
|
use version_check::{supports_features, is_min_version, is_min_date};
|
||||||
|
|
||||||
// Specifies the minimum nightly version needed to compile Rocket.
|
// Specifies the minimum nightly version needed to compile Rocket.
|
||||||
const MIN_DATE: &'static str = "2017-11-07";
|
const MIN_DATE: &'static str = "2018-01-12";
|
||||||
const MIN_VERSION: &'static str = "1.23.0-nightly";
|
const MIN_VERSION: &'static str = "1.25.0-nightly";
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let ok_channel = supports_features();
|
let ok_channel = supports_features();
|
||||||
|
|
Loading…
Reference in New Issue