brk_interface 0.0.84

An interface to find and format data from BRK
Documentation
1
2
3
4
5
6
7
8
fn main() {
    let profile = std::env::var("PROFILE").unwrap_or_default();

    if profile == "release" {
        println!("cargo:rustc-flag=-C");
        println!("cargo:rustc-flag=target-cpu=native");
    }
}