1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//! A variety of macros.


#[macro_use]
mod const_default;

#[macro_use]
#[cfg(feature = "const_val")]
mod constval_macros;

#[macro_use]
mod internal;

#[macro_use]
mod matches_macro;

// #[macro_use]
// mod doc_macros;

#[macro_use]
#[cfg(feature = "phantom")]
pub mod phantomdata;

#[cfg(feature = "generics_parsing")]
pub mod generics_parsing;

#[cfg(feature = "item_parsing")]
pub mod item_parsing;

#[cfg(feature = "macro_utils")]
pub mod macro_utils;

#[macro_use]
#[cfg(feature = "transparent_newtype")]
pub mod transparent_newtype_macros;

//////////////////////////////////////////////////////////////////////////////////////////////



//////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////





//////////////////////////////////////////////////////////////////////////////////////////////