rtools 0.9.0

Set of tools for my needs
Documentation
1
2
3
4
5
6
7
8
9
10
11
use cfg_aliases::cfg_aliases;

fn main() {
    cfg_aliases! {
        android: { target_os = "android" },
        macos:   { target_os = "macos"   },
        linux:   { target_os = "linux"   },

        mobile: { any(target_os = "android", target_os = "ios") },
    }
}