1
0
mirror of https://github.com/NLnetLabs/routinator.git synced 2024-05-19 06:50:04 +00:00

15 lines
412 B
Rust
Raw Normal View History

extern crate rustc_version;
use rustc_version::{Version, version};
fn main() {
let version = version().expect("Failed to get rustc version.");
2021-05-27 11:09:40 +02:00
if version < Version::parse("1.47.0").unwrap() {
eprintln!(
2021-05-27 11:09:40 +02:00
"\n\nAt least Rust version 1.47 is required.\n\
Version {} is used for building.\n\
Build aborted.\n\n",
version);
panic!();
}
}