From 4ad7eebf9e4de374eace6bb794dd96c41438e7bd Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Wed, 8 May 2019 17:39:18 -0700 Subject: Remove rustc version checking. This is no longer necessary, as <1.20 is no longer supported. --- test-suite/build.rs | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 test-suite/build.rs (limited to 'test-suite/build.rs') diff --git a/test-suite/build.rs b/test-suite/build.rs deleted file mode 100644 index 5a9a55a..0000000 --- a/test-suite/build.rs +++ /dev/null @@ -1,9 +0,0 @@ -extern crate rustc_version; -use rustc_version::{version, Version}; - -fn main() { - if version().unwrap() >= Version::parse("1.20.0").unwrap() { - println!(r#"cargo:rustc-cfg=feature="test-quoted-keys-in-macro""#); - println!(r#"cargo:rustc-cfg=feature="test-nan-sign""#); - } -} -- cgit v1.2.3