2017-02-17 20:04:45 +00:00
|
|
|
// Copyright 2016 Mozilla
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
|
|
// this file except in compliance with the License. You may obtain a copy of the
|
|
|
|
// License at http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
// Unless required by applicable law or agreed to in writing, software distributed
|
|
|
|
// under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
|
|
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
|
|
// specific language governing permissions and limitations under the License.
|
|
|
|
|
|
|
|
extern crate rustc_version;
|
|
|
|
|
|
|
|
use std::io::{self, Write};
|
|
|
|
use std::process::exit;
|
2018-03-06 16:09:59 +00:00
|
|
|
use rustc_version::{
|
|
|
|
Version,
|
|
|
|
version,
|
|
|
|
};
|
2017-02-17 20:04:45 +00:00
|
|
|
|
|
|
|
/// MIN_VERSION should be changed when there's a new minimum version of rustc required
|
|
|
|
/// to build the project.
|
2018-05-14 15:20:36 +00:00
|
|
|
static MIN_VERSION: &'static str = "1.25.0";
|
2017-02-17 20:04:45 +00:00
|
|
|
|
|
|
|
fn main() {
|
2018-03-06 16:09:59 +00:00
|
|
|
let ver = version().unwrap();
|
|
|
|
let min = Version::parse(MIN_VERSION).unwrap();
|
|
|
|
if ver < min {
|
|
|
|
writeln!(&mut io::stderr(), "Mentat requires rustc {} or higher.", MIN_VERSION).unwrap();
|
2017-02-17 20:04:45 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|