summaryrefslogtreecommitdiffstats
path: root/tokio/src/macros/mod.rs
blob: d35a6411ce30eb76a9929a5bbc370e2c90e9917c (plain)
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
#![cfg_attr(not(feature = "full"), allow(unused_macros))]

#[macro_use]
#[cfg(test)]
mod assert;

#[macro_use]
mod cfg;

#[macro_use]
mod join;

#[macro_use]
mod loom;

#[macro_use]
mod ready;

cfg_macros! {
    #[macro_use]
    mod select;
}

#[macro_use]
mod thread_local;

cfg_macros! {
    // Includes re-exports needed to implement macros
    #[doc(hidden)]
    pub mod support;
}