mirror of
https://github.com/sharkdp/fd.git
synced 2026-09-01 15:12:46 +08:00
13 lines
312 B
Rust
13 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);
|
|
}
|
|
}
|
|
}
|