dscale 0.5.1

A fast & deterministic simulation framework for benchmarking and testing distributed systems
Documentation
1
2
3
4
5
6
7
8
fn main() {
    println!("cargo::rustc-check-cfg=cfg(fault_enabled)");
    println!("cargo::rerun-if-env-changed=FAULT");

    if std::env::var("FAULT").unwrap_or_default() == "on" {
        println!("cargo::rustc-cfg=fault_enabled");
    }
}