toml-rs/test-suite/build.rs

9 lines
229 B
Rust
Raw Normal View History

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""#);
}
}