bugstalker 0.4.5

BugStalker is a modern and lightweight debugger for rust applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[macro_export]
macro_rules! nightly {
    ($printer: expr, $do: block) => {
        if cfg!(feature = "nightly") {
            $do;
        } else {
            $printer
                .println("This is a nightly feature and not yet available in the default build");
        }
    };
}