1
0
mirror of https://gitlab.com/xmpp-rs/xmpp-rs.git synced 2024-07-01 10:58:44 +02:00
xmpp-rs/parsers/build.rs

13 lines
248 B
Rust

use rustc_version::{version_meta, Channel};
fn main() {
let version = version_meta().unwrap();
match version.channel {
Channel::Nightly => {
println!("cargo:rustc-cfg=rustc_nightly");
}
_ => {}
}
}