Skip to content
Permalink
Branch: master
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
11 lines (8 sloc) 237 Bytes
extern crate rustc_version;
use rustc_version::{version_matches};
fn main() {
println!("cargo:rerun-if-changed=build.rs");
if version_matches("1.4.0") {
println!("cargo:rustc-cfg=has_string_into_boxed_string");
}
}
You can’t perform that action at this time.