anti-debug 0.3.0

An `is_debugger_present` detector for common platforms.
Documentation
1
2
3
4
5
6
fn main() {
    let enable = std::env::var("ANTI_DEBUG").is_ok();
    if enable {
        anti_debug::deny_attach().unwrap();
    }
}