2017-11-12 17:17:52 -06:00
|
|
|
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""#);
|
2018-07-10 18:27:58 -05:00
|
|
|
println!(r#"cargo:rustc-cfg=feature="test-nan-sign""#);
|
2017-11-12 17:17:52 -06:00
|
|
|
}
|
|
|
|
}
|