reinda-macros 0.0.4

Internal crate for `reinda`. Do not use this crate directly! See the main crate for more information.
Documentation
1
2
3
4
5
6
fn main() {
    cfg_aliases::cfg_aliases! {
        prod_mode: { any(not(debug_assertions), feature = "always-prod") },
        dev_mode: { not(prod_mode) },
    }
}