proc-macro-error 0.4.12

Almost drop-in replacement to panics in proc-macros
Documentation
fn main() {
    if !version_check::is_feature_flaggable().unwrap_or(false) {
        println!("cargo:rustc-cfg=use_fallback");
    }

    if version_check::is_max_version("1.38.0").unwrap_or(false)
        || !version_check::Channel::read().unwrap().is_stable()
    {
        println!("cargo:rustc-cfg=skip_ui_tests");
    }
}