compiletest_rs 0.3.22

The compiletest utility from the Rust compiler as a standalone testing harness
Documentation
1
2
3
4
5
6
7
8
use std::env;

pub fn main() {
    if env::var("CARGO_FEATURE_NORUSTC").is_ok() {
        println!("cargo:rustc-env=TARGET={}", env::var("TARGET").unwrap());
        println!("cargo:rustc-env=HOST={}", env::var("HOST").unwrap());
    }
}