1 2 3 4 5 6 7 8 9 10 11 12
//! //! This build script detects if we are nightly or not //! extern crate version_check; fn main() { println!("cargo:rerun-if-changed=build.rs"); if version_check::is_feature_flaggable() == Some(true) { println!("cargo:rustc-cfg=use_nightly"); } }