mirror of https://github.com/rwf2/Rocket.git
41 lines
1.6 KiB
Rust
41 lines
1.6 KiB
Rust
//! Ensures Rocket isn't compiled with an incompatible version of Rust.
|
|
|
|
extern crate yansi;
|
|
extern crate version_check;
|
|
|
|
use yansi::{Paint, Color::{Red, Yellow, Blue}};
|
|
|
|
// Specifies the minimum nightly version needed to compile Rocket.
|
|
const MIN_DATE: &'static str = "2018-10-05";
|
|
const MIN_VERSION: &'static str = "1.31.0-nightly";
|
|
|
|
macro_rules! err {
|
|
($version:expr, $date:expr, $msg:expr) => (
|
|
eprintln!("{} {}", Red.paint("Error:").bold(), Paint::new($msg).bold());
|
|
eprintln!("Installed version: {}", Yellow.paint(format!("{} ({})", $version, $date)));
|
|
eprintln!("Minimum required: {}", Yellow.paint(format!("{} ({})", MIN_VERSION, MIN_DATE)));
|
|
)
|
|
}
|
|
|
|
fn main() {
|
|
if let Some((version, channel, date)) = version_check::triple() {
|
|
if !channel.supports_features() {
|
|
err!(version, date, "Rocket requires a 'dev' or 'nightly' version of rustc.");
|
|
|
|
eprint!("{}", Blue.paint("See the getting started guide ("));
|
|
eprint!("https://rocket.rs/v0.5/guide/getting-started/");
|
|
eprintln!("{}", Blue.paint(") for more information."));
|
|
|
|
panic!("Aborting compilation due to incompatible compiler.")
|
|
}
|
|
|
|
if !version.at_least(MIN_VERSION) || !date.at_least(MIN_DATE) {
|
|
err!(version, date, "Rocket requires a more recent version of rustc.");
|
|
panic!("Aborting compilation due to incompatible compiler.")
|
|
}
|
|
} else {
|
|
println!("cargo:warning={}", "Rocket was unable to check rustc compiler compatibility.");
|
|
println!("cargo:warning={}", "Build may fail due to incompatible rustc version.");
|
|
}
|
|
}
|