summaryrefslogtreecommitdiffstats
path: root/third_party/rust/nom/build.rs
blob: 9743c905f76f2de3696a960ed348bd1e77d6eb95 (plain)
1
2
3
4
5
6
7
extern crate version_check;

fn main() {
  if version_check::is_min_version("1.28.0").unwrap_or(true) {
    println!("cargo:rustc-cfg=stable_i128");
  }
}