mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-16 17:08:27 +01:00
12 lines
312 B
Rust
12 lines
312 B
Rust
fn main() {
|
|
let min_version = "1.64";
|
|
|
|
match version_check::is_min_version(min_version) {
|
|
Some(true) => {}
|
|
// rustc version too small or can't figure it out
|
|
_ => {
|
|
eprintln!("'fd' requires rustc >= {min_version}");
|
|
std::process::exit(1);
|
|
}
|
|
}
|
|
}
|