brk 0.0.96

The Bitcoin Research Kit is a suite of tools designed to extract, compute and display data stored on a Bitcoin Core node
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");
    }
}