8 lines
229 B
Rust
8 lines
229 B
Rust
fn main() {
|
|
if let Some((version, channel, _)) = version_check::triple() {
|
|
if version.at_least("1.31.0") && channel.supports_features() {
|
|
println!("cargo:rustc-cfg=nightly_diagnostics");
|
|
}
|
|
}
|
|
}
|