blob: 3c1196f2699878d7f0d85963058d92742bc7a14f [file] [log] [blame]
Matthew Maurerb26ed882020-06-02 11:15:09 -07001fn main() {
2 if !version_check::is_feature_flaggable().unwrap_or(false) {
3 println!("cargo:rustc-cfg=use_fallback");
4 }
5
6 if version_check::is_max_version("1.38.0").unwrap_or(false)
7 || !version_check::Channel::read().unwrap().is_stable()
8 {
9 println!("cargo:rustc-cfg=skip_ui_tests");
10 }
11}