rawdb 0.3.2

Single-file, low-level and space efficient storage engine with filesystem-like API
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");
    }
}