mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 20:27:58 +00:00
15 lines
393 B
Rust
15 lines
393 B
Rust
//! Set a nightly feature
|
|
|
|
extern crate rustc_version;
|
|
use rustc_version::{version, version_meta, Channel};
|
|
|
|
fn main() {
|
|
// Assert we haven't travelled back in time
|
|
assert!(version().unwrap().major >= 1);
|
|
|
|
// Set cfg flags depending on release channel
|
|
if let Channel::Nightly = version_meta().unwrap().channel {
|
|
println!("cargo:rustc-cfg=feature=\"nightly\"");
|
|
}
|
|
}
|