Files
Emilio Cobos Álvarez d0f8999af3 Bug 1621044 - Lockfile changes and revendoring. r=jrmuizel
This updates binjs_meta and thus weedle, bindgen and thus clang-sys
transitively, and the mime / mime_guess crate and thus unicase and
version-check.

Differential Revision: https://phabricator.services.mozilla.com/D66282
2020-03-10 21:06:36 +00:00

24 lines
555 B
Rust

extern crate version_check as rustc;
fn main() {
if is_rustc_at_least("1.5.0") {
println!("cargo:rustc-cfg=__unicase__iter_cmp");
}
if is_rustc_at_least("1.13.0") {
println!("cargo:rustc-cfg=__unicase__default_hasher");
}
if is_rustc_at_least("1.31.0") {
println!("cargo:rustc-cfg=__unicase__const_fns");
}
if is_rustc_at_least("1.36.0") {
println!("cargo:rustc-cfg=__unicase__core_and_alloc");
}
}
fn is_rustc_at_least(v: &str) -> bool {
rustc::is_min_version(v).unwrap_or(true)
}