pastiche 0.2.0

A library for exposing non public types, fields, and functions from a crate
Documentation
1
2
3
4
5
6
7
fn main() {
    let target = std::env::var("TARGET").unwrap();
    println!("cargo::rustc-env=TARGET={target}");

    let host = std::env::var("HOST").unwrap();
    println!("cargo::rustc-env=HOST={host}");
}