cargo-test-support 0.3.0

Testing framework for Cargo's testsuite.
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(clippy::disallowed_methods)]

fn main() {
    println!("cargo:rustc-check-cfg=cfg(emulate_second_only_system)");
    println!(
        "cargo:rustc-env=NATIVE_ARCH={}",
        std::env::var("TARGET").unwrap()
    );
    println!("cargo:rerun-if-changed=build.rs");
}