summaryrefslogtreecommitdiffstats
path: root/vendor/proc-macro-error/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/proc-macro-error/build.rs')
-rw-r--r--vendor/proc-macro-error/build.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/vendor/proc-macro-error/build.rs b/vendor/proc-macro-error/build.rs
deleted file mode 100644
index 3c1196f26..000000000
--- a/vendor/proc-macro-error/build.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-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");
- }
-}