blob: 17a7be76b25f9bb301a6ec6c6ee0726d25a6ac5b [file] [log] [blame]
#![allow(clippy::unwrap_used)]
use rustc_version::{version_meta, Channel};
fn main() {
let version_meta = version_meta().unwrap();
if version_meta.channel == Channel::Nightly {
println!("cargo:rustc-cfg=nightly");
}
}