summaryrefslogtreecommitdiffstats
path: root/tokio-util/src/cfg.rs
blob: 13fabd3638366729ba7499d8a14a041f1537b14d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
macro_rules! cfg_codec {
    ($($item:item)*) => {
        $(
            #[cfg(feature = "codec")]
            #[cfg_attr(docsrs, doc(cfg(feature = "codec")))]
            $item
        )*
    }
}

macro_rules! cfg_udp {
    ($($item:item)*) => {
        $(
            #[cfg(all(feature = "udp", feature = "codec"))]
            #[cfg_attr(docsrs, doc(cfg(all(feature = "udp", feature = "codec"))))]
            $item
        )*
    }
}