mingling 0.1.9

Macro magician in your CLI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
>>>>>>>>>> features

@@@ >>> features
/// Whether the `<<<feat_name>>>` feature is enabled
/// Current: `disabled`
#[cfg(not(feature = "<<<feat_name>>>"))]
#[allow(unused)]
pub const MINGLING_<<<feat_const_name>>>: bool = false;

/// Whether the `<<<feat_name>>>` feature is enabled
/// Current: `enabled`
#[cfg(feature = "<<<feat_name>>>")]
#[allow(unused)]
pub const MINGLING_<<<feat_const_name>>>: bool = true;
@@@ <<<