tiny-integration-tester 0.4.6

This Rust program is used to perform simple integration tests on programs through a RUST dyn lib or a JSON configuration file.
1
2
3
4
5
6
7
fn main() {
    let src = std::env::var("CARGO_MANIFEST_DIR").unwrap();
    let dst = std::path::Path::new(&std::env::var("OUT_DIR").unwrap()).join("built.rs");
    let opts = built::Options::default();
    built::write_built_file_with_opts(&opts, src.as_ref(), &dst)
        .expect("Failed to acquire build-time information");
}