Files
hyper/build.rs
2017-01-30 12:20:30 -08:00

8 lines
152 B
Rust

extern crate rustc_version as rustc;
fn main() {
if rustc::version_matches(">= 1.9") {
println!("cargo:rustc-cfg=has_deprecated");
}
}