summaryrefslogtreecommitdiffstats
path: root/third_party/rust/unicase/build.rs
blob: 6b22ab5f325f04ffc3d5f52e8b814d1ef4ddfef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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)
}