mirror of
https://github.com/danog/strum.git
synced 2025-01-19 03:52:40 +01:00
7 lines
176 B
Rust
7 lines
176 B
Rust
|
|
||
|
fn main() {
|
||
|
// Check if version of rustc is >= 1.34
|
||
|
if let Some(true) = version_check::is_min_version("1.34.0") {
|
||
|
println!("cargo:rustc-cfg=try_from");
|
||
|
}
|
||
|
}
|