efg 0.1.4

Conditional compilation using boolean expression syntax, rather than any(), all(), not().
Documentation
1
2
3
4
5
6
7
8
9
use efg::efg;

#[efg(unix ||)]
struct S;

#[efg((unix ||) && window)]
struct S;

fn main() {}