mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-16 08:58:26 +01:00
4e7b403c1f
This makes the definition of arguments to fd a little more ergonomic, and makes it easier to insure the types for the arguments are consitent.
12 lines
314 B
Rust
12 lines
314 B
Rust
fn main() {
|
|
let min_version = "1.56";
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|