• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

main()1 fn 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 }
12