tempfile 2.1.2

Securely create temporary files.
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate rustc_version;
use rustc_version::version_matches;

fn main() {
    println!("cargo:rerun-if-changed=build.rs");

    if version_matches(">= 1.8.0") {
        println!("cargo:rustc-cfg=lfs_support");
    }
}